pgsql-deparser 17.8.4 → 17.8.5
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/README.md +9 -4
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -80,12 +80,17 @@ npm install pgsql-deparser
|
|
|
80
80
|
While we highly recommend using PG17, for PostgreSQL versions 13-16, use the version-specific packages:
|
|
81
81
|
|
|
82
82
|
```sh
|
|
83
|
-
npm install pgsql-deparser@
|
|
84
|
-
npm install pgsql-deparser@
|
|
85
|
-
npm install pgsql-deparser@
|
|
86
|
-
npm install pgsql-deparser@
|
|
83
|
+
npm install pgsql-deparser@pg13 # PostgreSQL 13
|
|
84
|
+
npm install pgsql-deparser@pg14 # PostgreSQL 14
|
|
85
|
+
npm install pgsql-deparser@pg15 # PostgreSQL 15
|
|
86
|
+
npm install pgsql-deparser@pg16 # PostgreSQL 16
|
|
87
87
|
```
|
|
88
88
|
|
|
89
|
+
**Version Status:**
|
|
90
|
+
- **PG17**: 🚀 Recommended (stable + modern AST)
|
|
91
|
+
- **PG14-16**: ⚠️ Experimental (modern AST, hardening in progress)
|
|
92
|
+
- **PG13**: Stable (legacy AST format)
|
|
93
|
+
|
|
89
94
|
## Options
|
|
90
95
|
|
|
91
96
|
The deparser accepts optional configuration for formatting and output control:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pgsql-deparser",
|
|
3
|
-
"version": "17.8.
|
|
3
|
+
"version": "17.8.5",
|
|
4
4
|
"author": "Dan Lynch <pyramation@gmail.com>",
|
|
5
5
|
"description": "PostgreSQL AST Deparser",
|
|
6
6
|
"main": "index.js",
|
|
@@ -58,5 +58,5 @@
|
|
|
58
58
|
"dependencies": {
|
|
59
59
|
"@pgsql/types": "^17.6.1"
|
|
60
60
|
},
|
|
61
|
-
"gitHead": "
|
|
61
|
+
"gitHead": "4024140162b786638a20ac4d1d0ec0bcbbed7ccc"
|
|
62
62
|
}
|