You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docs: update documentation to reflect v1.6.0 features as available
This commit updates all documentation to reflect that v1.6.0 features
are now available (not planned):
Migration Guides:
- FROM_SQLFLUFF.md: Updated linting rules (10 rules L001-L010), auto-fix,
VSCode extension, and .gosqlx.yml config as available in v1.6.0
- FROM_PG_QUERY.md: Updated JSON/JSONB operators as supported in v1.6.0
Documentation Updates:
- Updated version references from v1.5.x to v1.6.0 across all docs
- Added v1.6.0 upgrade section to UPGRADE_GUIDE.md
- Updated COMPARISON.md with v1.6.0 features and performance data
- Updated CLAUDE.md production status to v1.6.0+
- Updated performance_baselines.json to v1.6.0
Key v1.6.0 Features Now Documented:
- PostgreSQL Extensions (LATERAL JOIN, JSON/JSONB operators, DISTINCT ON)
- Language Server Protocol (LSP) server
- VSCode Extension
- 10 Linting Rules (L001-L010) with auto-fix
- .gosqlx.yml configuration file support
- go-task Taskfile.yml
- Structured error codes (E1001-E3004)
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: CLAUDE.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ This file provides guidance to Claude Code (claude.ai/code) when working with co
6
6
7
7
GoSQLX is a **production-ready**, **race-free**, high-performance SQL parsing SDK for Go that provides lexing, parsing, and AST generation with zero-copy optimizations. The library is designed for enterprise use with comprehensive object pooling for memory efficiency.
8
8
9
-
### **Production Status**: ✅ **VALIDATED FOR PRODUCTION DEPLOYMENT** (v1.5.1+)
9
+
### **Production Status**: ✅ **VALIDATED FOR PRODUCTION DEPLOYMENT** (v1.6.0+)
10
10
-**Thread Safety**: Confirmed race-free through comprehensive concurrent testing
11
11
-**Performance**: 1.38M+ operations/second sustained, up to 1.5M peak with memory-efficient object pooling
12
12
-**International**: Full Unicode support for global SQL processing
@@ -471,7 +471,7 @@ These mistakes have been made before - avoid them:
471
471
- ✅ Allows for comprehensive testing and validation before tagging
472
472
- ✅ Enables rollback if critical issues are found before release
Copy file name to clipboardExpand all lines: docs/COMPARISON.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
# GoSQLX vs Alternatives: Comprehensive Comparison
2
2
3
-
**Last Updated:** 2025-11-28
4
-
**GoSQLX Version:** v1.5.1
3
+
**Last Updated:** 2025-12-11
4
+
**GoSQLX Version:** v1.6.0
5
5
6
6
This guide helps you choose the right SQL parsing tool for your needs. We provide an honest assessment of GoSQLX's strengths and limitations compared to popular alternatives.
7
7
@@ -311,6 +311,6 @@ See individual migration guides for code examples and patterns.
311
311
---
312
312
313
313
**Last Updated:** 2025-11-28
314
-
**Version:** v1.5.1
314
+
**Version:** v1.6.0
315
315
316
316
*Benchmark numbers are reproducible. See `/benchmarks` directory.*
Copy file name to clipboardExpand all lines: docs/PERFORMANCE_TUNING.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
# GoSQLX Performance Tuning Guide
2
2
3
-
**Last Updated:** 2025-11-17
4
-
**GoSQLX Version:** v1.5.1+
3
+
**Last Updated:** 2025-12-11
4
+
**GoSQLX Version:** v1.6.0
5
5
**Target Audience:** Production engineers, performance engineers, developers optimizing high-throughput systems
6
6
7
7
This comprehensive guide helps you achieve optimal performance with GoSQLX in production environments. We cover profiling techniques, object pool optimization, concurrent processing patterns, memory management, and benchmark-driven optimization.
@@ -26,7 +26,7 @@ This comprehensive guide helps you achieve optimal performance with GoSQLX in pr
26
26
27
27
## Performance Overview
28
28
29
-
### Baseline Performance (v1.5.1)
29
+
### Baseline Performance (v1.6.0)
30
30
31
31
GoSQLX delivers production-validated performance across multiple workloads:
v1.6.0 is a **100% backward compatible** major feature release. It adds comprehensive PostgreSQL support, a full Language Server Protocol implementation, VSCode extension, and significant performance optimizations.
16
+
17
+
### ✅ What's New
18
+
19
+
**PostgreSQL Extensions:**
20
+
- LATERAL JOIN support with LEFT/INNER/CROSS variants
0 commit comments