Skip to content

Commit de35365

Browse files
committed
chore(release): publish
- [email protected] - [email protected] - @pgsql/[email protected] - @pgsql/[email protected]
1 parent dfc17a3 commit de35365

File tree

8 files changed

+51
-8
lines changed

8 files changed

+51
-8
lines changed

packages/deparser/CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,25 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [17.8.3](https://github.com/launchql/pgsql-parser/compare/[email protected]@17.8.3) (2025-06-27)
7+
8+
9+
### Bug Fixes
10+
11+
* improve CREATE TABLE constraint indentation using proper context indentLevel ([22d5915](https://github.com/launchql/pgsql-parser/commit/22d5915933313a2f5dfca998dbde7a2cb59e2a2e))
12+
* update formatWindowFrame and deparseOperatorName to accept context parameters ([18236c0](https://github.com/launchql/pgsql-parser/commit/18236c0c071080084862997eb1d66bda67d40c66))
13+
* update RenameStmt to pass objtype when spawning AlterTypeStmt context ([14326c3](https://github.com/launchql/pgsql-parser/commit/14326c3c79587fdab1be6103fe8c054a15ca315f))
14+
15+
16+
### Features
17+
18+
* improve indentation for boolean expressions and SELECT clauses ([6cc2f4e](https://github.com/launchql/pgsql-parser/commit/6cc2f4e4566541c671d5ffc42625d4c47ea76aa5))
19+
* make SqlFormatter private and add context-aware indentation ([2a76b3d](https://github.com/launchql/pgsql-parser/commit/2a76b3d3f7e63837d9a3d3bc5a04d16a519b9278))
20+
21+
22+
23+
24+
625
## [17.8.2](https://github.com/launchql/pgsql-parser/compare/[email protected]@17.8.2) (2025-06-26)
726

827

packages/deparser/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "pgsql-deparser",
3-
"version": "17.8.2",
3+
"version": "17.8.3",
44
"author": "Dan Lynch <[email protected]>",
55
"description": "PostgreSQL AST Deparser",
66
"main": "index.js",

packages/parser/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [17.7.4](https://github.com/launchql/pgsql-parser/compare/[email protected]@17.7.4) (2025-06-27)
7+
8+
**Note:** Version bump only for package pgsql-parser
9+
10+
11+
12+
13+
614
## [17.7.3](https://github.com/launchql/pgsql-parser/compare/[email protected]@17.7.3) (2025-06-26)
715

816
**Note:** Version bump only for package pgsql-parser

packages/parser/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "pgsql-parser",
3-
"version": "17.7.3",
3+
"version": "17.7.4",
44
"author": "Dan Lynch <[email protected]>",
55
"description": "The real PostgreSQL query parser",
66
"main": "index.js",
@@ -42,6 +42,6 @@
4242
"dependencies": {
4343
"@pgsql/types": "^17.6.1",
4444
"libpg-query": "17.5.5",
45-
"pgsql-deparser": "^17.8.2"
45+
"pgsql-deparser": "^17.8.3"
4646
}
4747
}

packages/pgsql-cli/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [1.31.4](https://github.com/launchql/pgsql-parser/compare/@pgsql/[email protected]...@pgsql/[email protected]) (2025-06-27)
7+
8+
**Note:** Version bump only for package @pgsql/cli
9+
10+
11+
12+
13+
614
## [1.31.3](https://github.com/launchql/pgsql-parser/compare/@pgsql/[email protected]...@pgsql/[email protected]) (2025-06-26)
715

816
**Note:** Version bump only for package @pgsql/cli

packages/pgsql-cli/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pgsql/cli",
3-
"version": "1.31.3",
3+
"version": "1.31.4",
44
"description": "Unified CLI for PostgreSQL AST parsing, deparsing, and code generation",
55
"author": "Dan Lynch <[email protected]>",
66
"main": "index.js",
@@ -53,7 +53,7 @@
5353
"mkdirp": "3.0.1",
5454
"nested-obj": "^0.0.1",
5555
"pg-proto-parser": "^1.29.1",
56-
"pgsql-deparser": "^17.8.2",
57-
"pgsql-parser": "^17.7.3"
56+
"pgsql-deparser": "^17.8.3",
57+
"pgsql-parser": "^17.7.4"
5858
}
5959
}

packages/utils/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [17.7.4](https://github.com/launchql/pgsql-parser/compare/@pgsql/[email protected]...@pgsql/[email protected]) (2025-06-27)
7+
8+
**Note:** Version bump only for package @pgsql/utils
9+
10+
11+
12+
13+
614
## [17.7.3](https://github.com/launchql/pgsql-parser/compare/@pgsql/[email protected]...@pgsql/[email protected]) (2025-06-26)
715

816
**Note:** Version bump only for package @pgsql/utils

packages/utils/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pgsql/utils",
3-
"version": "17.7.3",
3+
"version": "17.7.4",
44
"author": "Dan Lynch <[email protected]>",
55
"description": "PostgreSQL AST utils for pgsql-parser",
66
"main": "index.js",
@@ -32,7 +32,7 @@
3232
},
3333
"devDependencies": {
3434
"pg-proto-parser": "^1.29.1",
35-
"pgsql-deparser": "^17.8.2"
35+
"pgsql-deparser": "^17.8.3"
3636
},
3737
"dependencies": {
3838
"@pgsql/types": "^17.6.1",

0 commit comments

Comments
 (0)