Skip to content

Commit

Permalink
Merge pull request #160 from reportportal/develop
Browse files Browse the repository at this point in the history
Release 5.3.0
  • Loading branch information
AliakseiLiasnitski authored Feb 7, 2024
2 parents 518429a + cc6a5a9 commit 1a37f20
Show file tree
Hide file tree
Showing 23 changed files with 1,897 additions and 3,356 deletions.
1 change: 1 addition & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,7 @@ jobs:
echo "patch" > ${{ env.versionFragmentFileName }}
git status
git add ${{ env.versionFileName }}
git add ${{ env.versionFragmentFileName }}
git commit -m "${{ needs.calculate-version.outputs.releaseVersion }} -> ${{ steps.bumpSnapshotVersion.outputs.next-version }}-SNAPSHOT"
git push origin develop
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@

### Added
- Add `@cucumber/cucumber` version 10 support. Addressed [155](https://github.com/reportportal/agent-js-cucumber/issues/155).
### Changed
- **Breaking change** Drop support of cucumber <7. Addressed [153](https://github.com/reportportal/agent-js-cucumber/issues/153).
- **Breaking change** Drop support of Node.js 10. The version [5.2.3](https://github.com/reportportal/agent-js-cucumber/releases/tag/v5.2.3) is the latest that supports it.
- `@reportportal/client-javascript` bumped to version `5.1.0`.

## [5.2.3] - 2024-01-19
### Deprecated
- Node.js 10 usage. This version is the latest that supports Node.js 10.
Expand Down
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@ Agent to integrate CucumberJS with ReportPortal.
* More about [CucumberJS](https://cucumber.io/docs/installation/javascript/)
* More about [ReportPortal](http://reportportal.io/)

This agent works well with cucumber versions from 7.x to 9.x.
Documentation for legacy cucumber versions from 4.x to 6.x can be found [here](/modules/api/deprecated/README.md)
This agent works well with cucumber versions from 7.x to 10.x.

## Install agent to your project dir

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5.2.3
5.2.4-SNAPSHOT
2 changes: 1 addition & 1 deletion jest.config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
module.exports = {
moduleFileExtensions: ['js'],
testRegex: '/tests/.*\\.spec.(js)$',
collectCoverageFrom: ['modules/**.js', '!api/deprecated'],
collectCoverageFrom: ['modules/**.js'],
coverageThreshold: {
global: {
branches: 80,
Expand Down
Loading

0 comments on commit 1a37f20

Please sign in to comment.