@adobe/helix-onedrive-support 11.5.3 → 11.5.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +7 -0
- package/package.json +2 -2
- package/src/OneDriveAuth.d.ts +1 -1
- package/src/OneDriveAuth.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [11.5.4](https://github.com/adobe/helix-onedrive-support/compare/v11.5.3...v11.5.4) (2024-07-12)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **deps:** change @adobe/helix-shared-tokencache dep to non-fixed ([#559](https://github.com/adobe/helix-onedrive-support/issues/559)) ([5c7a5ba](https://github.com/adobe/helix-onedrive-support/commit/5c7a5ba5d1cd80a183f7555343ade3b338afcb1b))
|
|
7
|
+
|
|
1
8
|
## [11.5.3](https://github.com/adobe/helix-onedrive-support/compare/v11.5.2...v11.5.3) (2024-07-09)
|
|
2
9
|
|
|
3
10
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adobe/helix-onedrive-support",
|
|
3
|
-
"version": "11.5.
|
|
3
|
+
"version": "11.5.4",
|
|
4
4
|
"description": "Helix OneDrive Support",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"exports": {
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"homepage": "https://github.com/adobe/helix-onedrive-support#readme",
|
|
30
30
|
"dependencies": {
|
|
31
31
|
"@adobe/fetch": "4.1.8",
|
|
32
|
-
"@adobe/helix-shared-tokencache": "1.4.19",
|
|
32
|
+
"@adobe/helix-shared-tokencache": "^1.4.19",
|
|
33
33
|
"@azure/msal-node": "2.10.0",
|
|
34
34
|
"jose": "5.6.3"
|
|
35
35
|
},
|
package/src/OneDriveAuth.d.ts
CHANGED
package/src/OneDriveAuth.js
CHANGED
|
@@ -325,7 +325,7 @@ export class OneDriveAuth {
|
|
|
325
325
|
}
|
|
326
326
|
|
|
327
327
|
// try again with fresh mem cache
|
|
328
|
-
if (this.cachePlugin
|
|
328
|
+
if (typeof this.cachePlugin.clear === 'function') {
|
|
329
329
|
this.cachePlugin.clear();
|
|
330
330
|
|
|
331
331
|
accounts = await app.getTokenCache().getAllAccounts();
|