Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .claude-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down Expand Up @@ -51,7 +51,7 @@
"command": "npx",
"args": [
"-y",
"@toolbox-sdk/server@1.8.0",
"@toolbox-sdk/server@1.9.0",

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can we double check that renovate can update this version https://github.com/gemini-cli-extensions/postgres/blob/main/.github/renovate.json5?

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes. Verified that all 5 toolbox MCP configs will be bumped by running npx --package renovate@44.39.1 renovate --platform=local --dry-run=full locally.

"--prebuilt",
"postgres",
"--stdio"
Expand Down
2 changes: 1 addition & 1 deletion .codex-plugin/.mcp.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"command": "npx",
"args": [
"-y",
"@toolbox-sdk/server@1.8.0",
"@toolbox-sdk/server@1.9.0",
"--prebuilt",
"postgres",
"--stdio"
Expand Down
2 changes: 1 addition & 1 deletion .codex-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
12 changes: 10 additions & 2 deletions .github/renovate.json5
Original file line number Diff line number Diff line change
Expand Up @@ -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@(?<currentValue>[\\d\\.]+)"],
datasourceTemplate: "npm",
depNameTemplate: "@toolbox-sdk/server",
Expand Down
2 changes: 1 addition & 1 deletion mcp.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"command": "npx",
"args": [
"-y",
"@toolbox-sdk/server@1.8.0",
"@toolbox-sdk/server@1.9.0",
"--prebuilt",
"postgres",
"--stdio"
Expand Down
2 changes: 1 addition & 1 deletion mcp_config.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"command": "npx",
"args": [
"-y",
"@toolbox-sdk/server@1.8.0",
"@toolbox-sdk/server@1.9.0",
"--prebuilt",
"postgres",
"--stdio"
Expand Down
2 changes: 1 addition & 1 deletion plugin.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
17 changes: 16 additions & 1 deletion release-please-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
]
}
}
}
}
Loading