@yawlabs/postgres-mcp 0.4.1 → 0.5.0
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 -0
- package/dist/index.js +1 -1
- package/package.json +2 -2
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.5.0] - 2026-05-04
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
- **BREAKING:** `engines.node` raised from `>=18` to `>=20`. The CI matrix
|
|
14
|
+
has been on `[20, 22]` since 0.4.1 and the integration + release jobs
|
|
15
|
+
ran exclusively on Node 20+, so Node 18 was effectively unsupported in
|
|
16
|
+
practice; this release makes the declared support match. esbuild
|
|
17
|
+
`target` and `release.sh` prerequisite comment updated to match.
|
|
18
|
+
|
|
10
19
|
## [0.4.1] - 2026-05-04
|
|
11
20
|
|
|
12
21
|
### Changed
|
package/dist/index.js
CHANGED
|
@@ -36662,7 +36662,7 @@ function compareVersions(a, b) {
|
|
|
36662
36662
|
}
|
|
36663
36663
|
|
|
36664
36664
|
// src/index.ts
|
|
36665
|
-
var version2 = true ? "0.
|
|
36665
|
+
var version2 = true ? "0.5.0" : (await null).createRequire(import.meta.url)("../package.json").version;
|
|
36666
36666
|
var subcommand = process.argv[2];
|
|
36667
36667
|
if (subcommand === "version" || subcommand === "--version") {
|
|
36668
36668
|
console.log(version2);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yawlabs/postgres-mcp",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.5.0",
|
|
4
4
|
"description": "PostgreSQL MCP server — query, schema introspection, explain, and health checks for AI assistants",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "YawLabs <contact@yaw.sh>",
|
|
@@ -57,6 +57,6 @@
|
|
|
57
57
|
"zod": "^4.3.6"
|
|
58
58
|
},
|
|
59
59
|
"engines": {
|
|
60
|
-
"node": ">=
|
|
60
|
+
"node": ">=20"
|
|
61
61
|
}
|
|
62
62
|
}
|