@yawlabs/postgres-mcp 0.6.6 → 0.6.11
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 +29 -0
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,35 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.6.11] - 2026-05-16
|
|
11
|
+
|
|
12
|
+
### Infrastructure
|
|
13
|
+
- Tightened the `pg_inspect_locks` real-contention test: replaced the
|
|
14
|
+
500ms hardcoded sleep with a 5s polling loop on `pg_blocking_pids()`
|
|
15
|
+
(avoids flakes on slow CI hosts and wasted time on fast ones), and
|
|
16
|
+
moved the `waiterPromise` await into the `finally` block so an
|
|
17
|
+
assertion failure mid-test still drains the queued waiter query
|
|
18
|
+
rather than leaving a floating promise.
|
|
19
|
+
|
|
20
|
+
## [0.6.10] - 2026-05-16
|
|
21
|
+
|
|
22
|
+
### Infrastructure
|
|
23
|
+
- Closed six coverage gaps surfaced by a coverage audit. No behavior
|
|
24
|
+
changes; each test pins a branch the existing suite exercised on only
|
|
25
|
+
one side, or a structural property a regression could silently violate:
|
|
26
|
+
- `pg_inspect_locks` real ACCESS EXCLUSIVE contention with two side
|
|
27
|
+
clients. Covers the LATERAL `unnest(pg_blocking_pids(...))` and the
|
|
28
|
+
per-(blocked, blocker) row shape the v0.6.6 description claims.
|
|
29
|
+
- `pg_table_bloat` `minDeadRatio` threshold filter, as a relative
|
|
30
|
+
property (filtered rows are at or above the threshold; baseline rows
|
|
31
|
+
below the threshold are absent from filtered). Order-independent.
|
|
32
|
+
- `pg_table_bloat` with-schema filter -- no cross-schema leakage when
|
|
33
|
+
scoped.
|
|
34
|
+
- `pg_seq_scan_tables` and `pg_unused_indexes` no-schema branch --
|
|
35
|
+
spans user schemas and excludes `pg_*` / `information_schema`.
|
|
36
|
+
- `pg_describe_table` on a materialized view -- `kind='materialized_view'`
|
|
37
|
+
branch of the relkind CASE.
|
|
38
|
+
|
|
10
39
|
## [0.6.6] - 2026-05-16
|
|
11
40
|
|
|
12
41
|
### Docs
|
package/dist/index.js
CHANGED
|
@@ -37550,7 +37550,7 @@ function compareVersions(a, b) {
|
|
|
37550
37550
|
}
|
|
37551
37551
|
|
|
37552
37552
|
// src/index.ts
|
|
37553
|
-
var version2 = true ? "0.6.
|
|
37553
|
+
var version2 = true ? "0.6.11" : (await null).createRequire(import.meta.url)("../package.json").version;
|
|
37554
37554
|
var subcommand = process.argv[2];
|
|
37555
37555
|
if (subcommand === "version" || subcommand === "--version") {
|
|
37556
37556
|
console.log(version2);
|
package/package.json
CHANGED