Skip to content

Commit a1f21ad

Browse files
committed
bump version to 0.1.10
1 parent e382ada commit a1f21ad

2 files changed

Lines changed: 12 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
11
# Changelog
22

33

4+
## 0.1.10 - 2026.04.22
5+
### Added
6+
- Named `WINDOW` clause: `SELECT ... WINDOW w AS (...)` with multiple windows, window inheritance, and inline-plus-named mixing. Matches QuestDB's Java parser (introduced in questdb/questdb#6746). [#24](https://github.com/questdb/sql-parser/pull/24)
7+
- Trailing comma accepted in select lists: `SELECT a, b, FROM t` now parses cleanly. [#24](https://github.com/questdb/sql-parser/pull/24)
8+
9+
### Fixed
10+
- Named window reference in `OVER w` no longer loses the window name when round-tripping through the AST and `toSql`. [#24](https://github.com/questdb/sql-parser/pull/24)
11+
- Autocomplete no longer hangs on malformed input (unbalanced parens, unsupported clauses, stray terminators). A path-count budget in the content-assist DFS aborts pathological searches in <200ms and returns no suggestions, instead of freezing the UI. [#24](https://github.com/questdb/sql-parser/pull/24)
12+
- `WINDOW` keyword now shows up in autocomplete as a standalone clause keyword alongside `WINDOW JOIN` after a `FROM` clause. [#24](https://github.com/questdb/sql-parser/pull/24)
13+
14+
415
## 0.1.9 - 2026.04.21
516
### Added
617
- `bar` and `sparkline` functions [#22](https://github.com/questdb/sql-parser/pull/22)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@questdb/sql-parser",
3-
"version": "0.1.9",
3+
"version": "0.1.10",
44
"description": "SQL parser for QuestDB syntax using Chevrotain",
55
"type": "module",
66
"main": "dist/index.cjs",

0 commit comments

Comments
 (0)