From 473e5e6d831c72d069cd083312528b25b50157df Mon Sep 17 00:00:00 2001 From: rddimon Date: Tue, 19 Nov 2024 15:10:22 +0200 Subject: [PATCH] Lock sls 4.2.5 --- package-lock.json | 8 ++++---- package.json | 2 +- .../basic/apigateway-with-export/serverless.yml | 2 +- .../basic/apigateway-with-import/serverless.yml | 2 +- .../basic/basepath-mapping/serverless.yml | 2 +- .../basic/create-domain-idempotent/serverless.yml | 2 +- .../basic/deploy-idempotent/serverless.yml | 2 +- .../basic/deploy-idempotent2/serverless.yml | 2 +- .../basic/http-api-multiple/serverless.yml | 2 +- test/integration-tests/basic/mutual-tls/serverless.yml | 2 +- .../basic/null-basepath-mapping/serverless.yml | 2 +- .../basic/route53-profile/serverless.yml | 2 +- test/integration-tests/deploy/auto-domain/serverless.yml | 2 +- .../deploy/basepath-nested-stack/serverless.yml | 2 +- test/integration-tests/deploy/basepath/serverless.yml | 2 +- .../deploy/custom-apigateway/serverless.yml | 2 +- test/integration-tests/deploy/default/serverless.yml | 2 +- test/integration-tests/deploy/http-api/serverless.yml | 2 +- .../deploy/regional-basepath/serverless.yml | 2 +- .../deploy/regional-stage-basepath/serverless.yml | 2 +- .../deploy/regional-tls-1-0/serverless.yml | 2 +- .../deploy/route-53-latency-routing/serverless.yml | 2 +- .../deploy/route-53-weighted-routing/serverless.yml | 2 +- .../deploy/split-horizon-dns/serverless.yml | 2 +- .../deploy/stage-basepath/serverless.yml | 2 +- test/integration-tests/deploy/web-socket/serverless.yml | 2 +- 26 files changed, 29 insertions(+), 29 deletions(-) diff --git a/package-lock.json b/package-lock.json index 631bd7fc..697ca7fa 100644 --- a/package-lock.json +++ b/package-lock.json @@ -45,7 +45,7 @@ "mocha-param": "^2.0.1", "nyc": "^17.1.0", "randomstring": "^1.3.0", - "serverless": "4.3.3", + "serverless": "4.2.5", "serverless-plugin-split-stacks": "^1.14.0", "shelljs": "^0.8.5", "ts-node": "^10.9.2", @@ -7898,9 +7898,9 @@ } }, "node_modules/serverless": { - "version": "4.3.3", - "resolved": "https://registry.npmjs.org/serverless/-/serverless-4.3.3.tgz", - "integrity": "sha512-WJpRQZJ7IH/Ttmz+wcf7zBVf3U82VAIV4zfRaJFpwlG2xJ129SNG5iundxYR8M6GjME6Vo95lp/nrgA6m1fT6A==", + "version": "4.2.5", + "resolved": "https://registry.npmjs.org/serverless/-/serverless-4.2.5.tgz", + "integrity": "sha512-4Sks0UYLKoWW0CVziZzliJe8MK2TXXGXi1KyXzH/BZPAUbUhJpPSWuzNystetaknqCiayhD8/OaNfzfVgVjtkQ==", "dev": true, "dependencies": { "axios": "^1.7.4", diff --git a/package.json b/package.json index d785494f..02a34ad8 100644 --- a/package.json +++ b/package.json @@ -69,7 +69,7 @@ "mocha-param": "^2.0.1", "nyc": "^17.1.0", "randomstring": "^1.3.0", - "serverless": "4.3.3", + "serverless": "4.2.5", "serverless-plugin-split-stacks": "^1.14.0", "shelljs": "^0.8.5", "ts-node": "^10.9.2", diff --git a/test/integration-tests/basic/apigateway-with-export/serverless.yml b/test/integration-tests/basic/apigateway-with-export/serverless.yml index 33b44f30..ff68c0cb 100644 --- a/test/integration-tests/basic/apigateway-with-export/serverless.yml +++ b/test/integration-tests/basic/apigateway-with-export/serverless.yml @@ -1,7 +1,7 @@ # APIGateway with export outputs service: ${env:PLUGIN_IDENTIFIER}-apigateway-with-export-${env:RANDOM_STRING} -frameworkVersion: "4.3.3" +frameworkVersion: "4.2.5" provider: name: aws diff --git a/test/integration-tests/basic/apigateway-with-import/serverless.yml b/test/integration-tests/basic/apigateway-with-import/serverless.yml index 79bd0d6d..e239fb7f 100644 --- a/test/integration-tests/basic/apigateway-with-import/serverless.yml +++ b/test/integration-tests/basic/apigateway-with-import/serverless.yml @@ -1,7 +1,7 @@ # APIGateway with import other CloudFormation stack outputs service: ${env:PLUGIN_IDENTIFIER}-apigateway-with-import-${env:RANDOM_STRING} -frameworkVersion: "4.3.3" +frameworkVersion: "4.2.5" provider: name: aws diff --git a/test/integration-tests/basic/basepath-mapping/serverless.yml b/test/integration-tests/basic/basepath-mapping/serverless.yml index a0bca3fc..629027c2 100644 --- a/test/integration-tests/basic/basepath-mapping/serverless.yml +++ b/test/integration-tests/basic/basepath-mapping/serverless.yml @@ -1,7 +1,7 @@ # Enabled and testing basepath mapping service: ${env:PLUGIN_IDENTIFIER}-basepath-mapping-${env:RANDOM_STRING} -frameworkVersion: "4.3.3" +frameworkVersion: "4.2.5" provider: name: aws diff --git a/test/integration-tests/basic/create-domain-idempotent/serverless.yml b/test/integration-tests/basic/create-domain-idempotent/serverless.yml index fc83da74..b22b289d 100644 --- a/test/integration-tests/basic/create-domain-idempotent/serverless.yml +++ b/test/integration-tests/basic/create-domain-idempotent/serverless.yml @@ -1,7 +1,7 @@ # Creating a domain should be idempotent service: ${env:PLUGIN_IDENTIFIER}-create-domain-idempotent-${env:RANDOM_STRING} -frameworkVersion: "4.3.3" +frameworkVersion: "4.2.5" provider: name: aws diff --git a/test/integration-tests/basic/deploy-idempotent/serverless.yml b/test/integration-tests/basic/deploy-idempotent/serverless.yml index 4ea532a2..dd502bbb 100644 --- a/test/integration-tests/basic/deploy-idempotent/serverless.yml +++ b/test/integration-tests/basic/deploy-idempotent/serverless.yml @@ -1,7 +1,7 @@ # Deploying should be idempotent service: ${env:PLUGIN_IDENTIFIER}-deploy-idempotent-${env:RANDOM_STRING} -frameworkVersion: "4.3.3" +frameworkVersion: "4.2.5" provider: name: aws diff --git a/test/integration-tests/basic/deploy-idempotent2/serverless.yml b/test/integration-tests/basic/deploy-idempotent2/serverless.yml index 63316c9a..ff338b39 100644 --- a/test/integration-tests/basic/deploy-idempotent2/serverless.yml +++ b/test/integration-tests/basic/deploy-idempotent2/serverless.yml @@ -1,7 +1,7 @@ # Deploying should be idempotent for the same domain and different paths service: ${env:PLUGIN_IDENTIFIER}-deploy-idempotent2-${env:RANDOM_STRING} -frameworkVersion: "4.3.3" +frameworkVersion: "4.2.5" provider: name: aws diff --git a/test/integration-tests/basic/http-api-multiple/serverless.yml b/test/integration-tests/basic/http-api-multiple/serverless.yml index 1808ea01..e02e42b1 100644 --- a/test/integration-tests/basic/http-api-multiple/serverless.yml +++ b/test/integration-tests/basic/http-api-multiple/serverless.yml @@ -1,6 +1,6 @@ service: ${env:PLUGIN_IDENTIFIER}-http-api-${env:RANDOM_STRING} -frameworkVersion: "4.3.3" +frameworkVersion: "4.2.5" provider: name: aws diff --git a/test/integration-tests/basic/mutual-tls/serverless.yml b/test/integration-tests/basic/mutual-tls/serverless.yml index f50beda8..530eeff0 100644 --- a/test/integration-tests/basic/mutual-tls/serverless.yml +++ b/test/integration-tests/basic/mutual-tls/serverless.yml @@ -1,6 +1,6 @@ service: ${env:PLUGIN_IDENTIFIER}-mutual-tls-${env:RANDOM_STRING} -frameworkVersion: "4.3.3" +frameworkVersion: "4.2.5" provider: name: aws diff --git a/test/integration-tests/basic/null-basepath-mapping/serverless.yml b/test/integration-tests/basic/null-basepath-mapping/serverless.yml index 55ce2f40..f768a5b4 100644 --- a/test/integration-tests/basic/null-basepath-mapping/serverless.yml +++ b/test/integration-tests/basic/null-basepath-mapping/serverless.yml @@ -1,7 +1,7 @@ # Enabled and testing basepath mapping service: ${env:PLUGIN_IDENTIFIER}-null-basepath-mapping-${env:RANDOM_STRING} -frameworkVersion: "4.3.3" +frameworkVersion: "4.2.5" provider: name: aws diff --git a/test/integration-tests/basic/route53-profile/serverless.yml b/test/integration-tests/basic/route53-profile/serverless.yml index d487920a..6cbdc815 100644 --- a/test/integration-tests/basic/route53-profile/serverless.yml +++ b/test/integration-tests/basic/route53-profile/serverless.yml @@ -1,7 +1,7 @@ # Creating a domain should be idempotent service: ${env:PLUGIN_IDENTIFIER}-route53-profile-${env:RANDOM_STRING} -frameworkVersion: "4.3.3" +frameworkVersion: "4.2.5" provider: name: aws diff --git a/test/integration-tests/deploy/auto-domain/serverless.yml b/test/integration-tests/deploy/auto-domain/serverless.yml index aff5f53a..73172277 100644 --- a/test/integration-tests/deploy/auto-domain/serverless.yml +++ b/test/integration-tests/deploy/auto-domain/serverless.yml @@ -1,7 +1,7 @@ # create_domain should be run as part of deployment service: ${env:PLUGIN_IDENTIFIER}-auto-domain-${env:RANDOM_STRING} -frameworkVersion: "4.3.3" +frameworkVersion: "4.2.5" provider: name: aws diff --git a/test/integration-tests/deploy/basepath-nested-stack/serverless.yml b/test/integration-tests/deploy/basepath-nested-stack/serverless.yml index e6f334c1..44cf72dc 100644 --- a/test/integration-tests/deploy/basepath-nested-stack/serverless.yml +++ b/test/integration-tests/deploy/basepath-nested-stack/serverless.yml @@ -1,7 +1,7 @@ # Enabled with custom basepath service: ${env:PLUGIN_IDENTIFIER}-basepath-nested-stack-${env:RANDOM_STRING} -frameworkVersion: "4.3.3" +frameworkVersion: "4.2.5" provider: name: aws diff --git a/test/integration-tests/deploy/basepath/serverless.yml b/test/integration-tests/deploy/basepath/serverless.yml index f732d483..28e5deaa 100644 --- a/test/integration-tests/deploy/basepath/serverless.yml +++ b/test/integration-tests/deploy/basepath/serverless.yml @@ -1,7 +1,7 @@ # Enabled with custom basepath service: ${env:PLUGIN_IDENTIFIER}-basepath-${env:RANDOM_STRING} -frameworkVersion: "4.3.3" +frameworkVersion: "4.2.5" provider: name: aws diff --git a/test/integration-tests/deploy/custom-apigateway/serverless.yml b/test/integration-tests/deploy/custom-apigateway/serverless.yml index 830a9c59..79efd4be 100644 --- a/test/integration-tests/deploy/custom-apigateway/serverless.yml +++ b/test/integration-tests/deploy/custom-apigateway/serverless.yml @@ -1,7 +1,7 @@ # Enabled with default values service: ${env:PLUGIN_IDENTIFIER}-custom-apigateway-${env:RANDOM_STRING} -frameworkVersion: "4.3.3" +frameworkVersion: "4.2.5" provider: name: aws diff --git a/test/integration-tests/deploy/default/serverless.yml b/test/integration-tests/deploy/default/serverless.yml index bf7045c8..4e1c77ea 100644 --- a/test/integration-tests/deploy/default/serverless.yml +++ b/test/integration-tests/deploy/default/serverless.yml @@ -1,7 +1,7 @@ # Enabled with default values service: ${env:PLUGIN_IDENTIFIER}-default-${env:RANDOM_STRING} -frameworkVersion: "4.3.3" +frameworkVersion: "4.2.5" provider: name: aws diff --git a/test/integration-tests/deploy/http-api/serverless.yml b/test/integration-tests/deploy/http-api/serverless.yml index b4e15ea7..e99a4f79 100644 --- a/test/integration-tests/deploy/http-api/serverless.yml +++ b/test/integration-tests/deploy/http-api/serverless.yml @@ -1,6 +1,6 @@ service: ${env:PLUGIN_IDENTIFIER}-http-api-${env:RANDOM_STRING} -frameworkVersion: "4.3.3" +frameworkVersion: "4.2.5" provider: name: aws diff --git a/test/integration-tests/deploy/regional-basepath/serverless.yml b/test/integration-tests/deploy/regional-basepath/serverless.yml index aebc739b..ec597536 100644 --- a/test/integration-tests/deploy/regional-basepath/serverless.yml +++ b/test/integration-tests/deploy/regional-basepath/serverless.yml @@ -1,7 +1,7 @@ # Enabled with regional endpoint, custom basePath service: ${env:PLUGIN_IDENTIFIER}-regional-basepath-${env:RANDOM_STRING} -frameworkVersion: "4.3.3" +frameworkVersion: "4.2.5" provider: name: aws diff --git a/test/integration-tests/deploy/regional-stage-basepath/serverless.yml b/test/integration-tests/deploy/regional-stage-basepath/serverless.yml index b193b94e..a25625b8 100644 --- a/test/integration-tests/deploy/regional-stage-basepath/serverless.yml +++ b/test/integration-tests/deploy/regional-stage-basepath/serverless.yml @@ -1,7 +1,7 @@ # Enabled with regional endpoint, custom stage, empty basepath service: ${env:PLUGIN_IDENTIFIER}-regional-stage-basepath-${env:RANDOM_STRING} -frameworkVersion: "4.3.3" +frameworkVersion: "4.2.5" provider: name: aws diff --git a/test/integration-tests/deploy/regional-tls-1-0/serverless.yml b/test/integration-tests/deploy/regional-tls-1-0/serverless.yml index de800ea4..74fd5589 100644 --- a/test/integration-tests/deploy/regional-tls-1-0/serverless.yml +++ b/test/integration-tests/deploy/regional-tls-1-0/serverless.yml @@ -1,7 +1,7 @@ # Test regional domains with TLS 1.0 service: ${env:PLUGIN_IDENTIFIER}-regional-tls-1-0-${env:RANDOM_STRING} -frameworkVersion: "4.3.3" +frameworkVersion: "4.2.5" provider: name: aws diff --git a/test/integration-tests/deploy/route-53-latency-routing/serverless.yml b/test/integration-tests/deploy/route-53-latency-routing/serverless.yml index bb47f2e8..b46ef44b 100644 --- a/test/integration-tests/deploy/route-53-latency-routing/serverless.yml +++ b/test/integration-tests/deploy/route-53-latency-routing/serverless.yml @@ -1,6 +1,6 @@ service: ${env:PLUGIN_IDENTIFIER}-route-53-latency-routing-${env:RANDOM_STRING} -frameworkVersion: "4.3.3" +frameworkVersion: "4.2.5" provider: name: aws diff --git a/test/integration-tests/deploy/route-53-weighted-routing/serverless.yml b/test/integration-tests/deploy/route-53-weighted-routing/serverless.yml index 288e29ef..786ae9e2 100644 --- a/test/integration-tests/deploy/route-53-weighted-routing/serverless.yml +++ b/test/integration-tests/deploy/route-53-weighted-routing/serverless.yml @@ -1,6 +1,6 @@ service: ${env:PLUGIN_IDENTIFIER}-route-53-weighted-routing-${env:RANDOM_STRING} -frameworkVersion: "4.3.3" +frameworkVersion: "4.2.5" provider: name: aws diff --git a/test/integration-tests/deploy/split-horizon-dns/serverless.yml b/test/integration-tests/deploy/split-horizon-dns/serverless.yml index 553f3681..684f8a0b 100644 --- a/test/integration-tests/deploy/split-horizon-dns/serverless.yml +++ b/test/integration-tests/deploy/split-horizon-dns/serverless.yml @@ -1,6 +1,6 @@ service: ${env:PLUGIN_IDENTIFIER}-split-horizon-dns-${env:RANDOM_STRING} -frameworkVersion: "4.3.3" +frameworkVersion: "4.2.5" provider: name: aws diff --git a/test/integration-tests/deploy/stage-basepath/serverless.yml b/test/integration-tests/deploy/stage-basepath/serverless.yml index 18073e34..b4bf239c 100644 --- a/test/integration-tests/deploy/stage-basepath/serverless.yml +++ b/test/integration-tests/deploy/stage-basepath/serverless.yml @@ -1,7 +1,7 @@ # Enabled with custom stage and empty basepath service: ${env:PLUGIN_IDENTIFIER}-stage-basepath-${env:RANDOM_STRING} -frameworkVersion: "4.3.3" +frameworkVersion: "4.2.5" provider: name: aws diff --git a/test/integration-tests/deploy/web-socket/serverless.yml b/test/integration-tests/deploy/web-socket/serverless.yml index b9546e53..8059e68d 100644 --- a/test/integration-tests/deploy/web-socket/serverless.yml +++ b/test/integration-tests/deploy/web-socket/serverless.yml @@ -1,6 +1,6 @@ service: ${env:PLUGIN_IDENTIFIER}-web-socket-${env:RANDOM_STRING} -frameworkVersion: "4.3.3" +frameworkVersion: "4.2.5" provider: name: aws