diff --git a/CHANGELOG.md b/CHANGELOG.md index 1282c9e..24a36d7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## 1.0.1 (2025-09-01) + +- fix: Fix browser redirect in Localstack authentication +- fix: Update Extension Marketplace assets + ## 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. diff --git a/makefile b/Makefile similarity index 57% rename from makefile rename to Makefile index 8b5662d..9d8e737 100644 --- a/makefile +++ b/Makefile @@ -1,7 +1,11 @@ -.PHONY: vsix +.PHONY: vsix publish vsix: @echo "Packaging VS Code extension into VSIX 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 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 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 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 d47a0b4..fef69ff 100644 --- a/package.json +++ b/package.json @@ -1,9 +1,9 @@ { "name": "localstack", "publisher": "LocalStack", - "displayName": "LocalStack Toolkit for VS Code", + "displayName": "LocalStack Toolkit", "description": "LocalStack - Run locally, deploy globally!", - "version": "1.0.0", + "version": "1.0.1", "preview": true, "engines": { "node": ">=20", @@ -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#readme", "bugs": { "url": "https://github.com/localstack/localstack-vscode-extension/issues" },