diff --git a/.claude-plugin/plugin.json b/.claude-plugin/plugin.json index d7b3dfb..c0d4dc6 100644 --- a/.claude-plugin/plugin.json +++ b/.claude-plugin/plugin.json @@ -1,6 +1,6 @@ { "name": "postgres", - "version": "0.2.2", + "version": "0.2.3", "description": "Connect and interact with a PostgreSQL database and data", "author": { "name": "Google LLC", @@ -51,7 +51,7 @@ "command": "npx", "args": [ "-y", - "@toolbox-sdk/server@1.8.0", + "@toolbox-sdk/server@1.9.0", "--prebuilt", "postgres", "--stdio" diff --git a/.codex-plugin/.mcp.json b/.codex-plugin/.mcp.json index 6bfed33..1d0356e 100644 --- a/.codex-plugin/.mcp.json +++ b/.codex-plugin/.mcp.json @@ -4,7 +4,7 @@ "command": "npx", "args": [ "-y", - "@toolbox-sdk/server@1.8.0", + "@toolbox-sdk/server@1.9.0", "--prebuilt", "postgres", "--stdio" diff --git a/.codex-plugin/plugin.json b/.codex-plugin/plugin.json index c72dd5d..acb53ac 100644 --- a/.codex-plugin/plugin.json +++ b/.codex-plugin/plugin.json @@ -1,6 +1,6 @@ { "name": "postgres", - "version": "0.2.2", + "version": "0.2.3", "description": "Connect and interact with a PostgreSQL database and data", "author": { "name": "Google LLC", diff --git a/.github/renovate.json5 b/.github/renovate.json5 index 9b200fa..c4501e2 100644 --- a/.github/renovate.json5 +++ b/.github/renovate.json5 @@ -29,9 +29,17 @@ ], customManagers: [ { - // Track the npm toolbox server pinned in the extension's MCP command. + // Track the npm toolbox server pinned in the MCP command. The version is + // listed in the source (mcp.json) and repeated in every generated + // manifest, so all of them are bumped in one PR. customType: "regex", - managerFilePatterns: ["/gemini-extension\\.json$/"], + managerFilePatterns: [ + "/mcp\\.json$/", + "/mcp_config\\.json$/", + "/gemini-extension\\.json$/", + "/\\.claude-plugin/plugin\\.json$/", + "/\\.codex-plugin/\\.mcp\\.json$/", + ], matchStrings: ["@toolbox-sdk/server@(?[\\d\\.]+)"], datasourceTemplate: "npm", depNameTemplate: "@toolbox-sdk/server", diff --git a/mcp.json b/mcp.json index ef66465..11ab197 100644 --- a/mcp.json +++ b/mcp.json @@ -6,7 +6,7 @@ "command": "npx", "args": [ "-y", - "@toolbox-sdk/server@1.8.0", + "@toolbox-sdk/server@1.9.0", "--prebuilt", "postgres", "--stdio" diff --git a/mcp_config.json b/mcp_config.json index b3478af..2f05c5c 100644 --- a/mcp_config.json +++ b/mcp_config.json @@ -4,7 +4,7 @@ "command": "npx", "args": [ "-y", - "@toolbox-sdk/server@1.8.0", + "@toolbox-sdk/server@1.9.0", "--prebuilt", "postgres", "--stdio" diff --git a/plugin.json b/plugin.json index 11d50b4..b061dce 100644 --- a/plugin.json +++ b/plugin.json @@ -1,6 +1,6 @@ { "name": "postgres", - "version": "0.2.2", + "version": "0.2.3", "description": "Connect and interact with a PostgreSQL database and data", "author": { "name": "Google LLC", diff --git a/release-please-config.json b/release-please-config.json index fdb14c2..97a419f 100644 --- a/release-please-config.json +++ b/release-please-config.json @@ -28,12 +28,27 @@ "release-type": "simple", "package-name": "postgres", "extra-files": [ + { + "type": "json", + "path": "plugin.json", + "jsonpath": "$.version" + }, { "type": "json", "path": "gemini-extension.json", "jsonpath": "$.version" + }, + { + "type": "json", + "path": ".claude-plugin/plugin.json", + "jsonpath": "$.version" + }, + { + "type": "json", + "path": ".codex-plugin/plugin.json", + "jsonpath": "$.version" } ] } } -} \ No newline at end of file +}