Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
6 changes: 5 additions & 1 deletion makefile → Makefile
Original file line number Diff line number Diff line change
@@ -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
12 changes: 11 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).
11 changes: 0 additions & 11 deletions SUPPORT.md

This file was deleted.

4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand All @@ -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"
},
Expand Down
Loading