@yawlabs/postgres-mcp 0.6.14 → 0.6.15

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 CHANGED
@@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.6.15] - 2026-05-16
11
+
12
+ ### Docs
13
+ - `RunHooks` interface in `api.ts` now documents that `__pgmcp_sp` is a
14
+ reserved savepoint name. `runUserQueryBounded` opens and releases that
15
+ savepoint around the user SQL; a hook that opens a savepoint with the
16
+ same name would be unwound by the inner `RELEASE`. Today no hook collides
17
+ -- this is a contract note for future hook authors. Closes #8.
18
+
10
19
  ## [0.6.14] - 2026-05-16
11
20
 
12
21
  ### Security
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.14" : (await null).createRequire(import.meta.url)("../package.json").version;
37613
+ var version2 = true ? "0.6.15" : (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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yawlabs/postgres-mcp",
3
- "version": "0.6.14",
3
+ "version": "0.6.15",
4
4
  "mcpName": "io.github.YawLabs/postgres-mcp",
5
5
  "description": "PostgreSQL MCP server - query, schema introspection, explain, and health checks for AI assistants",
6
6
  "license": "MIT",