From fe09f7f9937e98600e794ed6a3d7997566b5ee65 Mon Sep 17 00:00:00 2001 From: Misha Tiurin Date: Mon, 1 Sep 2025 15:26:12 +0200 Subject: [PATCH 01/10] Update homepage link Show top of github page instead of scrolling to the same readme that can be read in the marketplace. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index d47a0b4..2efd26d 100644 --- a/package.json +++ b/package.json @@ -24,7 +24,7 @@ }, "icon": "resources/icons/localstack-icon-256x256.png", "license": "Apache-2.0", - "homepage": "https://github.com/localstack/localstack-vscode-extension/blob/main/README.md", + "homepage": "https://github.com/localstack/localstack-vscode-extension", "bugs": { "url": "https://github.com/localstack/localstack-vscode-extension/issues" }, From deb709b910b52e4fff2e67fd5321bdd313104dcd Mon Sep 17 00:00:00 2001 From: Misha Tiurin Date: Mon, 1 Sep 2025 16:05:53 +0200 Subject: [PATCH 02/10] Use shorter extension display name Localstack Toolkit for VS Code takes too much space and doesn't fit marketplace links and sidebar. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 2efd26d..0349889 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "localstack", "publisher": "LocalStack", - "displayName": "LocalStack Toolkit for VS Code", + "displayName": "LocalStack Toolkit", "description": "LocalStack - Run locally, deploy globally!", "version": "1.0.0", "preview": true, From d43e865dc4941ce8371cc9727d276b926ea4eb20 Mon Sep 17 00:00:00 2001 From: Misha Tiurin Date: Mon, 1 Sep 2025 16:07:27 +0200 Subject: [PATCH 03/10] Bump version to 1.0.1 --- package-lock.json | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package-lock.json b/package-lock.json index c093b0d..96ed876 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "localstack", - "version": "1.0.0", + "version": "1.0.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "localstack", - "version": "1.0.0", + "version": "1.0.1", "license": "Apache-2.0", "devDependencies": { "@biomejs/biome": "^2.1.1", diff --git a/package.json b/package.json index 0349889..569af3b 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "publisher": "LocalStack", "displayName": "LocalStack Toolkit", "description": "LocalStack - Run locally, deploy globally!", - "version": "1.0.0", + "version": "1.0.1", "preview": true, "engines": { "node": ">=20", From 80e0ac07358067ece4f872d588d5f4fc6492d3ad Mon Sep 17 00:00:00 2001 From: Misha Tiurin Date: Mon, 1 Sep 2025 16:17:03 +0200 Subject: [PATCH 04/10] Add make publish command --- makefile => Makefile | 4 ++++ 1 file changed, 4 insertions(+) rename makefile => Makefile (60%) diff --git a/makefile b/Makefile similarity index 60% rename from makefile rename to Makefile index 8b5662d..54809c1 100644 --- a/makefile +++ b/Makefile @@ -5,3 +5,7 @@ vsix: LOCALSTACK_WEB_AUTH_REDIRECT=https://app.localstack.cloud/redirect?name=VSCode NODE_ENV=production ANALYTICS_API_URL=https://analytics.localstack.cloud/v1/events npx vsce package @hash=$$(git rev-parse --short HEAD); \ mv localstack-1.0.0.vsix localstack-1.0.0-$$hash.vsix + +publish: + @echo "Publishing VS Code extension..." + LOCALSTACK_WEB_AUTH_REDIRECT=https://app.localstack.cloud/redirect?name=VSCode NODE_ENV=production ANALYTICS_API_URL=https://analytics.localstack.cloud/v1/events npx vsce publish \ No newline at end of file From 64bc6d3292329401a060b65abd8fc9e628a7a17c Mon Sep 17 00:00:00 2001 From: Misha Tiurin Date: Mon, 1 Sep 2025 16:22:56 +0200 Subject: [PATCH 05/10] Add trailing whitespace --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 54809c1..ea69909 100644 --- a/Makefile +++ b/Makefile @@ -8,4 +8,4 @@ vsix: publish: @echo "Publishing VS Code extension..." - LOCALSTACK_WEB_AUTH_REDIRECT=https://app.localstack.cloud/redirect?name=VSCode NODE_ENV=production ANALYTICS_API_URL=https://analytics.localstack.cloud/v1/events npx vsce publish \ No newline at end of file + LOCALSTACK_WEB_AUTH_REDIRECT=https://app.localstack.cloud/redirect?name=VSCode NODE_ENV=production ANALYTICS_API_URL=https://analytics.localstack.cloud/v1/events npx vsce publish From 52bcffa410dc382b86f58ef4800ee255e3f88caf Mon Sep 17 00:00:00 2001 From: Joel Scheuner Date: Mon, 1 Sep 2025 16:48:25 +0200 Subject: [PATCH 06/10] Add phony target --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ea69909..9d8e737 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -.PHONY: vsix +.PHONY: vsix publish vsix: @echo "Packaging VS Code extension into VSIX file..." From e335d39c5f5a3b71ffae57bb6157f546c60aaa86 Mon Sep 17 00:00:00 2001 From: Misha Tiurin Date: Mon, 1 Sep 2025 16:56:16 +0200 Subject: [PATCH 07/10] Update changelog --- CHANGELOG.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1282c9e..b4f6a51 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## 1.0.1 (2025-09-01) + +Updates Extension Marketplace assets, no functionality has been changed. + +- fix: Use shorter extension display name +- fix: Update homepage link + ## 1.0.0 (2025-09-01) This release adds features to setup and manage LocalStack from within VS Code. Features from initial preview release have been removed. From ae38aa1a5f1d5347baad067ebbe25046dab6785c Mon Sep 17 00:00:00 2001 From: Misha Tiurin Date: Mon, 1 Sep 2025 16:59:32 +0200 Subject: [PATCH 08/10] Update homepage to scroll to readme directly --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 569af3b..fef69ff 100644 --- a/package.json +++ b/package.json @@ -24,7 +24,7 @@ }, "icon": "resources/icons/localstack-icon-256x256.png", "license": "Apache-2.0", - "homepage": "https://github.com/localstack/localstack-vscode-extension", + "homepage": "https://github.com/localstack/localstack-vscode-extension#readme", "bugs": { "url": "https://github.com/localstack/localstack-vscode-extension/issues" }, From 201ccebc4240ab94f61333b288272891d060d3a8 Mon Sep 17 00:00:00 2001 From: Misha Tiurin Date: Mon, 1 Sep 2025 17:01:21 +0200 Subject: [PATCH 09/10] Move support section from separate file to readme With SUPPORT.md there is too many links in the marketplace sidebar that all essentially lead to github page --- README.md | 12 +++++++++++- SUPPORT.md | 11 ----------- 2 files changed, 11 insertions(+), 12 deletions(-) delete mode 100644 SUPPORT.md diff --git a/README.md b/README.md index 4606fe8..145a71f 100644 --- a/README.md +++ b/README.md @@ -38,4 +38,14 @@ Once the profile is configured you can use it from your favorite AWS tools like ## Support -If you need help, [please read our support guidelines](./SUPPORT.md) for information on how to get in touch. +### LocalStack Toolkit for VS Code extension support + +Please provide feedback or report an issue on the LocalStack Toolkit for VS Code by using our [GitHub Issues](https://github.com/localstack/localstack-vscode-extension/issues) page. + +### LocalStack general support + +For LocalStack-related questions, feedback, and contributions, you can: + +- Check our main repository: visit our [get in touch section on LocalStack's GitHub](https://github.com/localstack/localstack?tab=readme-ov-file#get-in-touch) for contact information and support channels. + +Join our Slack Community: Connect with other developers on the official [LocalStack Slack community](https://localstack.cloud/slack). diff --git a/SUPPORT.md b/SUPPORT.md deleted file mode 100644 index 41a2e51..0000000 --- a/SUPPORT.md +++ /dev/null @@ -1,11 +0,0 @@ -### LocalStack Toolkit for VS Code extension support - -Please provide feedback or report an issue on the LocalStack Toolkit for VS Code by using our [GitHub Issues](https://github.com/localstack/localstack-vscode-extension/issues) page. - -### LocalStack general support - -For LocalStack-related questions, feedback, and contributions, you can: - -- Check our main repository: visit our [get in touch section on LocalStack's GitHub](https://github.com/localstack/localstack?tab=readme-ov-file#get-in-touch) for contact information and support channels. - -Join our Slack Community: Connect with other developers on the official [LocalStack Slack community](https://localstack.cloud/slack). \ No newline at end of file From 0ed07f46b59531868579764d369c6b6d541dadfc Mon Sep 17 00:00:00 2001 From: Misha Tiurin Date: Mon, 1 Sep 2025 17:04:13 +0200 Subject: [PATCH 10/10] Update changelog --- CHANGELOG.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b4f6a51..24a36d7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,10 +2,8 @@ ## 1.0.1 (2025-09-01) -Updates Extension Marketplace assets, no functionality has been changed. - -- fix: Use shorter extension display name -- fix: Update homepage link +- fix: Fix browser redirect in Localstack authentication +- fix: Update Extension Marketplace assets ## 1.0.0 (2025-09-01)