@yawlabs/postgres-mcp 0.6.15 → 0.6.17
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 +16 -0
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.6.16] - 2026-05-18
|
|
11
|
+
|
|
12
|
+
### Tests
|
|
13
|
+
- The `pg_replication_status` `_warnings` integration test (which
|
|
14
|
+
`REVOKE`s `EXECUTE ON pg_current_wal_lsn()` from `PUBLIC` to force a
|
|
15
|
+
permission-denied path) now scopes the REVOKE/GRANT pair to a nested
|
|
16
|
+
describe's `before` / `after` hooks instead of an inline try/catch.
|
|
17
|
+
The previous shape left the cluster's `pg_current_wal_lsn()`
|
|
18
|
+
ungrantable to `PUBLIC` if cleanup itself raised (e.g. a
|
|
19
|
+
`shutdown()` throw between the URL restore and the GRANT), which
|
|
20
|
+
would degrade unrelated tests on the same cluster. node:test runs
|
|
21
|
+
`after()` whenever the matching `before()` ran -- assertion failure,
|
|
22
|
+
body throw, or future second `it()` in the block. No production
|
|
23
|
+
code change. Verified against PG17 and PG18 via the WSL integration
|
|
24
|
+
matrix.
|
|
25
|
+
|
|
10
26
|
## [0.6.15] - 2026-05-16
|
|
11
27
|
|
|
12
28
|
### Docs
|
package/dist/index.js
CHANGED
|
@@ -37610,7 +37610,7 @@ function compareVersions(a, b) {
|
|
|
37610
37610
|
}
|
|
37611
37611
|
|
|
37612
37612
|
// src/index.ts
|
|
37613
|
-
var version2 = true ? "0.6.
|
|
37613
|
+
var version2 = true ? "0.6.17" : (await null).createRequire(import.meta.url)("../package.json").version;
|
|
37614
37614
|
var subcommand = process.argv[2];
|
|
37615
37615
|
if (subcommand === "version" || subcommand === "--version") {
|
|
37616
37616
|
console.log(version2);
|
package/package.json
CHANGED