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
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
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": "sql-server",
"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