diff --git a/CHANGELOG.md b/CHANGELOG.md index 91b53358..e4fa5543 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to GoSQLX will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.10.2] - 2026-03-14 — VS Code Extension Fix + +### Fixed +- Include node_modules in VSIX package (vscode-languageclient was missing) +- Add VS Code Marketplace badge and installation section to README + ## [1.10.1] - 2026-03-13 — VS Code Marketplace Publishing ### ✨ New Features diff --git a/cmd/gosqlx/cmd/doc.go b/cmd/gosqlx/cmd/doc.go index d0e1ab0f..f972fca6 100644 --- a/cmd/gosqlx/cmd/doc.go +++ b/cmd/gosqlx/cmd/doc.go @@ -341,7 +341,7 @@ // // Version information: // -// Version = "1.10.1" - Current CLI version +// Version = "1.10.2" - Current CLI version // // # Dependencies // diff --git a/cmd/gosqlx/cmd/root.go b/cmd/gosqlx/cmd/root.go index bd8d4741..bfc79a24 100644 --- a/cmd/gosqlx/cmd/root.go +++ b/cmd/gosqlx/cmd/root.go @@ -28,12 +28,12 @@ import ( // This version tracks feature releases and compatibility. // Format: MAJOR.MINOR.PATCH (Semantic Versioning 2.0.0) // -// Version 1.10.1 includes: +// Version 1.10.2 includes: // - MCP Server: All GoSQLX SQL capabilities as Model Context Protocol tools over streamable HTTP // - 7 MCP tools: validate_sql, format_sql, parse_sql, extract_metadata, security_scan, lint_sql, analyze_sql // - Optional bearer token auth via GOSQLX_MCP_AUTH_TOKEN // - Go minimum bumped to 1.23.0 (required by mark3labs/mcp-go) -var Version = "1.10.1" +var Version = "1.10.2" var ( // verbose enables detailed output for debugging and troubleshooting. @@ -121,7 +121,7 @@ Key features: • CI/CD integration with proper exit codes Performance: 1.5M+ operations/second sustained, 1.97M peak. 100-1000x faster than competitors.`, - Version: "1.10.1", + Version: "1.10.2", } // Execute adds all child commands to the root command and sets flags appropriately. diff --git a/cmd/gosqlx/doc.go b/cmd/gosqlx/doc.go index a71a0f93..eca1fb73 100644 --- a/cmd/gosqlx/doc.go +++ b/cmd/gosqlx/doc.go @@ -24,7 +24,7 @@ // // # Version // -// Current version: 1.10.1 +// Current version: 1.10.2 // // # Architecture // diff --git a/doc.go b/doc.go index 6af34cd4..1046ba8a 100644 --- a/doc.go +++ b/doc.go @@ -16,7 +16,7 @@ // zero-copy tokenization and comprehensive object pooling. It offers enterprise-grade SQL lexing, // parsing, and AST generation with support for multiple SQL dialects and advanced SQL features. // -// GoSQLX v1.10.1 includes both a powerful Go SDK and a high-performance CLI tool for SQL processing, +// GoSQLX v1.10.2 includes both a powerful Go SDK and a high-performance CLI tool for SQL processing, // validated for production deployment with race-free concurrent operation and extensive real-world testing. // // Production Status: VALIDATED FOR PRODUCTION DEPLOYMENT (v1.6.0+) @@ -278,7 +278,7 @@ // // # Version History // -// v1.10.1: VS Code Marketplace publishing with bundled platform-specific binaries +// v1.10.2: VS Code Marketplace publishing with bundled platform-specific binaries // v1.10.0: MCP Server — all SQL tools as Model Context Protocol tools over streamable HTTP // v1.9.0: SQLite PRAGMA, tautology detection, 19 post-UAT fixes // v1.8.0: Multi-dialect engine, query transforms, WASM playground, AST-to-SQL roundtrip diff --git a/llms.txt b/llms.txt index 9ed5228c..c909b53a 100644 --- a/llms.txt +++ b/llms.txt @@ -7,7 +7,7 @@ recursive-descent parsing, and AST generation with comprehensive object pooling. PostgreSQL, MySQL, SQL Server, Oracle, SQLite, and Snowflake dialects, and ships a full-featured CLI tool (`gosqlx`) for validation, formatting, linting, and security analysis. Apache-2.0 licensed. -Current stable version: v1.10.1 (2026-03-13) +Current stable version: v1.10.2 (2026-03-13) ## Core API diff --git a/performance_baselines.json b/performance_baselines.json index ed25dea2..650b7941 100644 --- a/performance_baselines.json +++ b/performance_baselines.json @@ -1,5 +1,5 @@ { - "version": "1.10.1", + "version": "1.10.2", "updated": "2026-03-13", "baselines": { "SimpleSelect": { diff --git a/pkg/gosqlx/gosqlx.go b/pkg/gosqlx/gosqlx.go index 55953b1b..e5ac934f 100644 --- a/pkg/gosqlx/gosqlx.go +++ b/pkg/gosqlx/gosqlx.go @@ -28,7 +28,7 @@ import ( ) // Version is the current GoSQLX library version. -const Version = "1.10.1" +const Version = "1.10.2" // Parse tokenizes and parses SQL in one call, returning an Abstract Syntax Tree (AST). // diff --git a/pkg/mcp/server.go b/pkg/mcp/server.go index c140e420..394cdfce 100644 --- a/pkg/mcp/server.go +++ b/pkg/mcp/server.go @@ -35,7 +35,7 @@ func New(cfg *Config) *Server { s := &Server{cfg: cfg} s.mcpSrv = mcpserver.NewMCPServer( "gosqlx-mcp", - "1.10.1", + "1.10.2", mcpserver.WithToolCapabilities(false), ) s.registerTools() diff --git a/vscode-extension/CHANGELOG.md b/vscode-extension/CHANGELOG.md index 1c6e9d19..f933eeab 100644 --- a/vscode-extension/CHANGELOG.md +++ b/vscode-extension/CHANGELOG.md @@ -2,6 +2,11 @@ All notable changes to the "GoSQLX" extension will be documented in this file. +## [1.10.2] - 2026-03-14 + +### Fixed +- Include vscode-languageclient in VSIX package (extension failed to activate) + ## [1.10.1] - 2026-03-13 ### Added diff --git a/vscode-extension/package-lock.json b/vscode-extension/package-lock.json index 3806cce3..4d39d8b3 100644 --- a/vscode-extension/package-lock.json +++ b/vscode-extension/package-lock.json @@ -1,6 +1,6 @@ { "name": "gosqlx", - "version": "1.10.1", + "version": "1.10.2", "lockfileVersion": 3, "requires": true, "packages": { diff --git a/vscode-extension/package.json b/vscode-extension/package.json index a094ca1c..16aec729 100644 --- a/vscode-extension/package.json +++ b/vscode-extension/package.json @@ -2,7 +2,7 @@ "name": "gosqlx", "displayName": "GoSQLX", "description": "High-performance SQL parsing, validation, formatting, and analysis powered by GoSQLX", - "version": "1.10.1", + "version": "1.10.2", "publisher": "ajitpratap0", "license": "Apache-2.0", "repository": {