pgsql-parser 17.7.1 → 17.7.2

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 +1 -1
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -34,7 +34,7 @@ npm install pgsql-parser
34
34
 
35
35
  The package exports both async and sync methods. Async methods handle initialization automatically, while sync methods require explicit initialization.
36
36
 
37
- ⚠️ If you don't need the parser functionality, consider using the TS-only (no WASM, zero dependencies) [`pgsql-deparser`](https://github.com/launchql/pgsql-parser/tree/main/packages/deparser) for a super fast, lightweight deparser. Battle-tested with 23,000+ SQL statements 🚀
37
+ ⚠️ If you don't need the parser functionality, consider using the TS-only (no WASM, zero runtime dependencies) [`pgsql-deparser`](https://github.com/launchql/pgsql-parser/tree/main/packages/deparser) for a super fast, lightweight deparser. Battle-tested with 23,000+ SQL statements 🚀
38
38
 
39
39
  ### Async Methods (Recommended)
40
40
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pgsql-parser",
3
- "version": "17.7.1",
3
+ "version": "17.7.2",
4
4
  "author": "Dan Lynch <pyramation@gmail.com>",
5
5
  "description": "The real PostgreSQL query parser",
6
6
  "main": "index.js",
@@ -43,5 +43,5 @@
43
43
  "libpg-query": "17.5.2",
44
44
  "pgsql-deparser": "^17.8.1"
45
45
  },
46
- "gitHead": "cffd419f76ad6975c89e7e4f79972f7f27b0eab7"
46
+ "gitHead": "bf2e281d50cb6bc05511ab1a6b6390fb5c2cbcff"
47
47
  }