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.3.0 (2026-02-11)

- fix: localstack installation on ubuntu/i3 (#77)
- feat: support more vscode-flavored editors (#81)

## 1.2.8 (2025-11-19)

- chore: Bump glob to tackle CVE
Expand Down
11 changes: 11 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,3 +42,14 @@ To install the generated VSIX file in Visual Studio Code:
2. Click the three-dot menu in the top right.
3. Select **Install from VSIX...**.
4. Choose the `.vsix` file.

## Releasing a new version
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

thanks for documenting this 💯


To release a new version of the extension, you need to:

1. Create a branch using the new version as the name (e.g. `v1.3.0`)
2. Update the version in `package.json` and run `npm install`
3. Update the `CHANGELOG.md` file
4. Push the branch to GitHub
5. Create a pull request in GitHub
6. While the pull request is open, execute the `Publish Extension` workflow targetting the new branch
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.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"publisher": "LocalStack",
"displayName": "LocalStack Toolkit",
"description": "LocalStack - Run locally, deploy globally!",
"version": "1.2.8",
"version": "1.3.0",
"engines": {
"node": ">=20",
"vscode": "^1.83.0"
Expand Down
Loading