@adobe/helix-onedrive-support 9.1.7 → 9.1.9

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.
@@ -1,35 +1,26 @@
1
1
  version: 2.1
2
2
  executors:
3
- node14:
3
+ node18:
4
4
  docker:
5
- - image: circleci/node:14
6
- environment:
7
- NPM_CONFIG_PREFIX: ~/.npm-global
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: node14
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-ci
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 14.x
13
+ - name: Use Node.js 18.x
14
14
  uses: actions/setup-node@v3
15
15
  with:
16
- node-version: '14.x'
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.9](https://github.com/adobe/helix-onedrive-support/compare/v9.1.8...v9.1.9) (2023-01-28)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **deps:** update dependency @adobe/fetch to v3.6.0 ([75c9150](https://github.com/adobe/helix-onedrive-support/commit/75c915025e1bafc3811c5b26e9682887d1a6c050))
7
+
8
+ ## [9.1.8](https://github.com/adobe/helix-onedrive-support/compare/v9.1.7...v9.1.8) (2023-01-21)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * **deps:** update external fixes ([e2abd5e](https://github.com/adobe/helix-onedrive-support/commit/e2abd5ebcc8032ef29c2d77d2bbf63c5f10b7f83))
14
+
1
15
  ## [9.1.7](https://github.com/adobe/helix-onedrive-support/compare/v9.1.6...v9.1.7) (2023-01-10)
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.7",
3
+ "version": "9.1.9",
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",
@@ -28,22 +27,22 @@
28
27
  },
29
28
  "homepage": "https://github.com/adobe/helix-onedrive-support#readme",
30
29
  "dependencies": {
31
- "@adobe/fetch": "3.3.1",
32
- "@aws-sdk/client-s3": "3.245.0",
30
+ "@adobe/fetch": "3.6.0",
31
+ "@aws-sdk/client-s3": "3.254.0",
33
32
  "@azure/msal-node": "1.14.6",
34
33
  "jose": "4.11.2"
35
34
  },
36
35
  "devDependencies": {
37
- "@adobe/eslint-config-helix": "1.3.2",
36
+ "@adobe/eslint-config-helix": "2.0.1",
38
37
  "@semantic-release/changelog": "6.0.2",
39
38
  "@semantic-release/git": "10.0.1",
40
39
  "ajv": "8.12.0",
41
40
  "c8": "7.12.0",
42
41
  "codecov": "3.8.3",
43
42
  "dotenv": "16.0.3",
44
- "eslint": "8.31.0",
43
+ "eslint": "8.32.0",
45
44
  "eslint-plugin-header": "3.1.1",
46
- "eslint-plugin-import": "2.26.0",
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.2.9",
56
- "npm": "9.2.0",
54
+ "nock": "13.3.0",
55
+ "npm": "9.3.1",
57
56
  "semantic-release": "19.0.5"
58
57
  },
59
58
  "lint-staged": {