@adobe/helix-deploy 13.1.13 → 13.1.15
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,17 @@
|
|
|
1
|
+
## [13.1.15](https://github.com/adobe/helix-deploy/compare/v13.1.14...v13.1.15) (2025-10-06)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **test:** move to our tier3 ([#845](https://github.com/adobe/helix-deploy/issues/845)) ([e91492c](https://github.com/adobe/helix-deploy/commit/e91492c0855c93822aba6b8ad271597e4135586a))
|
|
7
|
+
|
|
8
|
+
## [13.1.14](https://github.com/adobe/helix-deploy/compare/v13.1.13...v13.1.14) (2025-09-16)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* **deps:** update external fixes ([#844](https://github.com/adobe/helix-deploy/issues/844)) ([5bd397a](https://github.com/adobe/helix-deploy/commit/5bd397a098865b02bcc7b4abc4e8e135b7116344))
|
|
14
|
+
|
|
1
15
|
## [13.1.13](https://github.com/adobe/helix-deploy/compare/v13.1.12...v13.1.13) (2025-09-16)
|
|
2
16
|
|
|
3
17
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adobe/helix-deploy",
|
|
3
|
-
"version": "13.1.
|
|
3
|
+
"version": "13.1.15",
|
|
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",
|
|
@@ -39,21 +39,21 @@
|
|
|
39
39
|
"dependencies": {
|
|
40
40
|
"@adobe/fetch": "4.2.3",
|
|
41
41
|
"@adobe/helix-shared-process-queue": "3.1.3",
|
|
42
|
-
"@aws-sdk/client-apigatewayv2": "3.
|
|
43
|
-
"@aws-sdk/client-lambda": "3.
|
|
44
|
-
"@aws-sdk/client-s3": "3.
|
|
45
|
-
"@aws-sdk/client-secrets-manager": "3.
|
|
46
|
-
"@aws-sdk/client-ssm": "3.
|
|
47
|
-
"@aws-sdk/client-sts": "3.
|
|
42
|
+
"@aws-sdk/client-apigatewayv2": "3.888.0",
|
|
43
|
+
"@aws-sdk/client-lambda": "3.888.0",
|
|
44
|
+
"@aws-sdk/client-s3": "3.888.0",
|
|
45
|
+
"@aws-sdk/client-secrets-manager": "3.888.0",
|
|
46
|
+
"@aws-sdk/client-ssm": "3.888.0",
|
|
47
|
+
"@aws-sdk/client-sts": "3.888.0",
|
|
48
48
|
"@google-cloud/functions": "4.2.0",
|
|
49
49
|
"@google-cloud/secret-manager": "6.1.0",
|
|
50
|
-
"@google-cloud/storage": "7.17.
|
|
50
|
+
"@google-cloud/storage": "7.17.1",
|
|
51
51
|
"archiver": "7.0.1",
|
|
52
52
|
"chalk-template": "1.1.2",
|
|
53
53
|
"dotenv": "17.2.2",
|
|
54
54
|
"esbuild": "0.25.9",
|
|
55
55
|
"escalade": "3.2.0",
|
|
56
|
-
"fs-extra": "11.3.
|
|
56
|
+
"fs-extra": "11.3.2",
|
|
57
57
|
"isomorphic-git": "1.33.1",
|
|
58
58
|
"openwhisk": "3.21.8",
|
|
59
59
|
"semver": "7.7.2",
|
|
@@ -74,7 +74,7 @@
|
|
|
74
74
|
"mocha-junit-reporter": "2.2.1",
|
|
75
75
|
"mocha-multi-reporters": "1.5.1",
|
|
76
76
|
"nock": "13.5.6",
|
|
77
|
-
"semantic-release": "24.2.
|
|
77
|
+
"semantic-release": "24.2.8",
|
|
78
78
|
"yauzl": "3.2.0"
|
|
79
79
|
},
|
|
80
80
|
"engines": {
|
|
@@ -1,12 +1,17 @@
|
|
|
1
1
|
#!/bin/bash
|
|
2
2
|
set -eo pipefail
|
|
3
3
|
|
|
4
|
-
|
|
4
|
+
if [ -z "${HLX_AWS_API_ID}" ]; then
|
|
5
|
+
echo "HLX_AWS_API_ID required"
|
|
6
|
+
exit 1
|
|
7
|
+
fi
|
|
8
|
+
|
|
9
|
+
aws --profile adobe apigatewayv2 get-integrations --api-id ${HLX_AWS_API_ID} > ints.json
|
|
5
10
|
echo "$(cat ints.json | jq '.Items | length') integrations. deleting..."
|
|
6
11
|
|
|
7
12
|
cat ints.json \
|
|
8
13
|
| jq '.Items[].IntegrationId' \
|
|
9
|
-
| xargs -I@ aws --region us-east-1 --profile adobe apigatewayv2 delete-integration --api-id
|
|
14
|
+
| xargs -I@ aws --region us-east-1 --profile adobe apigatewayv2 delete-integration --api-id ${HLX_AWS_API_ID} --integration-id @
|
|
10
15
|
|
|
11
|
-
aws --profile adobe apigatewayv2 get-integrations --api-id
|
|
16
|
+
aws --profile adobe apigatewayv2 get-integrations --api-id ${HLX_AWS_API_ID} > ints.json
|
|
12
17
|
echo "$(cat ints.json | jq '.Items | length') integrations remaining."
|
|
@@ -1,11 +1,16 @@
|
|
|
1
1
|
#!/bin/bash
|
|
2
2
|
set -eo pipefail
|
|
3
3
|
|
|
4
|
-
|
|
4
|
+
if [ -z "${HLX_AWS_API_ID}" ]; then
|
|
5
|
+
echo "HLX_AWS_API_ID required"
|
|
6
|
+
exit 1
|
|
7
|
+
fi
|
|
8
|
+
|
|
9
|
+
aws apigatewayv2 get-routes --api-id ${HLX_AWS_API_ID} --profile adobe --region us-east-1 > routes.json
|
|
5
10
|
echo "$(cat routes.json | jq '.Items | length') routes. deleting..."
|
|
6
11
|
cat routes.json \
|
|
7
12
|
| jq '.Items[] | select(.RouteKey|test("/ci|pages_ci")) | .RouteId' \
|
|
8
|
-
| xargs -I@ aws --region us-east-1 --profile adobe apigatewayv2 delete-route --api-id
|
|
13
|
+
| xargs -I@ aws --region us-east-1 --profile adobe apigatewayv2 delete-route --api-id ${HLX_AWS_API_ID} --route-id @
|
|
9
14
|
|
|
10
|
-
aws apigatewayv2 get-routes --api-id
|
|
15
|
+
aws apigatewayv2 get-routes --api-id ${HLX_AWS_API_ID} --profile adobe --region us-east-1 > routes.json
|
|
11
16
|
echo "done. $(cat routes.json | jq '.Items | length') routes."
|
|
@@ -45,7 +45,7 @@ async function run(bundlePath, cfg) {
|
|
|
45
45
|
|
|
46
46
|
const fn = typeof lambda.raw === 'function' ? lambda.raw : lambda;
|
|
47
47
|
result.response = await fn(event, {
|
|
48
|
-
invokedFunctionArn: `arn:aws:lambda:us-east-1:
|
|
48
|
+
invokedFunctionArn: `arn:aws:lambda:us-east-1:123456789012:function:${cfg.packageName}--${cfg.baseName}:${cfg.version}`,
|
|
49
49
|
getRemainingTimeInMillis: () => 60 * 1000,
|
|
50
50
|
});
|
|
51
51
|
if (cfg.verbose) {
|