@adobe/helix-deploy 9.3.7 → 9.3.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.
- package/CHANGELOG.md +14 -0
- package/package.json +12 -12
- package/src/deploy/ComputeAtEdgeDeployer.js +3 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [9.3.9](https://github.com/adobe/helix-deploy/compare/v9.3.8...v9.3.9) (2023-10-14)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **deps:** update external fixes ([b2745de](https://github.com/adobe/helix-deploy/commit/b2745defefe7acf352643ca5ad546669efba4304))
|
|
7
|
+
|
|
8
|
+
## [9.3.8](https://github.com/adobe/helix-deploy/compare/v9.3.7...v9.3.8) (2023-10-13)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* **fastly:** Close fastly client after deploy ([#592](https://github.com/adobe/helix-deploy/issues/592)) ([81a593a](https://github.com/adobe/helix-deploy/commit/81a593a56dd11229e03aedc2320df37ba601a797)), closes [#587](https://github.com/adobe/helix-deploy/issues/587)
|
|
14
|
+
|
|
1
15
|
## [9.3.7](https://github.com/adobe/helix-deploy/compare/v9.3.6...v9.3.7) (2023-10-07)
|
|
2
16
|
|
|
3
17
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adobe/helix-deploy",
|
|
3
|
-
"version": "9.3.
|
|
3
|
+
"version": "9.3.9",
|
|
4
4
|
"description": "Library and Commandline Tools to build and deploy OpenWhisk Actions",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"homepage": "https://github.com/adobe/helix-deploy#readme",
|
|
@@ -38,20 +38,20 @@
|
|
|
38
38
|
"dependencies": {
|
|
39
39
|
"@adobe/fastly-native-promises": "3.0.5",
|
|
40
40
|
"@adobe/fetch": "4.1.0",
|
|
41
|
-
"@aws-sdk/client-apigatewayv2": "3.
|
|
42
|
-
"@aws-sdk/client-lambda": "3.
|
|
43
|
-
"@aws-sdk/client-s3": "3.
|
|
44
|
-
"@aws-sdk/client-secrets-manager": "3.
|
|
45
|
-
"@aws-sdk/client-ssm": "3.
|
|
46
|
-
"@aws-sdk/client-sts": "3.
|
|
41
|
+
"@aws-sdk/client-apigatewayv2": "3.428.0",
|
|
42
|
+
"@aws-sdk/client-lambda": "3.428.0",
|
|
43
|
+
"@aws-sdk/client-s3": "3.428.0",
|
|
44
|
+
"@aws-sdk/client-secrets-manager": "3.428.0",
|
|
45
|
+
"@aws-sdk/client-ssm": "3.428.0",
|
|
46
|
+
"@aws-sdk/client-sts": "3.428.0",
|
|
47
47
|
"@fastly/js-compute": "3.6.2",
|
|
48
48
|
"@google-cloud/functions": "3.0.1",
|
|
49
49
|
"@google-cloud/secret-manager": "5.0.1",
|
|
50
|
-
"@google-cloud/storage": "7.
|
|
50
|
+
"@google-cloud/storage": "7.3.0",
|
|
51
51
|
"@rollup/plugin-alias": "5.0.1",
|
|
52
52
|
"@rollup/plugin-commonjs": "25.0.5",
|
|
53
53
|
"@rollup/plugin-json": "6.0.1",
|
|
54
|
-
"@rollup/plugin-node-resolve": "15.2.
|
|
54
|
+
"@rollup/plugin-node-resolve": "15.2.3",
|
|
55
55
|
"@rollup/plugin-terser": "0.4.4",
|
|
56
56
|
"archiver": "6.0.1",
|
|
57
57
|
"chalk-template": "1.1.0",
|
|
@@ -62,10 +62,10 @@
|
|
|
62
62
|
"fs-extra": "11.1.1",
|
|
63
63
|
"isomorphic-git": "1.24.5",
|
|
64
64
|
"openwhisk": "3.21.7",
|
|
65
|
-
"rollup": "
|
|
65
|
+
"rollup": "4.1.0",
|
|
66
66
|
"semver": "7.5.4",
|
|
67
67
|
"tar": "6.2.0",
|
|
68
|
-
"webpack": "5.
|
|
68
|
+
"webpack": "5.89.0",
|
|
69
69
|
"yargs": "17.7.2"
|
|
70
70
|
},
|
|
71
71
|
"devDependencies": {
|
|
@@ -81,7 +81,7 @@
|
|
|
81
81
|
"mocha": "10.2.0",
|
|
82
82
|
"mocha-junit-reporter": "2.2.1",
|
|
83
83
|
"mocha-multi-reporters": "1.5.1",
|
|
84
|
-
"nock": "13.3.
|
|
84
|
+
"nock": "13.3.4",
|
|
85
85
|
"semantic-release": "22.0.5",
|
|
86
86
|
"yauzl": "2.10.0"
|
|
87
87
|
},
|
|
@@ -153,6 +153,8 @@ service_id = ""
|
|
|
153
153
|
this.log.debug(`--: updating gateway backend: ${host}`);
|
|
154
154
|
await this._fastly.writeBackend(version, 'gateway', backend);
|
|
155
155
|
}, true);
|
|
156
|
+
|
|
157
|
+
await this._fastly.discard();
|
|
156
158
|
}
|
|
157
159
|
|
|
158
160
|
async updatePackage() {
|
|
@@ -172,7 +174,7 @@ service_id = ""
|
|
|
172
174
|
await this._fastly.updateDictItem(undefined, 'secrets', '_token', this.cfg.packageToken);
|
|
173
175
|
await this._fastly.updateDictItem(undefined, 'secrets', '_package', `https://${this._cfg.fastlyGateway}/${this.cfg.packageName}/`);
|
|
174
176
|
|
|
175
|
-
this._fastly.discard();
|
|
177
|
+
await this._fastly.discard();
|
|
176
178
|
}
|
|
177
179
|
|
|
178
180
|
get fullFunctionName() {
|