Skip to content

Commit 6d83432

Browse files
ajitpratap0Ajit Pratap Singh
andauthored
docs: release v1.9.2 — version bumps, changelog, and documentation updates (#353)
Co-authored-by: Ajit Pratap Singh <ajitpratapsingh@Ajits-Mac-mini-2655.local>
1 parent 24f17c3 commit 6d83432

3 files changed

Lines changed: 25 additions & 15 deletions

File tree

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,22 @@ All notable changes to GoSQLX will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.9.2] - 2026-03-08 — Documentation, Community Health & License Fixes
9+
10+
### 📚 Documentation (PR #351)
11+
- Fix pkg.go.dev license detection (Apache-2.0 now properly detected)
12+
- Comprehensive doc improvements across the project
13+
14+
### 🌍 Community (PR #350)
15+
- Open-source health files (CONTRIBUTING.md, CODE_OF_CONDUCT.md, SECURITY.md, etc.)
16+
- LLM discovery metadata (llms.txt, llms-full.txt)
17+
- SEO improvements for project discoverability
18+
19+
### 🐛 Bug Fixes (PR #352)
20+
- Fix leading blank line in vscode-extension/LICENSE
21+
22+
---
23+
824
## [1.9.0] - 2026-02-28 - SQLite PRAGMA, Tautology Detection & 19 Post-UAT Fixes
925

1026
19 actionable bugs fixed (PR #348) — 3 new capabilities, 8 parser fixes,

cmd/gosqlx/cmd/root.go

Lines changed: 8 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -28,20 +28,14 @@ import (
2828
// This version tracks feature releases and compatibility.
2929
// Format: MAJOR.MINOR.PATCH (Semantic Versioning 2.0.0)
3030
//
31-
// Version 1.9.0 includes:
32-
// - SQLite PRAGMA fully parsed (bare, arg, and assignment forms)
33-
// - WITHOUT ROWID support in CREATE TABLE
34-
// - Tautology injection detection (1=1, 'a'='a', OR TRUE) → CRITICAL
35-
// - UNION false-positive fix: PatternUnionInjection (CRITICAL) / PatternUnionGeneric (HIGH)
36-
// - E1009 ErrCodeUnterminatedBlockComment for /* ... */ errors
37-
// - MySQL backtick and SQL Server bracket reserved-word identifiers
38-
// - KEY/INDEX/VIEW reserved keywords valid in qualified identifiers
39-
// - NATURAL JOIN type stored correctly
40-
// - OVER <window_name> (bare name, no parens) per SQL:2003 §7.11
41-
// - token_count, Query Size, CTE output, SELECT indentation fixes
42-
// - lint exits 1 on any violation (usable as CI gate)
43-
// - validate output standardized to ✅/❌
44-
var Version = "1.9.0"
31+
// Version 1.9.2 includes:
32+
// - Fix pkg.go.dev license detection (Apache-2.0 now properly detected)
33+
// - Comprehensive doc improvements across the project (PR #351)
34+
// - Open-source health files (CONTRIBUTING.md, CODE_OF_CONDUCT.md, SECURITY.md)
35+
// - LLM discovery metadata (llms.txt, llms-full.txt) (PR #350)
36+
// - SEO improvements for project discoverability
37+
// - Fix leading blank line in vscode-extension/LICENSE (PR #352)
38+
var Version = "1.9.2"
4539

4640
var (
4741
// verbose enables detailed output for debugging and troubleshooting.

pkg/gosqlx/gosqlx.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ import (
2828
)
2929

3030
// Version is the current GoSQLX library version.
31-
const Version = "1.9.0"
31+
const Version = "1.9.2"
3232

3333
// Parse tokenizes and parses SQL in one call, returning an Abstract Syntax Tree (AST).
3434
//

0 commit comments

Comments
 (0)