pgsql-parser 13.5.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.
Files changed (3) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/README.md +12 -2
  3. package/package.json +7 -7
package/CHANGELOG.md CHANGED
@@ -3,6 +3,22 @@
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
+
14
+ # [13.6.0](https://github.com/launchql/pgsql-parser/compare/pgsql-parser@13.5.0...pgsql-parser@13.6.0) (2023-12-15)
15
+
16
+ **Note:** Version bump only for package pgsql-parser
17
+
18
+
19
+
20
+
21
+
6
22
  # [13.5.0](https://github.com/pyramation/pgsql-parser/compare/pgsql-parser@13.4.1...pgsql-parser@13.5.0) (2023-03-15)
7
23
 
8
24
  **Note:** Version bump only for package pgsql-parser
package/README.md CHANGED
@@ -1,4 +1,14 @@
1
- # pgsql-parser [![tests](https://github.com/pyramation/pgsql-parser/actions/workflows/run-tests.yaml/badge.svg)](https://github.com/pyramation/pgsql-parser/actions/workflows/run-tests.yaml)
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>
2
12
 
3
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).
4
14
 
@@ -102,7 +112,7 @@ Our latest is built with `13-latest` branch from libpg_query
102
112
  | 13 | 13-latest | Active development | `latest`
103
113
  | 12 | (n/a) | Not supported |
104
114
  | 11 | (n/a) | Not supported |
105
- | 10 | 10-latest | Not supported | `@1.3.1` ([tree](https://github.com/pyramation/pgsql-parser/tree/39b7b1adc8914253226e286a48105785219a81ca)) |
115
+ | 10 | 10-latest | Not supported | `@1.3.1` ([tree](https://github.com/launchql/pgsql-parser/tree/39b7b1adc8914253226e286a48105785219a81ca)) |
106
116
 
107
117
 
108
118
  ## Resources
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "pgsql-parser",
3
- "version": "13.5.0",
3
+ "version": "13.7.0",
4
4
  "description": "The real PostgreSQL query parser",
5
5
  "author": "Dan Lynch <pyramation@gmail.com>",
6
- "homepage": "https://github.com/pyramation/pgsql-parser",
6
+ "homepage": "https://github.com/launchql/pgsql-parser",
7
7
  "license": "SEE LICENSE IN LICENSE",
8
8
  "main": "main/index.js",
9
9
  "module": "module/index.js",
@@ -32,7 +32,7 @@
32
32
  ],
33
33
  "repository": {
34
34
  "type": "git",
35
- "url": "https://github.com/pyramation/pgsql-parser"
35
+ "url": "https://github.com/launchql/pgsql-parser"
36
36
  },
37
37
  "scripts": {
38
38
  "build:main": "cross-env BABEL_ENV=production babel src --out-dir main --delete-dir-on-start",
@@ -47,7 +47,7 @@
47
47
  "test:debug": "node --inspect node_modules/.bin/jest --runInBand"
48
48
  },
49
49
  "bugs": {
50
- "url": "https://github.com/pyramation/pgsql-parser/issues"
50
+ "url": "https://github.com/launchql/pgsql-parser/issues"
51
51
  },
52
52
  "devDependencies": {
53
53
  "@babel/cli": "7.11.6",
@@ -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.4.0",
78
- "pgsql-enums": "^13.1.3"
77
+ "pgsql-deparser": "^13.6.0",
78
+ "pgsql-enums": "^13.2.0"
79
79
  },
80
- "gitHead": "3d78dc66d800eb8cdf76851337f27b972160fb41"
80
+ "gitHead": "9bf23254077a235d1ec774657e2dfba93ef298f5"
81
81
  }