Skip to content

Commit c599023

Browse files
authored
fix: Update marketplace assets (#5)
- Use shorter extension display name - Update homepage link - Update Makefile - Bump version to 1.0.1
1 parent 73b1af7 commit c599023

File tree

6 files changed

+26
-18
lines changed

6 files changed

+26
-18
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## 1.0.1 (2025-09-01)
4+
5+
- fix: Fix browser redirect in Localstack authentication
6+
- fix: Update Extension Marketplace assets
7+
38
## 1.0.0 (2025-09-01)
49

510
This release adds features to setup and manage LocalStack from within VS Code. Features from initial preview release have been removed.
Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
1-
.PHONY: vsix
1+
.PHONY: vsix publish
22

33
vsix:
44
@echo "Packaging VS Code extension into VSIX file..."
55
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
66
@hash=$$(git rev-parse --short HEAD); \
77
mv localstack-1.0.0.vsix localstack-1.0.0-$$hash.vsix
8+
9+
publish:
10+
@echo "Publishing VS Code extension..."
11+
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

README.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,14 @@ Once the profile is configured you can use it from your favorite AWS tools like
3838

3939
## Support
4040

41-
If you need help, [please read our support guidelines](./SUPPORT.md) for information on how to get in touch.
41+
### LocalStack Toolkit for VS Code extension support
42+
43+
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.
44+
45+
### LocalStack general support
46+
47+
For LocalStack-related questions, feedback, and contributions, you can:
48+
49+
- 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.
50+
51+
Join our Slack Community: Connect with other developers on the official [LocalStack Slack community](https://localstack.cloud/slack).

SUPPORT.md

Lines changed: 0 additions & 11 deletions
This file was deleted.

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"name": "localstack",
33
"publisher": "LocalStack",
4-
"displayName": "LocalStack Toolkit for VS Code",
4+
"displayName": "LocalStack Toolkit",
55
"description": "LocalStack - Run locally, deploy globally!",
6-
"version": "1.0.0",
6+
"version": "1.0.1",
77
"preview": true,
88
"engines": {
99
"node": ">=20",
@@ -24,7 +24,7 @@
2424
},
2525
"icon": "resources/icons/localstack-icon-256x256.png",
2626
"license": "Apache-2.0",
27-
"homepage": "https://github.com/localstack/localstack-vscode-extension/blob/main/README.md",
27+
"homepage": "https://github.com/localstack/localstack-vscode-extension#readme",
2828
"bugs": {
2929
"url": "https://github.com/localstack/localstack-vscode-extension/issues"
3030
},

0 commit comments

Comments
 (0)