mirror of
https://github.com/immich-app/immich
synced 2026-04-21 13:37:38 +00:00
fix(deps): update dependency jose to v6 (#27862)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Daniel Dietzler <mail@ddietzler.dev>
This commit is contained in:
parent
d046f16860
commit
88bce52042
4 changed files with 9 additions and 12 deletions
|
|
@ -66,7 +66,9 @@ const getClaims = (sub: string, use?: string) => {
|
|||
};
|
||||
|
||||
const setup = async () => {
|
||||
const { privateKey, publicKey } = await generateKeyPair('RS256');
|
||||
const { privateKey, publicKey } = await generateKeyPair('RS256', {
|
||||
extractable: true,
|
||||
});
|
||||
|
||||
const redirectUris = [
|
||||
'http://127.0.0.1:2285/auth/login',
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@
|
|||
"start": "tsx startup.ts"
|
||||
},
|
||||
"devDependencies": {
|
||||
"jose": "^5.6.3",
|
||||
"jose": "^6.0.0",
|
||||
"@types/oidc-provider": "^9.0.0",
|
||||
"oidc-provider": "^9.0.0",
|
||||
"tsx": "^4.20.6"
|
||||
|
|
|
|||
|
|
@ -295,8 +295,8 @@ importers:
|
|||
specifier: ^9.0.0
|
||||
version: 9.5.0
|
||||
jose:
|
||||
specifier: ^5.6.3
|
||||
version: 5.10.0
|
||||
specifier: ^6.0.0
|
||||
version: 6.2.2
|
||||
oidc-provider:
|
||||
specifier: ^9.0.0
|
||||
version: 9.7.1
|
||||
|
|
@ -473,8 +473,8 @@ importers:
|
|||
specifier: ^5.8.2
|
||||
version: 5.10.1
|
||||
jose:
|
||||
specifier: ^5.10.0
|
||||
version: 5.10.0
|
||||
specifier: ^6.0.0
|
||||
version: 6.2.2
|
||||
js-yaml:
|
||||
specifier: ^4.1.0
|
||||
version: 4.1.1
|
||||
|
|
@ -8407,9 +8407,6 @@ packages:
|
|||
joi@17.13.3:
|
||||
resolution: {integrity: sha512-otDA4ldcIx+ZXsKHWmp0YizCweVRZG96J10b0FevjfuncLO1oX59THoAmHkNubYJ+9gWsYsp5k8v4ib6oDv1fA==}
|
||||
|
||||
jose@5.10.0:
|
||||
resolution: {integrity: sha512-s+3Al/p9g32Iq+oqXxkW//7jk2Vig6FF1CFqzVXoTUXt2qz89YWbL+OwS17NFYEvxC35n0FKeGO2LGYSxeM2Gg==}
|
||||
|
||||
jose@6.2.2:
|
||||
resolution: {integrity: sha512-d7kPDd34KO/YnzaDOlikGpOurfF0ByC2sEV4cANCtdqLlTfBlw2p14O/5d/zv40gJPbIQxfES3nSx1/oYNyuZQ==}
|
||||
|
||||
|
|
@ -21240,8 +21237,6 @@ snapshots:
|
|||
'@sideway/formula': 3.0.1
|
||||
'@sideway/pinpoint': 2.0.0
|
||||
|
||||
jose@5.10.0: {}
|
||||
|
||||
jose@6.2.2: {}
|
||||
|
||||
js-tokens@10.0.0: {}
|
||||
|
|
|
|||
|
|
@ -83,7 +83,7 @@
|
|||
"helmet": "^8.1.0",
|
||||
"i18n-iso-countries": "^7.6.0",
|
||||
"ioredis": "^5.8.2",
|
||||
"jose": "^5.10.0",
|
||||
"jose": "^6.0.0",
|
||||
"js-yaml": "^4.1.0",
|
||||
"jsonwebtoken": "^9.0.2",
|
||||
"kysely": "0.28.15",
|
||||
|
|
|
|||
Loading…
Reference in a new issue