@adobe/helix-onedrive-support 11.3.35 → 11.3.36

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 CHANGED
@@ -1,3 +1,10 @@
1
+ ## [11.3.36](https://github.com/adobe/helix-onedrive-support/compare/v11.3.35...v11.3.36) (2024-06-26)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **deps:** add 'onedrive' to cache plugins ([#548](https://github.com/adobe/helix-onedrive-support/issues/548)) ([75e4bb6](https://github.com/adobe/helix-onedrive-support/commit/75e4bb64cf96c0ef949a9c6b23478d27113cb1c4))
7
+
1
8
  ## [11.3.35](https://github.com/adobe/helix-onedrive-support/compare/v11.3.34...v11.3.35) (2024-06-26)
2
9
 
3
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adobe/helix-onedrive-support",
3
- "version": "11.3.35",
3
+ "version": "11.3.36",
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.13",
32
+ "@adobe/helix-shared-tokencache": "1.4.14",
33
33
  "@azure/msal-node": "2.9.2",
34
34
  "jose": "5.4.1"
35
35
  },
@@ -39,8 +39,8 @@
39
39
  "@semantic-release/changelog": "6.0.3",
40
40
  "@semantic-release/git": "10.0.1",
41
41
  "ajv": "8.16.0",
42
- "chalk-template": "1.1.0",
43
42
  "c8": "10.1.2",
43
+ "chalk-template": "1.1.0",
44
44
  "dotenv": "16.4.5",
45
45
  "eslint": "8.57.0",
46
46
  "eslint-plugin-header": "3.1.1",
@@ -53,6 +53,7 @@
53
53
  "lint-staged": "15.2.7",
54
54
  "mocha": "10.4.0",
55
55
  "mocha-multi-reporters": "1.5.1",
56
+ "mocha-suppress-logs": "0.5.1",
56
57
  "nock": "13.5.4",
57
58
  "npm": "10.8.1",
58
59
  "semantic-release": "24.0.0"
@@ -61,7 +62,10 @@
61
62
  "*.js": "eslint"
62
63
  },
63
64
  "mocha": {
64
- "require": "test/setup-env.js",
65
+ "require": [
66
+ "test/setup-env.js",
67
+ "mocha-suppress-logs"
68
+ ],
65
69
  "reporter": "mocha-multi-reporters",
66
70
  "reporter-options": "configFile=.mocha-multi.json"
67
71
  }
@@ -101,6 +101,7 @@ export class OneDriveAuth {
101
101
  log: this._log,
102
102
  key: 'default',
103
103
  caches: new Map(),
104
+ type: 'onedrive',
104
105
  });
105
106
  }
106
107