@yawlabs/postgres-mcp 0.6.1 → 0.6.3
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 +23 -0
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,29 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.6.2] - 2026-05-15
|
|
11
|
+
|
|
12
|
+
### Infrastructure
|
|
13
|
+
- Closed integration / unit coverage gaps surfaced by the coverage audit:
|
|
14
|
+
`pg_kill` positive paths (cancel + terminate against an out-of-band
|
|
15
|
+
`pg.Client` backend) and `signaled=false` on a non-postgres PID;
|
|
16
|
+
`pg_advisor.public_tables_without_rls` and `sequence_exhaustion`
|
|
17
|
+
positive cases (the latter pins the post-0.5.2 numeric-precision
|
|
18
|
+
formula via a fixture sequence at 80%); `pg_unused_indexes` excluding
|
|
19
|
+
unique + primary indexes (data-integrity hazard if regressed);
|
|
20
|
+
`pg_search_columns` case-insensitive ILIKE; `pg_list_views` with
|
|
21
|
+
`includeMaterialized=false`; `pg_list_roles.member_of` as a real
|
|
22
|
+
JS `string[]` (0.3.1 regression guard via grouped fixture roles);
|
|
23
|
+
`typeNameCache` miss-fill on a CREATE TYPE issued mid-session;
|
|
24
|
+
`safeResolveTypeNames` fallback contract via a stub `PoolClient`
|
|
25
|
+
whose `.query` rejects (helper exported with an
|
|
26
|
+
`@internal -- for testing` note). Fixtures grew a materialized view,
|
|
27
|
+
a `near_full_seq` sequence, and two cluster-scoped roles; teardown
|
|
28
|
+
drops the roles in member-before-group order.
|
|
29
|
+
- No behavior changes for tool consumers.
|
|
30
|
+
|
|
31
|
+
## [0.6.1] - 2026-05-15
|
|
32
|
+
|
|
10
33
|
### Fixed
|
|
11
34
|
- `pg_advisor` `tables_without_primary_key` now includes partitioned-table
|
|
12
35
|
parents (`relkind='p'`) alongside plain heap tables. A partitioned table
|
package/dist/index.js
CHANGED
|
@@ -37547,7 +37547,7 @@ function compareVersions(a, b) {
|
|
|
37547
37547
|
}
|
|
37548
37548
|
|
|
37549
37549
|
// src/index.ts
|
|
37550
|
-
var version2 = true ? "0.6.
|
|
37550
|
+
var version2 = true ? "0.6.3" : (await null).createRequire(import.meta.url)("../package.json").version;
|
|
37551
37551
|
var subcommand = process.argv[2];
|
|
37552
37552
|
if (subcommand === "version" || subcommand === "--version") {
|
|
37553
37553
|
console.log(version2);
|
package/package.json
CHANGED