Skip to content

Commit db3e424

Browse files
committed
1 parent 009d51a commit db3e424

File tree

10 files changed

+290
-12
lines changed

10 files changed

+290
-12
lines changed

packages/deparser/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.8.4](https://github.com/launchql/pgsql-parser/compare/[email protected]@17.8.4) (2025-07-01)
7+
8+
**Note:** Version bump only for package pgsql-deparser
9+
10+
11+
12+
13+
614
## [17.8.3](https://github.com/launchql/pgsql-parser/compare/[email protected]@17.8.3) (2025-06-27)
715

816

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.3",
3+
"version": "17.8.4",
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.6](https://github.com/launchql/pgsql-parser/compare/[email protected]@17.7.6) (2025-07-01)
7+
8+
**Note:** Version bump only for package pgsql-parser
9+
10+
11+
12+
13+
614
## [17.7.5](https://github.com/launchql/pgsql-parser/compare/[email protected]@17.7.5) (2025-06-27)
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.5",
3+
"version": "17.7.6",
44
"author": "Dan Lynch <[email protected]>",
55
"description": "The real PostgreSQL query parser",
66
"main": "index.js",
@@ -43,6 +43,6 @@
4343
"dependencies": {
4444
"@pgsql/types": "^17.6.1",
4545
"libpg-query": "17.5.5",
46-
"pgsql-deparser": "^17.8.3"
46+
"pgsql-deparser": "^17.8.4"
4747
}
4848
}

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.6](https://github.com/launchql/pgsql-parser/compare/@pgsql/[email protected]...@pgsql/[email protected]) (2025-07-01)
7+
8+
**Note:** Version bump only for package @pgsql/cli
9+
10+
11+
12+
13+
614
## [1.31.5](https://github.com/launchql/pgsql-parser/compare/@pgsql/[email protected]...@pgsql/[email protected]) (2025-06-27)
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.5",
3+
"version": "1.31.6",
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.3",
57-
"pgsql-parser": "^17.7.5"
56+
"pgsql-deparser": "^17.8.4",
57+
"pgsql-parser": "^17.7.6"
5858
}
5959
}

packages/transform/CHANGELOG.md

Lines changed: 247 additions & 0 deletions
Large diffs are not rendered by default.

packages/transform/package.json

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pgsql/transform",
3-
"version": "17.6.3",
3+
"version": "17.7.0",
44
"author": "Dan Lynch <[email protected]>",
55
"description": "Transform PostgreSQL AST types for pgsql-parser",
66
"main": "index.js",
@@ -26,7 +26,6 @@
2626
"build": "npm run build:proto && npm run clean && tsc && tsc -p tsconfig.esm.json && npm run copy",
2727
"build:dev": "npm run clean && tsc --declarationMap && tsc -p tsconfig.esm.json && npm run copy",
2828
"build:proto": "ts-node scripts/pg-proto-parser",
29-
3029
"lint": "eslint . --fix",
3130
"test": "jest",
3231
"test:watch": "jest --watch",
@@ -35,8 +34,8 @@
3534
},
3635
"devDependencies": {
3736
"@pgsql/parser": "^1.1.4",
38-
"pgsql-deparser": "^17.8.1",
39-
"pg-proto-parser": "^1.29.1"
37+
"pg-proto-parser": "^1.29.1",
38+
"pgsql-deparser": "^17.8.4"
4039
},
4140
"keywords": []
4241
}

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.5](https://github.com/launchql/pgsql-parser/compare/@pgsql/[email protected]...@pgsql/[email protected]) (2025-07-01)
7+
8+
**Note:** Version bump only for package @pgsql/utils
9+
10+
11+
12+
13+
614
## [17.7.4](https://github.com/launchql/pgsql-parser/compare/@pgsql/[email protected]...@pgsql/[email protected]) (2025-06-27)
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.4",
3+
"version": "17.7.5",
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.3"
35+
"pgsql-deparser": "^17.8.4"
3636
},
3737
"dependencies": {
3838
"@pgsql/types": "^17.6.1",

0 commit comments

Comments
 (0)