@adobe/helix-onedrive-support 11.3.16 → 11.3.18
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.
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
name: Build
|
|
2
|
+
on: [push]
|
|
3
|
+
|
|
4
|
+
env:
|
|
5
|
+
CI_BUILD_NUM: ${{ github.run_id }}
|
|
6
|
+
CI_BRANCH: ${{ github.ref_name }}
|
|
7
|
+
|
|
8
|
+
jobs:
|
|
9
|
+
test:
|
|
10
|
+
name: Test
|
|
11
|
+
runs-on: ubuntu-latest
|
|
12
|
+
steps:
|
|
13
|
+
- uses: actions/checkout@v4
|
|
14
|
+
- name: Use Node.js 20.x
|
|
15
|
+
uses: actions/setup-node@v4
|
|
16
|
+
with:
|
|
17
|
+
node-version: '20.x'
|
|
18
|
+
- run: npm ci
|
|
19
|
+
- run: npm run lint
|
|
20
|
+
- run: npm test
|
|
21
|
+
- uses: codecov/codecov-action@v4
|
|
22
|
+
with:
|
|
23
|
+
token: ${{ secrets.CODECOV_TOKEN }}
|
|
24
|
+
- name: Semantic Release (Dry Run)
|
|
25
|
+
run: npm run semantic-release-dry
|
|
26
|
+
env:
|
|
27
|
+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
28
|
+
NPM_TOKEN: ${{ secrets.ADOBE_BOT_NPM_TOKEN }}
|
|
29
|
+
|
|
30
|
+
release:
|
|
31
|
+
name: Release
|
|
32
|
+
runs-on: ubuntu-latest
|
|
33
|
+
needs: test
|
|
34
|
+
if: github.ref == 'refs/heads/main'
|
|
35
|
+
steps:
|
|
36
|
+
- uses: actions/checkout@v4
|
|
37
|
+
- name: Use Node.js 20.x
|
|
38
|
+
uses: actions/setup-node@v4
|
|
39
|
+
with:
|
|
40
|
+
node-version: '20.x'
|
|
41
|
+
- run: npm ci
|
|
42
|
+
- run: npm run semantic-release
|
|
43
|
+
env:
|
|
44
|
+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
45
|
+
NPM_TOKEN: ${{ secrets.ADOBE_BOT_NPM_TOKEN }}
|
|
@@ -1,8 +1,13 @@
|
|
|
1
|
+
name: Semantic Release Version Check
|
|
1
2
|
on:
|
|
2
3
|
push:
|
|
3
4
|
branches-ignore:
|
|
4
5
|
- 'main'
|
|
5
6
|
|
|
7
|
+
permissions:
|
|
8
|
+
issues: write
|
|
9
|
+
pull-requests: write
|
|
10
|
+
|
|
6
11
|
jobs:
|
|
7
12
|
ci_trigger:
|
|
8
13
|
runs-on: ubuntu-latest
|
|
@@ -10,6 +15,6 @@ jobs:
|
|
|
10
15
|
steps:
|
|
11
16
|
- name: Comment
|
|
12
17
|
id: comment
|
|
13
|
-
uses: adobe-rnd/github-semantic-release-comment-action@
|
|
18
|
+
uses: adobe-rnd/github-semantic-release-comment-action@main
|
|
14
19
|
with:
|
|
15
|
-
|
|
20
|
+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,18 @@
|
|
|
1
|
+
## [11.3.18](https://github.com/adobe/helix-onedrive-support/compare/v11.3.17...v11.3.18) (2024-04-11)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **deps:** update dependency @adobe/fetch to v4.1.2 ([1442314](https://github.com/adobe/helix-onedrive-support/commit/144231438a47c24638129fbc15b37d60e6f5a478))
|
|
7
|
+
* update fetch ([#516](https://github.com/adobe/helix-onedrive-support/issues/516)) ([fb3a373](https://github.com/adobe/helix-onedrive-support/commit/fb3a373158aee01bd29ecf31a0d2d5a9c9293369))
|
|
8
|
+
|
|
9
|
+
## [11.3.17](https://github.com/adobe/helix-onedrive-support/compare/v11.3.16...v11.3.17) (2024-04-06)
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Bug Fixes
|
|
13
|
+
|
|
14
|
+
* **deps:** update dependency @adobe/helix-shared-tokencache to v1.4.1 ([3cb26de](https://github.com/adobe/helix-onedrive-support/commit/3cb26def31fbe7c27a2542cdec26438465f7ee87))
|
|
15
|
+
|
|
1
16
|
## [11.3.16](https://github.com/adobe/helix-onedrive-support/compare/v11.3.15...v11.3.16) (2024-03-25)
|
|
2
17
|
|
|
3
18
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adobe/helix-onedrive-support",
|
|
3
|
-
"version": "11.3.
|
|
3
|
+
"version": "11.3.18",
|
|
4
4
|
"description": "Helix OneDrive Support",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"exports": {
|
|
@@ -13,6 +13,7 @@
|
|
|
13
13
|
"test": "c8 mocha --spec=test/**/*.test.js",
|
|
14
14
|
"lint": "./node_modules/.bin/eslint .",
|
|
15
15
|
"semantic-release": "semantic-release",
|
|
16
|
+
"semantic-release-dry": "semantic-release --dry-run --branches $CI_BRANCH",
|
|
16
17
|
"docs": "npx jsdoc2md -c .jsdoc.json --files 'src/*.js' > docs/API.md",
|
|
17
18
|
"prepare": "husky install"
|
|
18
19
|
},
|
|
@@ -27,8 +28,8 @@
|
|
|
27
28
|
},
|
|
28
29
|
"homepage": "https://github.com/adobe/helix-onedrive-support#readme",
|
|
29
30
|
"dependencies": {
|
|
30
|
-
"@adobe/fetch": "4.1.
|
|
31
|
-
"@adobe/helix-shared-tokencache": "1.4.
|
|
31
|
+
"@adobe/fetch": "4.1.2",
|
|
32
|
+
"@adobe/helix-shared-tokencache": "1.4.1",
|
|
32
33
|
"@azure/msal-node": "2.2.0",
|
|
33
34
|
"jose": "5.2.3"
|
|
34
35
|
},
|
|
@@ -36,7 +37,7 @@
|
|
|
36
37
|
"@adobe/eslint-config-helix": "2.0.6",
|
|
37
38
|
"@semantic-release/changelog": "6.0.3",
|
|
38
39
|
"@semantic-release/git": "10.0.1",
|
|
39
|
-
"@aws-sdk/client-s3": "3.
|
|
40
|
+
"@aws-sdk/client-s3": "3.550.0",
|
|
40
41
|
"ajv": "8.12.0",
|
|
41
42
|
"c8": "9.1.0",
|
|
42
43
|
"codecov": "3.8.3",
|
|
@@ -50,10 +51,10 @@
|
|
|
50
51
|
"jsdoc-tsimport-plugin": "1.0.5",
|
|
51
52
|
"junit-report-builder": "3.2.1",
|
|
52
53
|
"lint-staged": "15.2.2",
|
|
53
|
-
"mocha": "10.
|
|
54
|
+
"mocha": "10.4.0",
|
|
54
55
|
"mocha-multi-reporters": "1.5.1",
|
|
55
56
|
"nock": "13.5.4",
|
|
56
|
-
"npm": "10.5.
|
|
57
|
+
"npm": "10.5.1",
|
|
57
58
|
"semantic-release": "22.0.12"
|
|
58
59
|
},
|
|
59
60
|
"lint-staged": {
|
package/.circleci/config.yml
DELETED
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
version: 2.1
|
|
2
|
-
executors:
|
|
3
|
-
node18:
|
|
4
|
-
docker:
|
|
5
|
-
- image: cimg/node:18.19
|
|
6
|
-
|
|
7
|
-
orbs:
|
|
8
|
-
codecov: codecov/codecov@4.0.1
|
|
9
|
-
|
|
10
|
-
commands:
|
|
11
|
-
setup:
|
|
12
|
-
steps:
|
|
13
|
-
- checkout
|
|
14
|
-
- run:
|
|
15
|
-
name: Installing Dependencies
|
|
16
|
-
command: npm ci
|
|
17
|
-
- run:
|
|
18
|
-
name: prepare test git user
|
|
19
|
-
command: git config --global user.email "circleci@example.com" && git config --global user.name "CircleCi Build"
|
|
20
|
-
|
|
21
|
-
jobs:
|
|
22
|
-
build:
|
|
23
|
-
executor: node18
|
|
24
|
-
|
|
25
|
-
steps:
|
|
26
|
-
- setup
|
|
27
|
-
- run: mkdir junit
|
|
28
|
-
- run:
|
|
29
|
-
name: Lint
|
|
30
|
-
command: npm run lint
|
|
31
|
-
- run:
|
|
32
|
-
name: Getting Code Coverage
|
|
33
|
-
command: npm run test
|
|
34
|
-
- codecov/upload
|
|
35
|
-
- store_test_results:
|
|
36
|
-
path: junit
|
|
37
|
-
- store_artifacts:
|
|
38
|
-
path: junit
|
|
39
|
-
|
|
40
|
-
workflows:
|
|
41
|
-
version: 2
|
|
42
|
-
build:
|
|
43
|
-
jobs:
|
|
44
|
-
- build
|
package/.github/move.yml
DELETED
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
# Configuration for move-issues - https://github.com/dessant/move-issues
|
|
2
|
-
|
|
3
|
-
# Delete the command comment when it contains no other content
|
|
4
|
-
deleteCommand: true
|
|
5
|
-
|
|
6
|
-
# Close the source issue after moving
|
|
7
|
-
closeSourceIssue: true
|
|
8
|
-
|
|
9
|
-
# Lock the source issue after moving
|
|
10
|
-
lockSourceIssue: true
|
|
11
|
-
|
|
12
|
-
# Mention issue and comment authors
|
|
13
|
-
mentionAuthors: true
|
|
14
|
-
|
|
15
|
-
# Preserve mentions in the issue content
|
|
16
|
-
keepContentMentions: true
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
name: Semantic Release
|
|
2
|
-
on:
|
|
3
|
-
push:
|
|
4
|
-
branches:
|
|
5
|
-
- 'main'
|
|
6
|
-
|
|
7
|
-
jobs:
|
|
8
|
-
build:
|
|
9
|
-
runs-on: ubuntu-latest
|
|
10
|
-
if: "!contains(github.event.head_commit.message, '[skip ci]')"
|
|
11
|
-
steps:
|
|
12
|
-
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
|
|
13
|
-
- name: Use Node.js 18.x
|
|
14
|
-
uses: actions/setup-node@v4
|
|
15
|
-
with:
|
|
16
|
-
node-version: '18.x'
|
|
17
|
-
- run: npm install
|
|
18
|
-
- run: npm test
|
|
19
|
-
- run: npm run semantic-release
|
|
20
|
-
env:
|
|
21
|
-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
22
|
-
NPM_TOKEN: ${{ secrets.ADOBE_BOT_NPM_TOKEN }}
|