Skip to content

Commit ed59e76

Browse files
chore: bump jws to 4.0.1 (#1007)
* Create test.yml * Delete .circleci directory * Update test.yml * bump jws to version 4.0.1 * update CI workflows * chore: fixing test command --------- Co-authored-by: Frederik Prijck <frederik.prijck@okta.com>
1 parent bc28861 commit ed59e76

File tree

6 files changed

+43
-51
lines changed

6 files changed

+43
-51
lines changed

.circleci/config.yml

Lines changed: 0 additions & 47 deletions
This file was deleted.

.github/workflows/test.yml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
name: Test
2+
3+
on:
4+
push:
5+
branches: [master]
6+
pull_request:
7+
branches: [master]
8+
9+
permissions:
10+
contents: read
11+
12+
jobs:
13+
test:
14+
strategy:
15+
fail-fast: false
16+
matrix:
17+
node: [14, 16, 18, 20, 22, 24]
18+
19+
name: Test (Node ${{ matrix.node }})
20+
runs-on: ubuntu-latest
21+
22+
steps:
23+
- name: Checkout code
24+
uses: actions/checkout@v6
25+
- name: Setup Node
26+
uses: actions/setup-node@v6
27+
with:
28+
node-version: ${{ matrix.node }}
29+
30+
- name: Install dependencies
31+
run: npm install
32+
33+
- name: Test
34+
run: npm test

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@ node_modules
22
.DS_Store
33
.nyc_output
44
coverage
5+
package-lock.json

.npmignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
opslevel.yml

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@
44
All notable changes to this project will be documented in this file starting from version **v4.0.0**.
55
This project adheres to [Semantic Versioning](http://semver.org/).
66

7+
## 9.0.3 - 2025-12-04
8+
9+
- updates jws version to 4.0.1.
10+
711
## 9.0.2 - 2023-08-30
812

913
- security: updating semver to 7.5.4 to resolve CVE-2022-25883, closes [#921](https://github.com/auth0/node-jsonwebtoken/issues/921).

package.json

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jsonwebtoken",
3-
"version": "9.0.2",
3+
"version": "9.0.3",
44
"description": "JSON Web Token implementation (symmetric and asymmetric)",
55
"main": "index.js",
66
"nyc": {
@@ -21,7 +21,7 @@
2121
"scripts": {
2222
"lint": "eslint .",
2323
"coverage": "nyc mocha --use_strict",
24-
"test": "npm run lint && npm run coverage && cost-of-modules"
24+
"test": "mocha"
2525
},
2626
"repository": {
2727
"type": "git",
@@ -36,7 +36,7 @@
3636
"url": "https://github.com/auth0/node-jsonwebtoken/issues"
3737
},
3838
"dependencies": {
39-
"jws": "^3.2.2",
39+
"jws": "^4.0.1",
4040
"lodash.includes": "^4.3.0",
4141
"lodash.isboolean": "^3.0.3",
4242
"lodash.isinteger": "^4.0.4",
@@ -51,7 +51,6 @@
5151
"atob": "^2.1.2",
5252
"chai": "^4.1.2",
5353
"conventional-changelog": "~1.1.0",
54-
"cost-of-modules": "^1.0.1",
5554
"eslint": "^4.19.1",
5655
"mocha": "^5.2.0",
5756
"nsp": "^2.6.2",

0 commit comments

Comments
 (0)