Fix compat with node 18

This commit is contained in:
Chocobozzz 2022-12-06 09:51:24 +01:00
parent fa9005ab1b
commit 9ed56041e9
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
2 changed files with 17 additions and 20 deletions

View File

@ -1,20 +1,20 @@
{
"name": "peertube-plugin-auth-openid-connect",
"version": "0.1.0",
"version": "0.1.1",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "peertube-plugin-auth-openid-connect",
"version": "0.1.0",
"version": "0.1.1",
"dependencies": {
"openid-client": "^5.1.1"
}
},
"node_modules/jose": {
"version": "4.3.7",
"resolved": "https://registry.npmjs.org/jose/-/jose-4.3.7.tgz",
"integrity": "sha512-S7Xfsy8nN9Iw/AZxk+ZxEbd5ImIwJPM0TfAo8zI8FF+3lidQ2yiK4dqzsaPKSbZD0woNVSY0KCql6rlKc5V7ug==",
"version": "4.11.1",
"resolved": "https://registry.npmjs.org/jose/-/jose-4.11.1.tgz",
"integrity": "sha512-YRv4Tk/Wlug8qicwqFNFVEZSdbROCHRAC6qu/i0dyNKr5JQdoa2pIGoS04lLO/jXQX7Z9omoNewYIVIxqZBd9Q==",
"funding": {
"url": "https://github.com/sponsors/panva"
}
@ -47,18 +47,15 @@
}
},
"node_modules/openid-client": {
"version": "5.1.1",
"resolved": "https://registry.npmjs.org/openid-client/-/openid-client-5.1.1.tgz",
"integrity": "sha512-vwbS4T7hpaWol0GerNabnslUWTxq1NHjnLqdFovzqWlLHW5kp08Tme8FSSeTswABjSC9d88ofTFnfAYy/zwtlQ==",
"version": "5.3.1",
"resolved": "https://registry.npmjs.org/openid-client/-/openid-client-5.3.1.tgz",
"integrity": "sha512-RLfehQiHch9N6tRWNx68cicf3b1WR0x74bJWHRc25uYIbSRwjxYcTFaRnzbbpls5jroLAaB/bFIodTgA5LJMvw==",
"dependencies": {
"jose": "^4.1.4",
"jose": "^4.10.0",
"lru-cache": "^6.0.0",
"object-hash": "^2.0.1",
"oidc-token-hash": "^5.0.1"
},
"engines": {
"node": "^12.19.0 || ^14.15.0 || ^16.13.0"
},
"funding": {
"url": "https://github.com/sponsors/panva"
}
@ -71,9 +68,9 @@
},
"dependencies": {
"jose": {
"version": "4.3.7",
"resolved": "https://registry.npmjs.org/jose/-/jose-4.3.7.tgz",
"integrity": "sha512-S7Xfsy8nN9Iw/AZxk+ZxEbd5ImIwJPM0TfAo8zI8FF+3lidQ2yiK4dqzsaPKSbZD0woNVSY0KCql6rlKc5V7ug=="
"version": "4.11.1",
"resolved": "https://registry.npmjs.org/jose/-/jose-4.11.1.tgz",
"integrity": "sha512-YRv4Tk/Wlug8qicwqFNFVEZSdbROCHRAC6qu/i0dyNKr5JQdoa2pIGoS04lLO/jXQX7Z9omoNewYIVIxqZBd9Q=="
},
"lru-cache": {
"version": "6.0.0",
@ -94,11 +91,11 @@
"integrity": "sha512-EvoOtz6FIEBzE+9q253HsLCVRiK/0doEJ2HCvvqMQb3dHZrP3WlJKYtJ55CRTw4jmYomzH4wkPuCj/I3ZvpKxQ=="
},
"openid-client": {
"version": "5.1.1",
"resolved": "https://registry.npmjs.org/openid-client/-/openid-client-5.1.1.tgz",
"integrity": "sha512-vwbS4T7hpaWol0GerNabnslUWTxq1NHjnLqdFovzqWlLHW5kp08Tme8FSSeTswABjSC9d88ofTFnfAYy/zwtlQ==",
"version": "5.3.1",
"resolved": "https://registry.npmjs.org/openid-client/-/openid-client-5.3.1.tgz",
"integrity": "sha512-RLfehQiHch9N6tRWNx68cicf3b1WR0x74bJWHRc25uYIbSRwjxYcTFaRnzbbpls5jroLAaB/bFIodTgA5LJMvw==",
"requires": {
"jose": "^4.1.4",
"jose": "^4.10.0",
"lru-cache": "^6.0.0",
"object-hash": "^2.0.1",
"oidc-token-hash": "^5.0.1"

View File

@ -1,6 +1,6 @@
{
"name": "peertube-plugin-auth-openid-connect",
"version": "0.1.0",
"version": "0.1.1",
"description": "Add OpenID connect support to login form in PeerTube.",
"licence": "AGPL-3.0-only",
"engine": {