@adobe/helix-deploy 9.3.17 → 9.3.19
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 +4 -4
- package/src/deploy/CloudflareDeployer.js +1 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [9.3.19](https://github.com/adobe/helix-deploy/compare/v9.3.18...v9.3.19) (2023-11-25)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **deps:** update external fixes ([6ace656](https://github.com/adobe/helix-deploy/commit/6ace6568b7ac5d93453b8f05627580d3d39b69f0))
|
|
7
|
+
|
|
8
|
+
## [9.3.18](https://github.com/adobe/helix-deploy/compare/v9.3.17...v9.3.18) (2023-11-23)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* **cloudflare:** Do not make absolute path relative ([#620](https://github.com/adobe/helix-deploy/issues/620)) ([8ff035f](https://github.com/adobe/helix-deploy/commit/8ff035f9ea8075d37b57ea6fe09c27d83577e976)), closes [#619](https://github.com/adobe/helix-deploy/issues/619)
|
|
14
|
+
|
|
1
15
|
## [9.3.17](https://github.com/adobe/helix-deploy/compare/v9.3.16...v9.3.17) (2023-11-18)
|
|
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.19",
|
|
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",
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"@adobe/fetch": "4.1.1",
|
|
41
41
|
"@aws-sdk/client-apigatewayv2": "3.454.0",
|
|
42
42
|
"@aws-sdk/client-lambda": "3.454.0",
|
|
43
|
-
"@aws-sdk/client-s3": "3.
|
|
43
|
+
"@aws-sdk/client-s3": "3.456.0",
|
|
44
44
|
"@aws-sdk/client-secrets-manager": "3.454.0",
|
|
45
45
|
"@aws-sdk/client-ssm": "3.454.0",
|
|
46
46
|
"@aws-sdk/client-sts": "3.454.0",
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
"@google-cloud/functions": "3.0.1",
|
|
49
49
|
"@google-cloud/secret-manager": "5.0.1",
|
|
50
50
|
"@google-cloud/storage": "7.6.0",
|
|
51
|
-
"@rollup/plugin-alias": "5.0
|
|
51
|
+
"@rollup/plugin-alias": "5.1.0",
|
|
52
52
|
"@rollup/plugin-commonjs": "25.0.7",
|
|
53
53
|
"@rollup/plugin-json": "6.0.1",
|
|
54
54
|
"@rollup/plugin-node-resolve": "15.2.3",
|
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
"fs-extra": "11.1.1",
|
|
63
63
|
"isomorphic-git": "1.25.0",
|
|
64
64
|
"openwhisk": "3.21.7",
|
|
65
|
-
"rollup": "4.5.
|
|
65
|
+
"rollup": "4.5.2",
|
|
66
66
|
"semver": "7.5.4",
|
|
67
67
|
"tar": "6.2.0",
|
|
68
68
|
"webpack": "5.89.0",
|
|
@@ -9,7 +9,6 @@
|
|
|
9
9
|
* OF ANY KIND, either express or implied. See the License for the specific language
|
|
10
10
|
* governing permissions and limitations under the License.
|
|
11
11
|
*/
|
|
12
|
-
import path from 'path';
|
|
13
12
|
import fs from 'fs';
|
|
14
13
|
import FormData from 'form-data';
|
|
15
14
|
import BaseDeployer from './BaseDeployer.js';
|
|
@@ -43,7 +42,7 @@ export default class CloudflareDeployer extends BaseDeployer {
|
|
|
43
42
|
}
|
|
44
43
|
|
|
45
44
|
async deploy() {
|
|
46
|
-
const body = fs.readFileSync(
|
|
45
|
+
const body = fs.readFileSync(this.cfg.edgeBundle);
|
|
47
46
|
const { id } = await this.createKVNamespace(`${this.cfg.packageName}--secrets`);
|
|
48
47
|
|
|
49
48
|
const metadata = {
|