Skip to content

Commit 8534689

Browse files
committed
1 parent 5745dc6 commit 8534689

File tree

14 files changed

+90
-15
lines changed

14 files changed

+90
-15
lines changed

packages/deparser/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,18 @@
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+
# [13.16.0](https://github.com/launchql/pgsql-parser/compare/[email protected]@13.16.0) (2025-06-21)
7+
8+
9+
### Bug Fixes
10+
11+
* support concurrently in DROP INDEX ([6d78dbe](https://github.com/launchql/pgsql-parser/commit/6d78dbe8cbc1b1ceb08aba5826edb50f7259ba01))
12+
* support create index if not exists ([60f309f](https://github.com/launchql/pgsql-parser/commit/60f309f6c83bf30ba7b6858dbf2afbbaf4b648c4))
13+
14+
15+
16+
17+
618
# [13.15.0](https://github.com/launchql/pgsql-parser/compare/[email protected]@13.15.0) (2024-04-04)
719

820
**Note:** Version bump only for package pgsql-deparser

packages/deparser/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "pgsql-deparser",
3-
"version": "13.15.0",
3+
"version": "13.16.0",
44
"description": "PostgreSQL AST Deparser",
55
"author": "Dan Lynch <[email protected]>",
66
"homepage": "https://github.com/launchql/pgsql-parser",
@@ -74,16 +74,16 @@
7474
"esprima": "4.0.1",
7575
"glob": "8.0.3",
7676
"jest": "^29.7.0",
77-
"pgsql-parser": "^13.16.0",
77+
"pgsql-parser": "^13.17.0",
7878
"prettier": "^2.8.7",
7979
"rimraf": "5.0.5",
8080
"ts-jest": "^29.1.0",
8181
"ts-node": "10.9.2",
8282
"typescript": "^5.0.4"
8383
},
8484
"dependencies": {
85-
"@pgsql/types": "^13.9.0",
85+
"@pgsql/types": "^13.10.0",
8686
"dotty": "^0.1.0",
87-
"pgsql-enums": "^13.10.0"
87+
"pgsql-enums": "^13.11.0"
8888
}
8989
}

packages/enums/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
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+
# [13.10.0](https://github.com/launchql/pgsql-parser/compare/@pgsql/[email protected]...@pgsql/[email protected]) (2025-06-21)
7+
8+
9+
### Bug Fixes
10+
11+
* convert enums from JSON to TS ([ab32da2](https://github.com/launchql/pgsql-parser/commit/ab32da2dbd7d1ec4866ffa041da79a270bc75b1e))
12+
13+
14+
15+
16+
617
# [13.9.0](https://github.com/launchql/pgsql-parser/compare/@pgsql/[email protected]...@pgsql/[email protected]) (2024-04-04)
718

819
**Note:** Version bump only for package @pgsql/enums

packages/enums/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pgsql/enums",
3-
"version": "13.9.0",
3+
"version": "13.10.0",
44
"description": "PostgreSQL AST enums for pgsql-parser",
55
"author": "Dan Lynch <[email protected]>",
66
"homepage": "https://github.com/launchql/pgsql-parser",

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+
# [16.2.0](https://github.com/launchql/pgsql-parser/compare/@pgsql/[email protected]...@pgsql/[email protected]) (2025-06-21)
7+
8+
**Note:** Version bump only for package @pgsql/parser
9+
10+
11+
12+
13+
614
# [16.1.0](https://github.com/launchql/pgsql-parser/compare/@pgsql/[email protected]...@pgsql/[email protected]) (2024-05-03)
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": "16.1.0",
3+
"version": "16.2.0",
44
"description": "The real PostgreSQL query parser",
55
"author": "Dan Lynch <[email protected]>",
66
"homepage": "https://github.com/launchql/pgsql-parser",
@@ -84,7 +84,7 @@
8484
"typescript": "^5.0.4"
8585
},
8686
"dependencies": {
87-
"@pgsql/types": "^13.9.0",
87+
"@pgsql/types": "^13.10.0",
8888
"libpg-query": "16.2.0",
8989
"minimist": "^1.2.6"
9090
}

packages/pgsql-enums/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
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+
# [13.11.0](https://github.com/launchql/pgsql-parser/compare/[email protected]@13.11.0) (2025-06-21)
7+
8+
9+
### Bug Fixes
10+
11+
* convert enums from JSON to TS ([ab32da2](https://github.com/launchql/pgsql-parser/commit/ab32da2dbd7d1ec4866ffa041da79a270bc75b1e))
12+
13+
14+
15+
16+
617
# [13.10.0](https://github.com/launchql/pgsql-parser/compare/[email protected]@13.10.0) (2024-04-04)
718

819
**Note:** Version bump only for package pgsql-enums

packages/pgsql-enums/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "pgsql-enums",
3-
"version": "13.10.0",
3+
"version": "13.11.0",
44
"description": "PostgreSQL AST enums for deparsing",
55
"author": "Dan Lynch <[email protected]>",
66
"homepage": "https://github.com/launchql/pgsql-parser",

packages/pgsql-parser/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
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+
# [13.17.0](https://github.com/launchql/pgsql-parser/compare/[email protected]@13.17.0) (2025-06-21)
7+
8+
9+
### Bug Fixes
10+
11+
* support concurrently in DROP INDEX ([6d78dbe](https://github.com/launchql/pgsql-parser/commit/6d78dbe8cbc1b1ceb08aba5826edb50f7259ba01))
12+
13+
14+
15+
16+
617
# [13.16.0](https://github.com/launchql/pgsql-parser/compare/[email protected]@13.16.0) (2024-04-04)
718

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

packages/pgsql-parser/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "pgsql-parser",
3-
"version": "13.16.0",
3+
"version": "13.17.0",
44
"description": "The real PostgreSQL query parser",
55
"author": "Dan Lynch <[email protected]>",
66
"homepage": "https://github.com/launchql/pgsql-parser",
@@ -86,7 +86,7 @@
8686
"dependencies": {
8787
"libpg-query": "13.3.2",
8888
"minimist": "^1.2.6",
89-
"pgsql-deparser": "^13.15.0",
90-
"pgsql-enums": "^13.10.0"
89+
"pgsql-deparser": "^13.16.0",
90+
"pgsql-enums": "^13.11.0"
9191
}
9292
}

0 commit comments

Comments
 (0)