@adobe/helix-onedrive-support 9.1.6 → 9.1.8
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/.circleci/config.yml +8 -19
- package/.github/workflows/semantic-release.yaml +2 -2
- package/CHANGELOG.md +14 -0
- package/package.json +7 -8
package/.circleci/config.yml
CHANGED
|
@@ -1,35 +1,26 @@
|
|
|
1
1
|
version: 2.1
|
|
2
2
|
executors:
|
|
3
|
-
|
|
3
|
+
node18:
|
|
4
4
|
docker:
|
|
5
|
-
- image:
|
|
6
|
-
|
|
7
|
-
|
|
5
|
+
- image: cimg/node:18.2
|
|
6
|
+
|
|
7
|
+
orbs:
|
|
8
|
+
codecov: codecov/codecov@3.2.4
|
|
8
9
|
|
|
9
10
|
commands:
|
|
10
11
|
setup:
|
|
11
12
|
steps:
|
|
12
13
|
- checkout
|
|
13
|
-
- restore_cache:
|
|
14
|
-
keys:
|
|
15
|
-
- v2-dependencies-{{ arch }}-{{ checksum "package-lock.json" }}
|
|
16
|
-
- run:
|
|
17
|
-
name: install latest npm
|
|
18
|
-
command: sudo npm -g install npm@
|
|
19
14
|
- run:
|
|
20
15
|
name: Installing Dependencies
|
|
21
16
|
command: npm ci
|
|
22
|
-
- save_cache:
|
|
23
|
-
paths:
|
|
24
|
-
- node_modules
|
|
25
|
-
key: v2-dependencies-{{ arch }}-{{ checksum "package-lock.json" }}
|
|
26
17
|
- run:
|
|
27
18
|
name: prepare test git user
|
|
28
19
|
command: git config --global user.email "circleci@example.com" && git config --global user.name "CircleCi Build"
|
|
29
20
|
|
|
30
21
|
jobs:
|
|
31
22
|
build:
|
|
32
|
-
executor:
|
|
23
|
+
executor: node18
|
|
33
24
|
|
|
34
25
|
steps:
|
|
35
26
|
- setup
|
|
@@ -37,14 +28,12 @@ jobs:
|
|
|
37
28
|
- run:
|
|
38
29
|
name: Lint
|
|
39
30
|
command: npm run lint
|
|
40
|
-
|
|
41
31
|
- run:
|
|
42
32
|
name: Getting Code Coverage
|
|
43
|
-
command: npm run test
|
|
44
|
-
|
|
33
|
+
command: npm run test
|
|
34
|
+
- codecov/upload
|
|
45
35
|
- store_test_results:
|
|
46
36
|
path: junit
|
|
47
|
-
|
|
48
37
|
- store_artifacts:
|
|
49
38
|
path: junit
|
|
50
39
|
|
|
@@ -10,10 +10,10 @@ jobs:
|
|
|
10
10
|
if: "!contains(github.event.head_commit.message, '[skip ci]')"
|
|
11
11
|
steps:
|
|
12
12
|
- uses: actions/checkout@v3
|
|
13
|
-
- name: Use Node.js
|
|
13
|
+
- name: Use Node.js 18.x
|
|
14
14
|
uses: actions/setup-node@v3
|
|
15
15
|
with:
|
|
16
|
-
node-version: '
|
|
16
|
+
node-version: '18.x'
|
|
17
17
|
- run: npm install
|
|
18
18
|
- run: npm test
|
|
19
19
|
- run: npm run semantic-release
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [9.1.8](https://github.com/adobe/helix-onedrive-support/compare/v9.1.7...v9.1.8) (2023-01-21)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **deps:** update external fixes ([e2abd5e](https://github.com/adobe/helix-onedrive-support/commit/e2abd5ebcc8032ef29c2d77d2bbf63c5f10b7f83))
|
|
7
|
+
|
|
8
|
+
## [9.1.7](https://github.com/adobe/helix-onedrive-support/compare/v9.1.6...v9.1.7) (2023-01-10)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* update msal ([#337](https://github.com/adobe/helix-onedrive-support/issues/337)) ([e765e04](https://github.com/adobe/helix-onedrive-support/commit/e765e04b0247b9c1b8547a41ce418bfa1dc3dd14))
|
|
14
|
+
|
|
1
15
|
## [9.1.6](https://github.com/adobe/helix-onedrive-support/compare/v9.1.5...v9.1.6) (2023-01-07)
|
|
2
16
|
|
|
3
17
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adobe/helix-onedrive-support",
|
|
3
|
-
"version": "9.1.
|
|
3
|
+
"version": "9.1.8",
|
|
4
4
|
"description": "Helix OneDrive Support",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"exports": {
|
|
@@ -11,7 +11,6 @@
|
|
|
11
11
|
"types": "src/index.d.ts",
|
|
12
12
|
"scripts": {
|
|
13
13
|
"test": "c8 mocha --spec=test/**/*.test.js",
|
|
14
|
-
"test-ci": "c8 mocha --spec=test/**/*.test.js && codecov",
|
|
15
14
|
"lint": "./node_modules/.bin/eslint .",
|
|
16
15
|
"semantic-release": "semantic-release",
|
|
17
16
|
"docs": "npx jsdoc2md -c .jsdoc.json --files 'src/*.js' > docs/API.md",
|
|
@@ -29,8 +28,8 @@
|
|
|
29
28
|
"homepage": "https://github.com/adobe/helix-onedrive-support#readme",
|
|
30
29
|
"dependencies": {
|
|
31
30
|
"@adobe/fetch": "3.3.1",
|
|
32
|
-
"@aws-sdk/client-s3": "3.
|
|
33
|
-
"@azure/msal-node": "1.14.
|
|
31
|
+
"@aws-sdk/client-s3": "3.254.0",
|
|
32
|
+
"@azure/msal-node": "1.14.6",
|
|
34
33
|
"jose": "4.11.2"
|
|
35
34
|
},
|
|
36
35
|
"devDependencies": {
|
|
@@ -41,9 +40,9 @@
|
|
|
41
40
|
"c8": "7.12.0",
|
|
42
41
|
"codecov": "3.8.3",
|
|
43
42
|
"dotenv": "16.0.3",
|
|
44
|
-
"eslint": "8.
|
|
43
|
+
"eslint": "8.32.0",
|
|
45
44
|
"eslint-plugin-header": "3.1.1",
|
|
46
|
-
"eslint-plugin-import": "2.
|
|
45
|
+
"eslint-plugin-import": "2.27.5",
|
|
47
46
|
"husky": "8.0.3",
|
|
48
47
|
"install": "0.13.0",
|
|
49
48
|
"jsdoc-to-markdown": "8.0.0",
|
|
@@ -52,8 +51,8 @@
|
|
|
52
51
|
"lint-staged": "13.1.0",
|
|
53
52
|
"mocha": "10.2.0",
|
|
54
53
|
"mocha-multi-reporters": "1.5.1",
|
|
55
|
-
"nock": "13.
|
|
56
|
-
"npm": "9.
|
|
54
|
+
"nock": "13.3.0",
|
|
55
|
+
"npm": "9.3.1",
|
|
57
56
|
"semantic-release": "19.0.5"
|
|
58
57
|
},
|
|
59
58
|
"lint-staged": {
|