Skip to content

Commit b6e7d28

Browse files
fix(deps): update dependency jsonwebtoken to v9 [security]
1 parent 5456169 commit b6e7d28

File tree

2 files changed

+15
-49
lines changed

2 files changed

+15
-49
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
"dependencies": {
4040
"async": "^3.2.0",
4141
"express": "^4.17.1",
42-
"jsonwebtoken": "^8.5.1",
42+
"jsonwebtoken": "^9.0.0",
4343
"markdown-it": "^12.0.0",
4444
"passport-http-bearer": "^1.0.1"
4545
},

yarn.lock

+14-48
Original file line numberDiff line numberDiff line change
@@ -1883,21 +1883,15 @@ jsonparse@^1.2.0:
18831883
resolved "https://registry.yarnpkg.com/jsonparse/-/jsonparse-1.3.1.tgz#3f4dae4a91fac315f71062f8521cc239f1366280"
18841884
integrity sha1-P02uSpH6wxX3EGL4UhzCOfE2YoA=
18851885

1886-
jsonwebtoken@^8.5.1:
1887-
version "8.5.1"
1888-
resolved "https://registry.yarnpkg.com/jsonwebtoken/-/jsonwebtoken-8.5.1.tgz#00e71e0b8df54c2121a1f26137df2280673bcc0d"
1889-
integrity sha512-XjwVfRS6jTMsqYs0EsuJ4LGxXV14zQybNd4L2r0UvbVnSF9Af8x7p5MzbJ90Ioz/9TI41/hTCvznF/loiSzn8w==
1886+
jsonwebtoken@^9.0.0:
1887+
version "9.0.0"
1888+
resolved "https://registry.yarnpkg.com/jsonwebtoken/-/jsonwebtoken-9.0.0.tgz#d0faf9ba1cc3a56255fe49c0961a67e520c1926d"
1889+
integrity sha512-tuGfYXxkQGDPnLJ7SibiQgVgeDgfbPq2k2ICcbgqW8WxWLBAxKQM/ZCu/IT8SOSwmaYl4dpTFCW5xZv7YbbWUw==
18901890
dependencies:
18911891
jws "^3.2.2"
1892-
lodash.includes "^4.3.0"
1893-
lodash.isboolean "^3.0.3"
1894-
lodash.isinteger "^4.0.4"
1895-
lodash.isnumber "^3.0.3"
1896-
lodash.isplainobject "^4.0.6"
1897-
lodash.isstring "^4.0.1"
1898-
lodash.once "^4.0.0"
1892+
lodash "^4.17.21"
18991893
ms "^2.1.1"
1900-
semver "^5.6.0"
1894+
semver "^7.3.8"
19011895

19021896
jwa@^1.4.1:
19031897
version "1.4.1"
@@ -1998,41 +1992,16 @@ lodash.camelcase@^4.3.0:
19981992
resolved "https://registry.yarnpkg.com/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz#b28aa6288a2b9fc651035c7711f65ab6190331a6"
19991993
integrity sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==
20001994

2001-
lodash.includes@^4.3.0:
2002-
version "4.3.0"
2003-
resolved "https://registry.yarnpkg.com/lodash.includes/-/lodash.includes-4.3.0.tgz#60bb98a87cb923c68ca1e51325483314849f553f"
2004-
integrity sha1-YLuYqHy5I8aMoeUTJUgzFISfVT8=
2005-
2006-
lodash.isboolean@^3.0.3:
2007-
version "3.0.3"
2008-
resolved "https://registry.yarnpkg.com/lodash.isboolean/-/lodash.isboolean-3.0.3.tgz#6c2e171db2a257cd96802fd43b01b20d5f5870f6"
2009-
integrity sha1-bC4XHbKiV82WgC/UOwGyDV9YcPY=
2010-
20111995
lodash.isfunction@^3.0.9:
20121996
version "3.0.9"
20131997
resolved "https://registry.yarnpkg.com/lodash.isfunction/-/lodash.isfunction-3.0.9.tgz#06de25df4db327ac931981d1bdb067e5af68d051"
20141998
integrity sha512-AirXNj15uRIMMPihnkInB4i3NHeb4iBtNg9WRWuK2o31S+ePwwNmDPaTL3o7dTJ+VXNZim7rFs4rxN4YU1oUJw==
20151999

