Skip to content

chore(deps): update pip to v1 (major)#2881

Open
renovate-bot wants to merge 1 commit intogoogleapis:mainfrom
renovate-bot:renovate/major-pip
Open

chore(deps): update pip to v1 (major)#2881
renovate-bot wants to merge 1 commit intogoogleapis:mainfrom
renovate-bot:renovate/major-pip

Conversation

@renovate-bot
Copy link
Copy Markdown
Contributor

@renovate-bot renovate-bot commented Mar 28, 2026

This PR contains the following updates:

Package Change Age Confidence
toolbox-adk (changelog) ==0.7.0==1.0.0 age confidence
toolbox-core (changelog) ==0.6.0==1.0.0 age confidence
toolbox-langchain (changelog) ==0.6.0==1.0.0 age confidence

Release Notes

googleapis/mcp-toolbox-sdk-python (toolbox-adk)

v1.0.0: toolbox-langchain: v1.0.0

Compare Source

Features
Bug Fixes
  • core: resolve dropped default parameter values in MCP transport parsing (#​601) (08c4af4)
Documentation
  • Migrate documentation to MCP Toolbox official docsite (#​581) (da12899)

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about these updates again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate-bot renovate-bot requested a review from a team as a code owner March 28, 2026 13:48
@dpebot
Copy link
Copy Markdown

dpebot commented Mar 28, 2026

/gcbrun

@trusted-contributions-gcf trusted-contributions-gcf bot added the tests: run Label to trigger Github Action tests. label Mar 28, 2026
Copy link
Copy Markdown
Contributor

@gemini-code-assist gemini-code-assist bot left a comment

Choose a reason for hiding this comment

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

Code Review

This pull request updates the toolbox-core dependency to version 1.0.0 in the Python core quickstart requirements. Feedback highlights that this major version bump could break the quickstart.py example because it relies on hardcoded tool indices; refactoring the example to dispatch tools by name is recommended to improve robustness against library updates.

@@ -1,3 +1,3 @@
google-genai==1.67.0
toolbox-core==0.6.0
toolbox-core==1.0.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.

high

This major version bump from 0.6.0 to 1.0.0 introduces a significant risk of breaking the associated quickstart.py example. The example code is fragile as it relies on a hardcoded index to call tools (e.g., toolbox_tools[3]), which assumes a specific, stable alphabetical order from the library.

A major version update could easily alter this tool ordering, which would break the example. This implementation is not robust and sets a poor precedent for users.

To improve maintainability and provide a better example, quickstart.py should be refactored to dispatch tools by name rather than by index.

Here is a more robust approach:

# In quickstart.py, after loading tools:
tool_map = {tool.__name__: tool for tool in toolbox_tools}

# Then, when dispatching a function call:
if fn_name in tool_map:
    function_result = await tool_map[fn_name](**function_call.args)
else:
    raise ValueError(f"Function name {fn_name} not present.")

This change would make the quickstart resilient to ordering changes in future library updates.

@renovate-bot renovate-bot changed the title chore(deps): update dependency toolbox-core to v1 chore(deps): update pip to v1 (major) Mar 28, 2026
@dpebot
Copy link
Copy Markdown

dpebot commented Mar 28, 2026

/gcbrun

@Yuan325 Yuan325 assigned anubhav756 and unassigned duwenxin99 Apr 2, 2026
@Yuan325 Yuan325 added the priority: p1 Important issue which blocks shipping the next release. Will be fixed prior to next release. label Apr 2, 2026
@anubhav756 anubhav756 force-pushed the renovate/major-pip branch from 1c94a84 to 3fe6102 Compare April 3, 2026 03:52
@dpebot
Copy link
Copy Markdown

dpebot commented Apr 3, 2026

/gcbrun

@github-actions
Copy link
Copy Markdown
Contributor

github-actions bot commented Apr 3, 2026

🚀 Cloudflare Preview Ready!

🔎 View Preview: https://pr-2881.toolbox-docs-6xc.pages.dev

(Note: Subsequent pushes to this PR will automatically update the preview at this same URL)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

priority: p1 Important issue which blocks shipping the next release. Will be fixed prior to next release. tests: run Label to trigger Github Action tests.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

5 participants