@yawlabs/postgres-mcp 0.6.10 → 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 +9 -38
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,54 +7,25 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
-
## [0.6.
|
|
10
|
+
## [0.6.11] - 2026-05-16
|
|
11
11
|
|
|
12
12
|
### Infrastructure
|
|
13
|
-
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
displayed text), so two markers with different aliases collapse to
|
|
20
|
-
one entry and the ordering assertion has nothing to compare. Local
|
|
21
|
-
WSL clusters differentiate; CI doesn't. The alias-shadowing trap at
|
|
22
|
-
`stats.ts:60-67` remains documented at the call site and the other
|
|
23
|
-
six coverage additions are unaffected.
|
|
24
|
-
|
|
25
|
-
## [0.6.9] - 2026-05-16 [UNPUBLISHED]
|
|
26
|
-
|
|
27
|
-
Tagged but never published to npm -- the pg_top_queries ordering test
|
|
28
|
-
still failed in CI even after switching marker queries from cursor-
|
|
29
|
-
wrapped handler calls to raw `runInternal`. Root cause was column-alias
|
|
30
|
-
jumbling in pg_stat_statements; the test was removed in 0.6.10.
|
|
31
|
-
|
|
32
|
-
## [0.6.8] - 2026-05-16 [UNPUBLISHED]
|
|
33
|
-
|
|
34
|
-
Tagged but never published to npm -- the v0.6.8 attempt at the
|
|
35
|
-
pg_top_queries test still depended on `pg_stat_statements.track_utility`
|
|
36
|
-
being on, which the CI image's defaults don't guarantee. Shipped in 0.6.9.
|
|
37
|
-
|
|
38
|
-
## [0.6.7] - 2026-05-16 [UNPUBLISHED]
|
|
39
|
-
|
|
40
|
-
Tagged but never published to npm -- the initial coverage additions
|
|
41
|
-
included an ordering test for pg_top_queries that failed in CI on a
|
|
42
|
-
test-stability issue (not a code issue). The other six coverage
|
|
43
|
-
additions shipped in 0.6.10.
|
|
44
|
-
|
|
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.
|
|
45
19
|
|
|
20
|
+
## [0.6.10] - 2026-05-16
|
|
46
21
|
|
|
47
22
|
### Infrastructure
|
|
48
|
-
- Closed
|
|
23
|
+
- Closed six coverage gaps surfaced by a coverage audit. No behavior
|
|
49
24
|
changes; each test pins a branch the existing suite exercised on only
|
|
50
25
|
one side, or a structural property a regression could silently violate:
|
|
51
26
|
- `pg_inspect_locks` real ACCESS EXCLUSIVE contention with two side
|
|
52
27
|
clients. Covers the LATERAL `unnest(pg_blocking_pids(...))` and the
|
|
53
28
|
per-(blocked, blocker) row shape the v0.6.6 description claims.
|
|
54
|
-
- `pg_top_queries` `orderBy: 'calls'` numeric (not lexical) ordering.
|
|
55
|
-
A 12-call query must rank above a 2-call query -- pins the
|
|
56
|
-
alias-shadowing fix where unqualified `calls` would resolve to the
|
|
57
|
-
text output alias and sort lexically (`"2" > "12"`).
|
|
58
29
|
- `pg_table_bloat` `minDeadRatio` threshold filter, as a relative
|
|
59
30
|
property (filtered rows are at or above the threshold; baseline rows
|
|
60
31
|
below the threshold are absent from filtered). Order-independent.
|
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