From 83a136d4cd2bfab991cf3544b596c0403bdf3db8 Mon Sep 17 00:00:00 2001 From: pierreln-dd Date: Fri, 3 Jul 2026 10:33:15 +0200 Subject: [PATCH] Update CHANGELOG.md for v0.2.3 Co-Authored-By: Claude Sonnet 4.6 --- CHANGELOG.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 89d7164..4a92233 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## v0.2.3 + +### Bug Fixes + +- **Preserve bracket-quoted T-SQL identifiers containing spaces** ([#101](https://github.com/DataDog/go-sqllexer/pull/101)) + Bracket-quoted identifiers whose content contains whitespace (e.g. `[Column With Spaces]`) are no longer de-bracketed during normalization. Stripping the brackets produces bare spaces in identifier position, which breaks query structure. Simple identifiers (`[schema]`, `[table]`) and dot-joined multi-part identifiers (`[schema].[table]`) are unaffected and continue to be de-bracketed as before. A secondary fix suppresses the spurious space that the normalizer was inserting between a dot-suffixed token and the bracket-quoted identifier that follows it (e.g. `t. [Col]` → `t.[Col]`). + ## v0.2.2 ### Bug Fixes