2016-
lodash.isinteger@^4.0.4:
2017-
version "4.0.4"
2018-
resolved "https://registry.yarnpkg.com/lodash.isinteger/-/lodash.isinteger-4.0.4.tgz#619c0af3d03f8b04c31f5882840b77b11cd68343"
2019-
integrity sha1-YZwK89A/iwTDH1iChAt3sRzWg0M=
2020-
2021-
lodash.isnumber@^3.0.3:
2022-
version "3.0.3"
2023-
resolved "https://registry.yarnpkg.com/lodash.isnumber/-/lodash.isnumber-3.0.3.tgz#3ce76810c5928d03352301ac287317f11c0b1ffc"
2024-
integrity sha1-POdoEMWSjQM1IwGsKHMX8RwLH/w=
2025-
20262000
lodash.isplainobject@^4.0.6:
20272001
version "4.0.6"
20282002
resolved "https://registry.yarnpkg.com/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz#7c526a52d89b45c45cc690b88163be0497f550cb"
20292003
integrity sha1-fFJqUtibRcRcxpC4gWO+BJf1UMs=
20302004

2031-
lodash.isstring@^4.0.1:
2032-
version "4.0.1"
2033-
resolved "https://registry.yarnpkg.com/lodash.isstring/-/lodash.isstring-4.0.1.tgz#d527dfb5456eca7cc9bb95d5daeaf88ba54a5451"
2034-
integrity sha1-1SfftUVuynzJu5XV2ur4i6VKVFE=
2035-
20362005
lodash.kebabcase@^4.1.1:
20372006
version "4.1.1"
20382007
resolved "https://registry.yarnpkg.com/lodash.kebabcase/-/lodash.kebabcase-4.1.1.tgz#8489b1cb0d29ff88195cceca448ff6d6cc295c36"
@@ -2048,11 +2017,6 @@ lodash.mergewith@^4.6.2:
20482017
resolved "https://registry.yarnpkg.com/lodash.mergewith/-/lodash.mergewith-4.6.2.tgz#617121f89ac55f59047c7aec1ccd6654c6590f55"
20492018
integrity sha512-GK3g5RPZWTRSeLSpgP8Xhra+pnjBC56q9FZYe1d5RN3TJ35dbkGy3YqBSMbyCrlbi+CM9Z3Jk5yTL7RCsqboyQ==
20502019

2051-
lodash.once@^4.0.0:
2052-
version "4.1.1"
2053-
resolved "https://registry.yarnpkg.com/lodash.once/-/lodash.once-4.1.1.tgz#0dd3971213c7c56df880977d504c88fb471a97ac"
2054-
integrity sha1-DdOXEhPHxW34gJd9UEyI+0cal6w=
2055-
20562020
lodash.snakecase@^4.1.1:
20572021
version "4.1.1"
20582022
resolved "https://registry.yarnpkg.com/lodash.snakecase/-/lodash.snakecase-4.1.1.tgz#39d714a35357147837aefd64b5dcbb16becd8f8d"
@@ -2073,7 +2037,7 @@ lodash.upperfirst@^4.3.1:
20732037
resolved "https://registry.yarnpkg.com/lodash.upperfirst/-/lodash.upperfirst-4.3.1.tgz#1365edf431480481ef0d1c68957a5ed99d49f7ce"
20742038
integrity sha512-sReKOYJIJf74dhJONhU4e0/shzi1trVbSWDOhKYE5XV2O+H7Sb2Dihwuc7xWxVl+DgFPyTqIN3zMfT9cq5iWDg==
20752039

2076-
lodash@^4.17.15:
2040+
lodash@^4.17.15, lodash@^4.17.21:
20772041
version "4.17.21"
20782042
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c"
20792043
integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==
@@ -2724,11 +2688,6 @@ [email protected]:
27242688
dependencies:
27252689
lru-cache "^6.0.0"
27262690

2727-
semver@^5.6.0:
2728-
version "5.7.0"
2729-
resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.0.tgz#790a7cf6fea5459bac96110b29b60412dc8ff96b"
2730-
integrity sha512-Ya52jSX2u7QKghxeoFGpLwCtGlt7j0oY9DYb5apt9nPlJ42ID+ulTXESnt/qAQcoSERyZ5sl3LDIOw0nAn/5DA==
2731-
27322691
semver@^6.3.0:
27332692
version "6.3.0"
27342693
resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d"
@@ -2741,6 +2700,13 @@ semver@^7.3.4:
27412700
dependencies:
27422701
lru-cache "^6.0.0"
27432702

2703+
semver@^7.3.8:
2704+
version "7.5.1"
2705+
resolved "https://registry.yarnpkg.com/semver/-/semver-7.5.1.tgz#c90c4d631cf74720e46b21c1d37ea07edfab91ec"
2706+
integrity sha512-Wvss5ivl8TMRZXXESstBA4uR5iXgEN/VC5/sOcuXdVLzcdkz4HWetIoRfG5gb5X+ij/G9rw9YoGn3QoQ8OCSpw==
2707+
dependencies:
2708+
lru-cache "^6.0.0"
2709+
27442710
27452711
version "0.17.1"
27462712
resolved "https://registry.yarnpkg.com/send/-/send-0.17.1.tgz#c1d8b059f7900f7466dd4938bdc44e11ddb376c8"

0 commit comments

Comments
 (0)