Skip to content

Commit a83f800

Browse files
committed
Update for use new updated version of oidc-client-js
1 parent 0691cb7 commit a83f800

File tree

4 files changed

+18
-18
lines changed

4 files changed

+18
-18
lines changed

packages/browser/package-lock.json

Lines changed: 6 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/browser/src/sessionInfo/SessionInfoManager.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,11 @@ export async function clear(
6161
// FIXME: This is needed until the DPoP key is stored safely
6262
storage.delete("clientKey", { secure: false }),
6363
]);
64-
await clearOidcPersistentStorage();
64+
try {
65+
await clearOidcPersistentStorage();
66+
} catch(e) {
67+
console.log(e)
68+
}
6569
}
6670

6771
/**

packages/oidc-browser/package-lock.json

Lines changed: 5 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/oidc-browser/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@inrupt/oidc-client-ext",
3-
"version": "1.15.0",
3+
"version": "1.15.1",
44
"description": "A module extending oidc-client-js with new features, such as dynamic client registration and DPoP support.",
55
"homepage": "https://github.com/inrupt/solid-client-authn-js/tree/main/packages/oidc/",
66
"bugs": "https://github.com/inrupt/solid-client-authn-js/issues",
@@ -25,7 +25,7 @@
2525
"ts-node": "^10.9.1"
2626
},
2727
"dependencies": {
28-
"@inrupt/oidc-client": "^1.11.6",
28+
"@inrupt/oidc-client": "git+https://github.com/OpenLinkSoftware/oidc-client-js#openlink_1_11_17",
2929
"@inrupt/solid-client-authn-core": "^1.15.0",
3030
"jose": "^4.10.0",
3131
"uuid": "^9.0.0"

0 commit comments

Comments
 (0)