pgsql-parser 13.6.0 → 13.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -0
- package/README.md +11 -2
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [13.7.0](https://github.com/launchql/pgsql-parser/compare/pgsql-parser@13.6.0...pgsql-parser@13.7.0) (2023-12-15)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package pgsql-parser
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
# [13.6.0](https://github.com/launchql/pgsql-parser/compare/pgsql-parser@13.5.0...pgsql-parser@13.6.0) (2023-12-15)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package pgsql-parser
|
package/README.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
|
-
# pgsql-parser
|
|
2
|
-
|
|
1
|
+
# pgsql-parser
|
|
2
|
+
|
|
3
|
+
<p align="center" width="100%">
|
|
4
|
+
<a href="https://github.com/launchql/pgsql-parser/actions/workflows/run-tests.yaml">
|
|
5
|
+
<img height="20" src="https://github.com/launchql/pgsql-parser/actions/workflows/run-tests.yaml/badge.svg" />
|
|
6
|
+
</a>
|
|
7
|
+
<a href="https://www.npmjs.com/package/pgsql-parser"><img height="20" src="https://img.shields.io/npm/dt/pgsql-parser"></a>
|
|
8
|
+
<a href="https://www.npmjs.com/package/pgsql-parser"><img height="20" src="https://img.shields.io/npm/dw/pgsql-parser"/></a>
|
|
9
|
+
<a href="https://github.com/launchql/pgsql-parser/blob/main/LICENSE-MIT"><img height="20" src="https://img.shields.io/badge/license-MIT-blue.svg"/></a>
|
|
10
|
+
<a href="https://www.npmjs.com/package/pgsql-parser"><img height="20" src="https://img.shields.io/github/package-json/v/launchql/pgsql-parser?filename=packages%2Fparser%2Fpackage.json"/></a>
|
|
11
|
+
</p>
|
|
3
12
|
|
|
4
13
|
The real PostgreSQL parser for nodejs. The primary objective of this module is to provide symmetric parsing and deparsing of SQL statements. With this module you can modify parts of a SQL query statement and serialize the query tree back into a formatted SQL statement. It uses the *real* [PostgreSQL parser](https://github.com/pganalyze/libpg_query).
|
|
5
14
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pgsql-parser",
|
|
3
|
-
"version": "13.
|
|
3
|
+
"version": "13.7.0",
|
|
4
4
|
"description": "The real PostgreSQL query parser",
|
|
5
5
|
"author": "Dan Lynch <pyramation@gmail.com>",
|
|
6
6
|
"homepage": "https://github.com/launchql/pgsql-parser",
|
|
@@ -74,8 +74,8 @@
|
|
|
74
74
|
"@babel/runtime": "^7.11.2",
|
|
75
75
|
"libpg-query": "13.3.1",
|
|
76
76
|
"minimist": "^1.2.6",
|
|
77
|
-
"pgsql-deparser": "^13.
|
|
77
|
+
"pgsql-deparser": "^13.6.0",
|
|
78
78
|
"pgsql-enums": "^13.2.0"
|
|
79
79
|
},
|
|
80
|
-
"gitHead": "
|
|
80
|
+
"gitHead": "9bf23254077a235d1ec774657e2dfba93ef298f5"
|
|
81
81
|
}
|