From 6f249b5783926962fdfd9cc9905b6f74623f6c21 Mon Sep 17 00:00:00 2001 From: "localstack[bot]" Date: Sat, 23 Nov 2024 21:45:19 +0000 Subject: [PATCH 01/13] release version 4.0.2 --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index fe1fea0..1682d1f 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,3 @@ pyinstaller -localstack==4.0.1 +localstack==4.0.2 cookiecutter From 85f956692c469b1b14590e0c4e7b2a471c64354a Mon Sep 17 00:00:00 2001 From: "localstack[bot]" Date: Fri, 29 Nov 2024 20:54:03 +0000 Subject: [PATCH 02/13] release version 4.0.3 --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 1682d1f..8fce339 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,3 @@ pyinstaller -localstack==4.0.2 +localstack==4.0.3 cookiecutter From 139436a030330b73ca48d4f8648a989bd3f83c1c Mon Sep 17 00:00:00 2001 From: Silvio Vasiljevic Date: Thu, 30 Jan 2025 10:24:16 +0100 Subject: [PATCH 03/13] Upgrade minimum-version runners and fix Docker smoke tests (#33) --- .github/workflows/build.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 34c24e3..7789057 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -17,7 +17,7 @@ jobs: fail-fast: false matrix: include: - - runner: macos-12 + - runner: macos-13 os: darwin arch: amd64 - runner: macos-13-xlarge @@ -26,7 +26,7 @@ jobs: - runner: windows-2019 os: windows arch: amd64 - - runner: ubuntu-20.04 + - runner: ubuntu-22.04 os: linux arch: amd64 - runner: buildjet-2vcpu-ubuntu-2204-arm @@ -114,6 +114,9 @@ jobs: # start community ./localstack start -d ./localstack wait -t 180 + # TODO this is a hotfix to capture the first build of the service catalog which takes longer than + # the allowed timeout in `localstack status services` (2s) + curl http://localhost.localstack.cloud:4566/_localstack/health ./localstack status services --format plain ./localstack status services --format plain | grep "s3=available" ./localstack stop From 02650833db30bb86f1954f23a520aa143b4baa42 Mon Sep 17 00:00:00 2001 From: "localstack[bot]" Date: Thu, 30 Jan 2025 10:09:31 +0000 Subject: [PATCH 04/13] release version 4.1.0 --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 8fce339..65cd5a9 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,3 @@ pyinstaller -localstack==4.0.3 +localstack==4.1.0 cookiecutter From a52ee4b4742c82b61a2c1c8abf4ad62830c86943 Mon Sep 17 00:00:00 2001 From: "localstack[bot]" Date: Wed, 5 Feb 2025 09:37:43 +0000 Subject: [PATCH 05/13] release version 4.1.1 --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 65cd5a9..5907330 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,3 @@ pyinstaller -localstack==4.1.0 +localstack==4.1.1 cookiecutter From e5305a5ef8ee52c6ad477301c93170558b756cfd Mon Sep 17 00:00:00 2001 From: Alexander Rashed <2796604+alexrashed@users.noreply.github.com> Date: Wed, 19 Feb 2025 13:30:02 +0100 Subject: [PATCH 06/13] migrate from api keys to auth tokens (#34) --- .github/workflows/build.yml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7789057..3c895d3 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -94,7 +94,7 @@ jobs: if: ${{ ! github.event.pull_request.head.repo.fork }} run: | # create an extension with default parameters (enter all new lines to use defaults) - printf "\n\n\n\n\n\n\n\n\n" | LOCALSTACK_API_KEY=${{ secrets.TEST_LOCALSTACK_API_KEY }} DEBUG=1 ./dist-bin/localstack extensions dev new + printf "\n\n\n\n\n\n\n\n\n" | LOCALSTACK_AUTH_TOKEN=${{ secrets.TEST_LOCALSTACK_AUTH_TOKEN }} DEBUG=1 ./dist-bin/localstack extensions dev new # print the directory output ls -al my-localstack-extension # remove it again @@ -133,12 +133,6 @@ jobs: # Pull images to avoid making smoke tests vulnerable to system behavior (docker pull speed) docker pull localstack/localstack-pro cd dist-bin - # start pro with an API key (legacy) - LOCALSTACK_API_KEY=${{ secrets.TEST_LOCALSTACK_API_KEY }} ./localstack start -d - ./localstack wait -t 180 - ./localstack status services --format plain - ./localstack status services --format plain | grep "xray=available" - ./localstack stop # start pro with an auth token and extensions dev mode (see issue #20) LOCALSTACK_AUTH_TOKEN=${{ secrets.TEST_LOCALSTACK_AUTH_TOKEN }} EXTENSION_DEV_MODE=1 ./localstack start -d ./localstack wait -t 180 From ea4084c9079403ce92bf6b59c307a45dda4c6d5a Mon Sep 17 00:00:00 2001 From: "localstack[bot]" Date: Thu, 27 Feb 2025 08:24:34 +0000 Subject: [PATCH 07/13] release version 4.2.0 --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 5907330..020b0a1 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,3 @@ pyinstaller -localstack==4.1.1 +localstack==4.2.0 cookiecutter From 1dd1469289813ea813cc55e733a733c250212f7b Mon Sep 17 00:00:00 2001 From: Alexander Rashed <2796604+alexrashed@users.noreply.github.com> Date: Thu, 6 Mar 2025 09:50:17 +0100 Subject: [PATCH 08/13] remove workaround for status timeout (#35) --- .github/workflows/build.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3c895d3..36ce8e8 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -114,9 +114,6 @@ jobs: # start community ./localstack start -d ./localstack wait -t 180 - # TODO this is a hotfix to capture the first build of the service catalog which takes longer than - # the allowed timeout in `localstack status services` (2s) - curl http://localhost.localstack.cloud:4566/_localstack/health ./localstack status services --format plain ./localstack status services --format plain | grep "s3=available" ./localstack stop From 24dcac597e99eff7f1bdf56d7b8083811914adb7 Mon Sep 17 00:00:00 2001 From: "localstack[bot]" Date: Thu, 27 Mar 2025 09:17:20 +0000 Subject: [PATCH 09/13] release version 4.3.0 --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 020b0a1..7d4b27c 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,3 @@ pyinstaller -localstack==4.2.0 +localstack==4.3.0 cookiecutter From de2bc3c26c6a62ea582ea6041e8ff2d2caf7b11e Mon Sep 17 00:00:00 2001 From: "localstack[bot]" Date: Thu, 8 May 2025 07:14:30 +0000 Subject: [PATCH 10/13] release version 4.4.0 --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 7d4b27c..fbdffe7 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,3 @@ pyinstaller -localstack==4.3.0 +localstack==4.4.0 cookiecutter From 59eb6ae00993dfb4bb85d09bc1736055b8d236bd Mon Sep 17 00:00:00 2001 From: "localstack[bot]" Date: Thu, 5 Jun 2025 07:35:36 +0000 Subject: [PATCH 11/13] release version 4.5.0 --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index fbdffe7..c673206 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,3 @@ pyinstaller -localstack==4.4.0 +localstack==4.5.0 cookiecutter From f3c1be570466e8f00b1e5c0f80ef8d99d9e5dc56 Mon Sep 17 00:00:00 2001 From: Alexander Rashed <2796604+alexrashed@users.noreply.github.com> Date: Wed, 2 Jul 2025 17:46:03 +0200 Subject: [PATCH 12/13] Upgrade windows runner after removal of windows-2019 (#39) --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 36ce8e8..ea6a254 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -23,7 +23,7 @@ jobs: - runner: macos-13-xlarge os: darwin arch: arm64 - - runner: windows-2019 + - runner: windows-2022 os: windows arch: amd64 - runner: ubuntu-22.04 From b048d652ac19a759eab0ba5a135570cfc0cf0064 Mon Sep 17 00:00:00 2001 From: "localstack[bot]" Date: Thu, 3 Jul 2025 06:25:55 +0000 Subject: [PATCH 13/13] release version 4.6.0 --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index c673206..0e07e40 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,3 @@ pyinstaller -localstack==4.5.0 +localstack==4.6.0 cookiecutter