@adobe/helix-deploy 7.0.8 → 7.0.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
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [7.0.9](https://github.com/adobe/helix-deploy/compare/v7.0.8...v7.0.9) (2022-09-23)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* @adobe/helix-fetch -> @adobe/fetch ([916fcfa](https://github.com/adobe/helix-deploy/commit/916fcfa4c476633309b985f63300ca877dd171bf))
|
|
7
|
+
|
|
1
8
|
## [7.0.8](https://github.com/adobe/helix-deploy/compare/v7.0.7...v7.0.8) (2022-09-19)
|
|
2
9
|
|
|
3
10
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adobe/helix-deploy",
|
|
3
|
-
"version": "7.0.
|
|
3
|
+
"version": "7.0.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",
|
|
@@ -37,16 +37,16 @@
|
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
39
|
"@adobe/fastly-native-promises": "2.0.10",
|
|
40
|
-
"@adobe/
|
|
40
|
+
"@adobe/fetch": "3.1.4",
|
|
41
41
|
"@aws-sdk/client-apigatewayv2": "3.171.0",
|
|
42
42
|
"@aws-sdk/client-lambda": "3.171.0",
|
|
43
43
|
"@aws-sdk/client-s3": "3.171.0",
|
|
44
44
|
"@aws-sdk/client-secrets-manager": "3.171.0",
|
|
45
45
|
"@aws-sdk/client-ssm": "3.171.0",
|
|
46
|
-
"@fastly/js-compute": "0.5.
|
|
46
|
+
"@fastly/js-compute": "0.5.3",
|
|
47
47
|
"@google-cloud/functions": "2.2.1",
|
|
48
48
|
"@google-cloud/secret-manager": "4.1.2",
|
|
49
|
-
"@google-cloud/storage": "6.5.
|
|
49
|
+
"@google-cloud/storage": "6.5.1",
|
|
50
50
|
"@rollup/plugin-alias": "3.1.9",
|
|
51
51
|
"@rollup/plugin-commonjs": "22.0.2",
|
|
52
52
|
"@rollup/plugin-json": "4.1.0",
|
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
"isomorphic-git": "1.21.0",
|
|
63
63
|
"openwhisk": "3.21.7",
|
|
64
64
|
"proxyquire": "2.1.3",
|
|
65
|
-
"rollup": "2.79.
|
|
65
|
+
"rollup": "2.79.1",
|
|
66
66
|
"rollup-plugin-terser": "7.0.2",
|
|
67
67
|
"semver": "7.3.7",
|
|
68
68
|
"tar": "6.1.11",
|
|
@@ -72,7 +72,7 @@
|
|
|
72
72
|
"devDependencies": {
|
|
73
73
|
"@adobe/eslint-config-helix": "1.3.2",
|
|
74
74
|
"@adobe/helix-shared-wrap": "1.0.5",
|
|
75
|
-
"@adobe/helix-status": "9.2.
|
|
75
|
+
"@adobe/helix-status": "9.2.14",
|
|
76
76
|
"@adobe/helix-universal-logger": "2.0.12",
|
|
77
77
|
"@semantic-release/changelog": "6.0.1",
|
|
78
78
|
"@semantic-release/git": "10.0.1",
|
|
@@ -65,7 +65,8 @@ export default class EdgeBundler extends WebpackBundler {
|
|
|
65
65
|
// the main.js is imported in the universal adapter and is _the_ action entry point
|
|
66
66
|
'./main.js': cfg.file,
|
|
67
67
|
// 'psl': path.resolve(__dirname, '../node_modules/psl/dist/psl.js'), // inlined data
|
|
68
|
-
'@adobe/
|
|
68
|
+
'@adobe/fetch': path.resolve(__dirname, '../template/polyfills/fetch.js'),
|
|
69
|
+
'@adobe/helix-fetch': path.resolve(__dirname, '../template/polyfills/fetch.js'),
|
|
69
70
|
},
|
|
70
71
|
/* fallback: {
|
|
71
72
|
assert: require.resolve('assert'),
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
import path from 'path';
|
|
13
13
|
import chalk from 'chalk-template';
|
|
14
14
|
import semver from 'semver';
|
|
15
|
-
import { h1, context } from '@adobe/
|
|
15
|
+
import { h1, context } from '@adobe/fetch';
|
|
16
16
|
|
|
17
17
|
export default class BaseDeployer {
|
|
18
18
|
constructor(cfg) {
|