diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 38acea67..18eef3d5 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.12.1" + ".": "0.12.2" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 49a5a18f..fb4d4baa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/editors/vscode/package.json b/editors/vscode/package.json index 9b39b672..6feb4415 100644 --- a/editors/vscode/package.json +++ b/editors/vscode/package.json @@ -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", diff --git a/internal/gowdkcmd/main.go b/internal/gowdkcmd/main.go index d87e52b1..64575fa3 100644 --- a/internal/gowdkcmd/main.go +++ b/internal/gowdkcmd/main.go @@ -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"}