Skip to content
This repository was archived by the owner on Mar 28, 2022. It is now read-only.

Commit 87b732c

Browse files
committed
chore: Support NodeJs 17
1 parent 60f5430 commit 87b732c

File tree

7 files changed

+9901
-3313
lines changed

7 files changed

+9901
-3313
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
node: ["12.22.1", "14.17.0", "15.14.0", "16.1.0"]
14+
node: ["12.22.1", "14.17.0", "16.1.0", "17.2.0"]
1515
steps:
1616
- name: Checkout
1717
uses: actions/checkout@v2

.github/workflows/publish-to-github.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- run: npm run build
1212
- uses: actions/setup-node@v2
1313
with:
14-
node-version: '14.x'
14+
node-version: '16.x'
1515
registry-url: 'https://npm.pkg.github.com'
1616
# Defaults to the user or organization that owns the workflow file
1717
scope: '@mocks-server'

.github/workflows/publish-to-npm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
- uses: actions/checkout@v2
1010
- uses: actions/setup-node@v2
1111
with:
12-
node-version: '14.x'
12+
node-version: '16.x'
1313
registry-url: 'https://registry.npmjs.org/'
1414
- run: npm ci
1515
- run: npm run build

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,13 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
1010
### Fixed
1111
### Removed
1212

13+
## [2.2.0] - 2021-12-05
14+
15+
### Changed
16+
- chore: Support any NodeJs version >=12.x.
17+
- chore: Run tests also in NodeJs 17 in pipelines. Remove tests execution using NodeJs 15
18+
- chore: Update devDependencies
19+
1320
## [2.1.0] - 2021-02-17
1421

1522
### Added

0 commit comments

Comments
 (0)