Skip to content

Commit b294d21

Browse files
ajitpratap0Ajit Pratap Singhclaude
authored
chore: bump version to 1.11.1 (#378)
* chore: update changelogs and VS Code extension version to 1.11.1 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * chore: bump version to 1.11.1 across Go files and project metadata Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> --------- Co-authored-by: Ajit Pratap Singh <ajitpratapsingh@Ajits-Mac-mini-2655.local> Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 21bc227 commit b294d21

File tree

12 files changed

+38
-12
lines changed

12 files changed

+38
-12
lines changed

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,26 @@ 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.11.1] - 2026-03-15 — Website Polish & SEO
9+
10+
### Fixed
11+
- WASM loading race condition and format parsing in playground
12+
- CSP blocking Astro inline scripts (added unsafe-inline to script-src)
13+
- Base path trailing slash for WASM asset loading
14+
- 19 website audit fixes: broken doc links, mobile layout, accessibility, design tokens
15+
- Hero playground output height and AnalyzeTab CSS conflict
16+
17+
### Improved
18+
- Lazy WASM loading: homepage shows static preview, loads WASM only on user interaction
19+
- Download progress bar for WASM in playground
20+
- Typography: IBM Plex Mono headings, Instrument Sans body
21+
- Hero section: gradient glow effects, gradient headline text
22+
- Feature cards: SVG icons replacing emojis, hover glow effects
23+
- Code examples: Go syntax highlighting with colored spans
24+
- SEO: sitemap, robots.txt, JSON-LD structured data, Twitter cards, RSS feed
25+
- Accessibility: ARIA tab roles, keyboard focus styles, semantic landmarks
26+
- Design tokens: consistent color system replacing raw hex values
27+
828
## [1.11.0] - 2026-03-14 — Product Website with WASM Playground
929

1030
### Added

cmd/gosqlx/cmd/doc.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,7 @@
341341
//
342342
// Version information:
343343
//
344-
// Version = "1.11.0" - Current CLI version
344+
// Version = "1.11.1" - Current CLI version
345345
//
346346
// # Dependencies
347347
//

cmd/gosqlx/cmd/root.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,12 @@ import (
2828
// This version tracks feature releases and compatibility.
2929
// Format: MAJOR.MINOR.PATCH (Semantic Versioning 2.0.0)
3030
//
31-
// Version 1.11.0 includes:
31+
// Version 1.11.1 includes:
3232
// - MCP Server: All GoSQLX SQL capabilities as Model Context Protocol tools over streamable HTTP
3333
// - 7 MCP tools: validate_sql, format_sql, parse_sql, extract_metadata, security_scan, lint_sql, analyze_sql
3434
// - Optional bearer token auth via GOSQLX_MCP_AUTH_TOKEN
3535
// - Go minimum bumped to 1.23.0 (required by mark3labs/mcp-go)
36-
var Version = "1.11.0"
36+
var Version = "1.11.1"
3737

3838
var (
3939
// verbose enables detailed output for debugging and troubleshooting.
@@ -121,7 +121,7 @@ Key features:
121121
• CI/CD integration with proper exit codes
122122
123123
Performance: 1.5M+ operations/second sustained, 1.97M peak. 100-1000x faster than competitors.`,
124-
Version: "1.11.0",
124+
Version: "1.11.1",
125125
}
126126

127127
// Execute adds all child commands to the root command and sets flags appropriately.

cmd/gosqlx/doc.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
//
2525
// # Version
2626
//
27-
// Current version: 1.11.0
27+
// Current version: 1.11.1
2828
//
2929
// # Architecture
3030
//

doc.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
// zero-copy tokenization and comprehensive object pooling. It offers enterprise-grade SQL lexing,
1717
// parsing, and AST generation with support for multiple SQL dialects and advanced SQL features.
1818
//
19-
// GoSQLX v1.11.0 includes both a powerful Go SDK and a high-performance CLI tool for SQL processing,
19+
// GoSQLX v1.11.1 includes both a powerful Go SDK and a high-performance CLI tool for SQL processing,
2020
// validated for production deployment with race-free concurrent operation and extensive real-world testing.
2121
//
2222
// Production Status: VALIDATED FOR PRODUCTION DEPLOYMENT (v1.6.0+)
@@ -278,6 +278,7 @@
278278
//
279279
// # Version History
280280
//
281+
// v1.11.1: Website audit fixes, SEO, lazy WASM, design polish
281282
// v1.11.0: VS Code Marketplace publishing with bundled platform-specific binaries
282283
// v1.10.0: MCP Server — all SQL tools as Model Context Protocol tools over streamable HTTP
283284
// v1.9.0: SQLite PRAGMA, tautology detection, 19 post-UAT fixes

llms.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ recursive-descent parsing, and AST generation with comprehensive object pooling.
77
PostgreSQL, MySQL, SQL Server, Oracle, SQLite, and Snowflake dialects, and ships a full-featured
88
CLI tool (`gosqlx`) for validation, formatting, linting, and security analysis. Apache-2.0 licensed.
99

10-
Current stable version: v1.11.0 (2026-03-13)
10+
Current stable version: v1.11.1 (2026-03-13)
1111
Website: https://ajitpratap0.github.io/GoSQLX/
1212
Interactive Playground: https://ajitpratap0.github.io/GoSQLX/playground/
1313

performance_baselines.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.11.0",
2+
"version": "1.11.1",
33
"updated": "2026-03-13",
44
"baselines": {
55
"SimpleSelect": {

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.11.0"
31+
const Version = "1.11.1"
3232

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

pkg/mcp/server.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ func New(cfg *Config) *Server {
3535
s := &Server{cfg: cfg}
3636
s.mcpSrv = mcpserver.NewMCPServer(
3737
"gosqlx-mcp",
38-
"1.11.0",
38+
"1.11.1",
3939
mcpserver.WithToolCapabilities(false),
4040
)
4141
s.registerTools()

vscode-extension/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
All notable changes to the "GoSQLX" extension will be documented in this file.
44

5+
## [1.11.1] - 2026-03-15
6+
7+
### Fixed
8+
- Version aligned with GoSQLX core (1.11.1)
9+
510
## [1.10.4] - 2026-03-14
611

712
### Fixed

0 commit comments

Comments
 (0)