@adobe/helix-onedrive-support 11.0.3 → 11.0.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.
@@ -9,9 +9,9 @@ jobs:
9
9
  runs-on: ubuntu-latest
10
10
  if: "!contains(github.event.head_commit.message, '[skip ci]')"
11
11
  steps:
12
- - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4
12
+ - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
13
13
  - name: Use Node.js 18.x
14
- uses: actions/setup-node@v3
14
+ uses: actions/setup-node@v4
15
15
  with:
16
16
  node-version: '18.x'
17
17
  - run: npm install
@@ -0,0 +1,16 @@
1
+ {
2
+ $schema: 'https://docs.renovatebot.com/renovate-schema.json',
3
+ extends: [
4
+ 'local>adobe/helix-shared'
5
+ ],
6
+ packageRules: [
7
+ {
8
+ // issues with Cachemanager.getIdToken() probably due to:
9
+ // https://github.com/AzureAD/microsoft-authentication-library-for-js/commit/0f5e6c2142889ea9f43d808f270aec9264afd363#diff-9386241630b242163033adcf355efb44fbb1f78fc9516e3553f226e4a5c0738bL287
10
+ packageNames: [
11
+ '@azure/msal-node'
12
+ ],
13
+ allowedVersions: '!2.3.0'
14
+ },
15
+ ]
16
+ }
package/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ ## [11.0.4](https://github.com/adobe/helix-onedrive-support/compare/v11.0.3...v11.0.4) (2023-10-24)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **deps:** update dependency @adobe/helix-shared-tokencache to v1.3.13 ([81634dd](https://github.com/adobe/helix-onedrive-support/commit/81634ddac26678063d16ee566c4f43457c0cbadc))
7
+
1
8
  ## [11.0.3](https://github.com/adobe/helix-onedrive-support/compare/v11.0.2...v11.0.3) (2023-10-21)
2
9
 
3
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adobe/helix-onedrive-support",
3
- "version": "11.0.3",
3
+ "version": "11.0.4",
4
4
  "description": "Helix OneDrive Support",
5
5
  "main": "src/index.js",
6
6
  "exports": {
@@ -28,7 +28,7 @@
28
28
  "homepage": "https://github.com/adobe/helix-onedrive-support#readme",
29
29
  "dependencies": {
30
30
  "@adobe/fetch": "4.1.0",
31
- "@adobe/helix-shared-tokencache": "1.3.12",
31
+ "@adobe/helix-shared-tokencache": "1.3.13",
32
32
  "@azure/msal-node": "2.2.0",
33
33
  "jose": "4.15.4"
34
34
  },
@@ -36,24 +36,24 @@
36
36
  "@adobe/eslint-config-helix": "2.0.3",
37
37
  "@semantic-release/changelog": "6.0.3",
38
38
  "@semantic-release/git": "10.0.1",
39
- "@aws-sdk/client-s3": "3.428.0",
39
+ "@aws-sdk/client-s3": "3.433.0",
40
40
  "ajv": "8.12.0",
41
41
  "c8": "8.0.1",
42
42
  "codecov": "3.8.3",
43
43
  "dotenv": "16.3.1",
44
- "eslint": "8.51.0",
44
+ "eslint": "8.52.0",
45
45
  "eslint-plugin-header": "3.1.1",
46
- "eslint-plugin-import": "2.28.1",
46
+ "eslint-plugin-import": "2.29.0",
47
47
  "husky": "8.0.3",
48
48
  "install": "0.13.0",
49
49
  "jsdoc-to-markdown": "8.0.0",
50
50
  "jsdoc-tsimport-plugin": "1.0.5",
51
51
  "junit-report-builder": "3.1.0",
52
- "lint-staged": "15.0.1",
52
+ "lint-staged": "15.0.2",
53
53
  "mocha": "10.2.0",
54
54
  "mocha-multi-reporters": "1.5.1",
55
- "nock": "13.3.4",
56
- "npm": "10.2.0",
55
+ "nock": "13.3.6",
56
+ "npm": "10.2.1",
57
57
  "semantic-release": "22.0.5"
58
58
  },
59
59
  "lint-staged": {
package/.renovaterc.json DELETED
@@ -1,3 +0,0 @@
1
- {
2
- "extends": ["github>adobe/helix-shared"]
3
- }