pgsql-parser 17.9.6 → 17.9.7

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 (2) hide show
  1. package/README.md +3 -0
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -138,6 +138,9 @@ Built on the excellent work of several contributors:
138
138
 
139
139
  ## Related
140
140
 
141
+ * [pgpm](https://pgpm.dev): A Postgres Package Manager that brings modular development to PostgreSQL with reusable packages, deterministic migrations, recursive dependency resolution, and tag-aware versioning.
142
+ * [pgsql-test](https://www.npmjs.com/package/pgsql-test): Instant, isolated PostgreSQL databases for each test with automatic transaction rollbacks, context switching, and clean seeding for fast, reliable database testing.
143
+ * [pgsql-seed](https://www.npmjs.com/package/pgsql-seed): PostgreSQL seeding utilities for CSV, JSON, SQL data loading, and pgpm deployment.
141
144
  * [pgsql-parser](https://www.npmjs.com/package/pgsql-parser): The real PostgreSQL parser for Node.js, providing symmetric parsing and deparsing of SQL statements with actual PostgreSQL parser integration.
142
145
  * [pgsql-deparser](https://www.npmjs.com/package/pgsql-deparser): A streamlined tool designed for converting PostgreSQL ASTs back into SQL queries, focusing solely on deparser functionality to complement `pgsql-parser`.
143
146
  * [@pgsql/parser](https://www.npmjs.com/package/@pgsql/parser): Multi-version PostgreSQL parser with dynamic version selection at runtime, supporting PostgreSQL 15, 16, and 17 in a single package.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pgsql-parser",
3
- "version": "17.9.6",
3
+ "version": "17.9.7",
4
4
  "author": "Constructive <developers@constructive.io>",
5
5
  "description": "The real PostgreSQL query parser",
6
6
  "main": "index.js",
@@ -43,10 +43,10 @@
43
43
  "dependencies": {
44
44
  "@pgsql/types": "^17.6.2",
45
45
  "libpg-query": "17.7.3",
46
- "pgsql-deparser": "17.15.1"
46
+ "pgsql-deparser": "17.15.2"
47
47
  },
48
48
  "devDependencies": {
49
49
  "makage": "^0.1.8"
50
50
  },
51
- "gitHead": "94ed53491da04b82adca48f9e323630ed0138031"
51
+ "gitHead": "e5fdba1e3a67157bb5cab8ab40741f6f206d71b3"
52
52
  }