Skip to content

Commit

Permalink
Merge pull request #66 from reportportal/develop
Browse files Browse the repository at this point in the history
Release 5.2.0
  • Loading branch information
AmsterGet authored Sep 23, 2024
2 parents f889a58 + e5f8525 commit 26bd3af
Show file tree
Hide file tree
Showing 10 changed files with 2,489 additions and 2,373 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/CI-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,12 @@ on:
- README.md
- CHANGELOG.md
pull_request:
branches:
- develop
- master
paths-ignore:
- README.md
- CHANGELOG.md

jobs:
test:
Expand All @@ -32,8 +38,8 @@ jobs:
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 18
- name: Install of node dependencies
node-version: 20
- name: Install dependencies
run: npm install
- name: Build the source code
run: npm run build
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ jobs:
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 18
- name: Install of node dependencies
node-version: 20
- name: Install dependencies
run: npm install
- name: Build the source code
run: npm run build
Expand All @@ -45,10 +45,10 @@ jobs:
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20
registry-url: 'https://registry.npmjs.org'
- name: Clean install of node dependencies
run: npm ci
- name: Install dependencies
run: npm install
- name: Build the source code
run: npm run build
- name: Publish to NPM
Expand All @@ -61,7 +61,7 @@ jobs:
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20
registry-url: 'https://npm.pkg.github.com'
scope: '@reportportal'
- name: Publish to GPR
Expand Down
11 changes: 9 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,16 @@
### Changed
- **Breaking change** Drop support of Node.js 12. The version [5.1.1](https://github.com/reportportal/agent-js-webdriverio/releases/tag/v5.1.1) is the latest that supports it.
- The agent now supports reporting the time for launches, test items and logs with microsecond precision in the ISO string format.
For logs, microsecond precision is available on the UI from ReportPortal version 24.2.
- `@reportportal/client-javascript` bumped to version `5.3.0`.

## [5.1.1] - 2024-06-26
### Changed
- `@reportportal/client-javascript` bumped to version `5.1.4`.
- `@reportportal/client-javascript` bumped to version `5.1.4`, new `launchUuidPrintOutput` types introduced: 'FILE', 'ENVIRONMENT'.
### Security
- Updated versions of vulnerable packages (braces, ws).
### Deprecated
- Node.js 12 usage. This minor version is the latest that supports Node.js 12.

## [5.1.0] - 2024-02-06
### Added
Expand All @@ -20,7 +27,7 @@
## [5.0.3] - 2022-10-05
### Added
- Support reportSeleniumCommands and seleniumCommandsLogLevel for Cucumber and Jasmine reporting via `reportSeleniumCommands`, `seleniumCommandsLogLevel` flags.
- _isLaunchMergeRequired_ config option support. Provided guide on merging launches manually [provided](README.md#manual-merge-launches).
- `isLaunchMergeRequired` config option support. Provided guide on merging launches manually [provided](README.md#manual-merge-launches).

## [5.0.2] - 2022-05-31
### Added
Expand Down
173 changes: 135 additions & 38 deletions README.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5.1.1
5.1.2-SNAPSHOT
Loading

0 comments on commit 26bd3af

Please sign in to comment.