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
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.12.1"
".": "0.12.2"
}
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
GOWDK is experimental 0.x software. Public syntax, generated output, runtime
packages, and tooling contracts may change before 1.0.

## [0.12.2](https://github.com/cssbruno/GoWDK/compare/v0.12.1...v0.12.2) (2026-06-27)


### Bug Fixes

* **app:** do not trust Host alone for local trace viewer access ([#783](https://github.com/cssbruno/GoWDK/issues/783)) ([0492260](https://github.com/cssbruno/GoWDK/commit/0492260914b732c857230801aa073ec5c48e5545))
* **app:** skip csrf injection for off-origin post forms ([#785](https://github.com/cssbruno/GoWDK/issues/785)) ([7adb9ef](https://github.com/cssbruno/GoWDK/commit/7adb9ef9ad6d72ba216c21f316436a5613f96b7d))
* **compiler:** align generated apps and typed IR ([#787](https://github.com/cssbruno/GoWDK/issues/787)) ([c2cf66c](https://github.com/cssbruno/GoWDK/commit/c2cf66c2f9f50ca82c7c38831aaf44d9e090b02a))
* **realtime:** scope sse streams by authorized route ([#786](https://github.com/cssbruno/GoWDK/issues/786)) ([419ed3f](https://github.com/cssbruno/GoWDK/commit/419ed3f260334fdbc34b134baf1d3225f41ee7cc))
* **trace:** redact browser trace URL query data ([#784](https://github.com/cssbruno/GoWDK/issues/784)) ([ab24801](https://github.com/cssbruno/GoWDK/commit/ab24801130e36c130aae2d982002b5d78fb4ac3d))

## [0.12.1](https://github.com/cssbruno/GoWDK/compare/v0.12.0...v0.12.1) (2026-06-27)


Expand Down
2 changes: 1 addition & 1 deletion editors/vscode/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "gowdk-vscode",
"displayName": "GOWDK",
"description": "Language tools for portable .gwdk files.",
"version": "0.12.1",
"version": "0.12.2",
"publisher": "gowdk",
"license": "MIT",
"icon": "icons/gowdk.png",
Expand Down
2 changes: 1 addition & 1 deletion internal/gowdkcmd/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"github.com/cssbruno/gowdk"
)

const version = "0.12.1" // x-release-please-version
const version = "0.12.2" // x-release-please-version

var (
defaultSourceIncludes = []string{"**/*.gwdk"}
Expand Down