Skip to content

Commit 872cff1

Browse files
chore(dep bump): upgrade software dependencies to latest version
BREAKING CHANGE: upgrade to semantic-release v19
1 parent bbc6889 commit 872cff1

File tree

4 files changed

+34
-33
lines changed

4 files changed

+34
-33
lines changed

.github/workflows/release.yml

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,15 @@ jobs:
2121
runs-on: ubuntu-latest
2222
steps:
2323
- name: Checkout
24-
uses: actions/checkout@v2
24+
uses: actions/checkout@v3
2525
- name: Setup NodeJS LTS
26-
uses: actions/setup-node@v2
26+
uses: actions/setup-node@v3
27+
with:
28+
node-version: lts/*
29+
check-latest: true
2730
- name: Build & Validation
2831
run: |
29-
npm prune && npm i
32+
npm ci
3033
npm run build
3134
npm run lint
3235
npm run test
@@ -38,15 +41,17 @@ jobs:
3841
if: github.ref == 'refs/heads/master' && github.event_name == 'push'
3942
steps:
4043
- name: Checkout
41-
uses: actions/checkout@v2
44+
uses: actions/checkout@v3
4245
with:
4346
fetch-depth: 0
4447
persist-credentials: false
4548
- name: Setup NodeJS LTS
46-
uses: actions/setup-node@v2
49+
uses: actions/setup-node@v3
50+
with:
51+
node-version: lts/*
52+
check-latest: true
4753
- name: Install dependencies
48-
run: |
49-
npm prune && npm i
54+
run: npm ci
5055
- name: Release
5156
env:
5257
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

.mocharc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ spec:
99
- test/**/*.spec.ts
1010
node-option:
1111
- experimental-specifier-resolution=node
12-
- loader=ts-node/esm
12+
- loader=ts-node/esm

HISTORY.md

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,25 @@
11
## [7.0.8](https://github.com/hexonet/node-sdk/compare/v7.0.7...v7.0.8) (2022-03-22)
22

3-
43
### Bug Fixes
54

6-
* **ot&e:** url updated for OT&E environment ([e9f09dc](https://github.com/hexonet/node-sdk/commit/e9f09dc34ea3c5996b547b11705dfe29ab7f85de))
7-
* **tests:** refactor to minimize maintenance effort ([717d417](https://github.com/hexonet/node-sdk/commit/717d417e4305bed401515fe3b27eddb0a236be61))
8-
5+
- **ot&e:** url updated for OT&E environment ([e9f09dc](https://github.com/hexonet/node-sdk/commit/e9f09dc34ea3c5996b547b11705dfe29ab7f85de))
6+
- **tests:** refactor to minimize maintenance effort ([717d417](https://github.com/hexonet/node-sdk/commit/717d417e4305bed401515fe3b27eddb0a236be61))
97

108
### Reverts
119

12-
* **ts config:** revert latest change as inlineSourceMap is in use ([8ffb346](https://github.com/hexonet/node-sdk/commit/8ffb3463cd0dbbec66a4644cd19e56f3bdf42d30))
10+
- **ts config:** revert latest change as inlineSourceMap is in use ([8ffb346](https://github.com/hexonet/node-sdk/commit/8ffb3463cd0dbbec66a4644cd19e56f3bdf42d30))
1311

1412
## [7.0.7](https://github.com/hexonet/node-sdk/compare/v7.0.6...v7.0.7) (2021-11-16)
1513

16-
1714
### Bug Fixes
1815

19-
* **docco:** re-introduced docco docs (dependency got fixed) ([47d1a09](https://github.com/hexonet/node-sdk/commit/47d1a09ea034f42ec09b24b093a39f219d43bad3))
16+
- **docco:** re-introduced docco docs (dependency got fixed) ([47d1a09](https://github.com/hexonet/node-sdk/commit/47d1a09ea034f42ec09b24b093a39f219d43bad3))
2017

2118
## [7.0.6](https://github.com/hexonet/node-sdk/compare/v7.0.5...v7.0.6) (2021-11-11)
2219

23-
2420
### Bug Fixes
2521

26-
* **node-fetch:** upgraded to v3 / ESM revamp ([1c312dc](https://github.com/hexonet/node-sdk/commit/1c312dc78c59f4f4a43d7163ed48327ec31bb8bd))
22+
- **node-fetch:** upgraded to v3 / ESM revamp ([1c312dc](https://github.com/hexonet/node-sdk/commit/1c312dc78c59f4f4a43d7163ed48327ec31bb8bd))
2723

2824
## [7.0.5](https://github.com/hexonet/node-sdk/compare/v7.0.4...v7.0.5) (2021-05-25)
2925

package.json

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
"main": "dist/src/index.js",
1313
"license": "MIT",
1414
"engines": {
15-
"node": ">=14.17.0",
16-
"npm": ">=6.14.13"
15+
"node": ">=16.13.1",
16+
"npm": ">=8.8.0"
1717
},
1818
"homepage": "https://github.com/hexonet/node-sdk",
1919
"repository": "github:hexonet/node-sdk",
@@ -58,30 +58,30 @@
5858
"test": "cross-env NODE_ENV=development nyc mocha"
5959
},
6060
"dependencies": {
61-
"node-fetch": "^3.1.0"
61+
"node-fetch": "^3.2.5"
6262
},
6363
"devDependencies": {
6464
"@semantic-release/changelog": "^6.0.1",
6565
"@semantic-release/git": "^10.0.1",
66-
"@semantic-release/npm": "^8.0.3",
67-
"@types/chai": "^4.2.22",
68-
"@types/chai-as-promised": "^7.1.4",
69-
"@types/mocha": "^9.0.0",
66+
"@semantic-release/npm": "^9.0.1",
67+
"@types/chai": "^4.3.1",
68+
"@types/chai-as-promised": "^7.1.5",
69+
"@types/mocha": "^9.1.1",
7070
"@types/node": "^17.0.5",
71-
"chai": "^4.3.4",
71+
"chai": "^4.3.6",
7272
"chai-as-promised": "^7.1.1",
7373
"cross-env": "^7.0.3",
7474
"docco": "^0.9.1",
75-
"jsdoc": "^3.6.7",
75+
"jsdoc": "^3.6.10",
7676
"jsdoc-oblivion": "^0.0.9",
7777
"mocha": "^10.0.0",
78-
"nock": "^13.2.0",
78+
"nock": "^13.2.6",
7979
"nyc": "^15.1.0",
80-
"prettier": "^2.4.1",
81-
"semantic-release": "^18.0.0",
82-
"supertest": "^6.1.6",
83-
"ts-node": "^10.4.0",
84-
"typedoc": "^0.22.8",
85-
"typescript": "^4.4.4"
80+
"prettier": "^2.6.2",
81+
"semantic-release": "^19.0.2",
82+
"supertest": "^6.2.3",
83+
"ts-node": "^10.8.1",
84+
"typedoc": "^0.22.17",
85+
"typescript": "^4.7.3"
8686
}
8787
}

0 commit comments

Comments
 (0)