Skip to content

Commit 80863a9

Browse files
committed
Drop support of Node.js 12. Update changelog
1 parent 71aca5f commit 80863a9

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

.github/workflows/CI-pipeline.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
runs-on: ubuntu-latest
3232
strategy:
3333
matrix:
34-
node: [12, 14, 16, 18, 20, 22]
34+
node: [14, 16, 18, 20, 22]
3535
steps:
3636
- name: Checkout repository
3737
uses: actions/checkout@v4

CHANGELOG.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
1+
### Changed
2+
- **Breaking change** Drop support of Node.js 12. The version [5.1.4](https://github.com/reportportal/client-javascript/releases/tag/v5.1.4) is the latest that supports it.
3+
- The client now creates an instance of the `axios` HTTP client in the constructor.
4+
- The `HOST` HTTP header is added to all requests as it was skipped by the HTTP client.
15
### Fixed
26
- Allow using `restClientConfig` in `checkConnect()` method. Thanks to [stevez](https://github.com/stevez).
37
### Security
48
- Updated versions of vulnerable packages (braces).
5-
### Changed
6-
- The client now creates an instance of the `axios` HTTP client in the constructor.
7-
- The `HOST` HTTP header is added to all requests as it was skipped by the HTTP client.
89

910
## [5.1.4] - 2024-05-22
1011
### Fixed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
],
2222
"main": "./lib/report-portal-client",
2323
"engines": {
24-
"node": ">=12.x"
24+
"node": ">=14.x"
2525
},
2626
"dependencies": {
2727
"axios": "^1.7.7",

version_fragment

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
patch
1+
minor

0 commit comments

Comments
 (0)