@adobe/helix-deploy 13.1.14 → 13.1.16

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.16](https://github.com/adobe/helix-deploy/compare/v13.1.15...v13.1.16) (2025-10-06)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **deps:** update external fixes ([#847](https://github.com/adobe/helix-deploy/issues/847)) ([06b09aa](https://github.com/adobe/helix-deploy/commit/06b09aa9576221ca157d5b5f522ee9c7990ec64e))
7
+
8
+ ## [13.1.15](https://github.com/adobe/helix-deploy/compare/v13.1.14...v13.1.15) (2025-10-06)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * **test:** move to our tier3 ([#845](https://github.com/adobe/helix-deploy/issues/845)) ([e91492c](https://github.com/adobe/helix-deploy/commit/e91492c0855c93822aba6b8ad271597e4135586a))
14
+
1
15
  ## [13.1.14](https://github.com/adobe/helix-deploy/compare/v13.1.13...v13.1.14) (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.14",
3
+ "version": "13.1.16",
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,19 +39,19 @@
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.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",
42
+ "@aws-sdk/client-apigatewayv2": "3.894.0",
43
+ "@aws-sdk/client-lambda": "3.894.0",
44
+ "@aws-sdk/client-s3": "3.894.0",
45
+ "@aws-sdk/client-secrets-manager": "3.894.0",
46
+ "@aws-sdk/client-ssm": "3.894.0",
47
+ "@aws-sdk/client-sts": "3.894.0",
48
48
  "@google-cloud/functions": "4.2.0",
49
49
  "@google-cloud/secret-manager": "6.1.0",
50
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
- "esbuild": "0.25.9",
54
+ "esbuild": "0.25.10",
55
55
  "escalade": "3.2.0",
56
56
  "fs-extra": "11.3.2",
57
57
  "isomorphic-git": "1.33.1",
@@ -63,18 +63,18 @@
63
63
  "@adobe/eslint-config-helix": "3.0.10",
64
64
  "@adobe/helix-shared-wrap": "2.0.2",
65
65
  "@adobe/helix-status": "10.1.5",
66
- "@eslint/config-helpers": "0.3.1",
66
+ "@eslint/config-helpers": "0.4.0",
67
67
  "@semantic-release/changelog": "6.0.3",
68
68
  "@semantic-release/git": "10.0.1",
69
69
  "c8": "10.1.3",
70
70
  "eslint": "9.4.0",
71
71
  "husky": "9.1.7",
72
- "lint-staged": "16.1.6",
72
+ "lint-staged": "16.2.0",
73
73
  "mocha": "11.7.2",
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.8",
77
+ "semantic-release": "24.2.9",
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
- aws --profile adobe apigatewayv2 get-integrations --api-id lqmig3v5eb > ints.json
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 lqmig3v5eb --integration-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 lqmig3v5eb > ints.json
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
- aws apigatewayv2 get-routes --api-id lqmig3v5eb --profile adobe --region us-east-1 > routes.json
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 lqmig3v5eb --route-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 lqmig3v5eb --profile adobe --region us-east-1 > routes.json
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:118435662149:function:${cfg.packageName}--${cfg.baseName}:${cfg.version}`,
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) {