Skip to content

bump(deps-dev): bump google-adk from 1.4.1 to 1.12.0#96

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/pip/main/google-adk-1.12.0
Closed

bump(deps-dev): bump google-adk from 1.4.1 to 1.12.0#96
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/pip/main/google-adk-1.12.0

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 21, 2025

Copy link
Copy Markdown
Contributor

Bumps google-adk from 1.4.1 to 1.12.0.

Release notes

Sourced from google-adk's releases.

Release 1.12.0

Features

[Agent Config] 🌟 NEW FEATURE: Support using config file (YAML) to author agents in addition to python code. See the documentation for details.

  • [Agent Config] Support deploying config agent to Agent Engine in CLI (b3b7003)
  • [Tools] Add a dedicated Bigtable toolset to provide an easier, integrated way to interact with Bigtable for building AI Agent applications(experimental feature) (a953807)
  • [Tools] Support custom tool_name_prefix in auto-generated GoogleApiToolset (a2832d5) See oauth_calendar_agent as an example.
  • [CLI] Add build_image option for adk deploy cloud_run CLI (c843503)
  • [Services] Add setdefault method to the ADK State object (77ed1f5)

Bug Fixes

  • Lazy load VertexAiCodeExecutor and ContainerCodeExecutor (018db79)
  • Fix the path for agent card in A2A demo (fa64545)
  • Fix the path for agent card in A2A demo (a117cf0)
  • litellm-test due to breaking change in dep library of extension extra (004a0a0)
  • Using base event's invocation id when merge multiple function response event (279e4fe)
  • Avoid crash when there is no candidates_token_count, which is Optional (22f34e9)
  • Fix the packaging version comparison logic in adk cli (a2b7909)
  • Add Spanner admin scope to Spanner tool default Oauth scopes (b66054d)
  • Fixes SequentialAgent.config_type type hint (8a9a271)
  • Fixes the host in the ansi bracket of adk web (cd357bf)
  • Add spanner tool name prefix (a27927d)

Improvements

  • Support ADK_SUPPRESS_EXPERIMENTAL_FEATURE_WARNINGS as environment variable to suppress experimental warnings (4afc9b2)
  • Uses pydantic Field for Agent configs, so that the generated AgentConfig.json json schema can carry field description (5b999ed)
  • Update openai dependency version, based on correct OPENAI release (bb8ebd1)
  • Add the missing license header for core_callback_config init file (f8fd6a4)
  • Creates yaml_utils.py in utils to allow adk dump yaml in the same style (1fd58cb)
  • Return explict None type for DELETE endpoints (f03f167)
  • Add _config suffix to all yaml-based agent examples (43f302c)
  • Rename run related method and request to align with the conventions (ecaa7b4)
  • Update models in samples/ folder to be gemini 2.0+ (6c217ba)
  • Remove the "one commit" requirement from the contributing guide (c32cb6e)
  • Bump version to 1.11.0 (8005270)

Documentation

  • Add contributing bigtable sample (fef5318)
  • Fix core_callback example (ba6e85e)
  • Adds a minimal sample to demo how to use Agent Config to create a multi-agent setup (1328e6e)

v1.11.0

1.11.0 (2025-08-14)

Features

... (truncated)

Changelog

Sourced from google-adk's changelog.

1.12.0 (2025-08-21)

Features

[Agent Config] 🌟 NEW FEATURE: Support using config file (YAML) to author agents in addition to python code. See the documentation for details.

  • [Agent Config] Support deploying config agent to Agent Engine in CLI (b3b7003)
  • [Tools] Add a dedicated Bigtable toolset to provide an easier, integrated way to interact with Bigtable for building AI Agent applications(experimental feature) (a953807)
  • [Tools] Support custom tool_name_prefix in auto-generated GoogleApiToolset (a2832d5) See oauth_calendar_agent as an example.
  • [CLI] Add build_image option for adk deploy cloud_run CLI (c843503)
  • [Services] Add setdefault method to the ADK State object (77ed1f5)

Bug Fixes

  • Lazy load VertexAiCodeExecutor and ContainerCodeExecutor (018db79)
  • Fix the path for agent card in A2A demo (fa64545)
  • Fix the path for agent card in A2A demo (a117cf0)
  • litellm-test due to breaking change in dep library of extension extra (004a0a0)
  • Using base event's invocation id when merge multiple function response event (279e4fe)
  • Avoid crash when there is no candidates_token_count, which is Optional (22f34e9)
  • Fix the packaging version comparison logic in adk cli (a2b7909)
  • Add Spanner admin scope to Spanner tool default Oauth scopes (b66054d)
  • Fixes SequentialAgent.config_type type hint (8a9a271)
  • Fixes the host in the ansi bracket of adk web (cd357bf)
  • Add spanner tool name prefix (a27927d)

Improvements

  • Support ADK_SUPPRESS_EXPERIMENTAL_FEATURE_WARNINGS as environment variable to suppress experimental warnings (4afc9b2)
  • Uses pydantic Field for Agent configs, so that the generated AgentConfig.json json schema can carry field description (5b999ed)
  • Update openai dependency version, based on correct OPENAI release (bb8ebd1)
  • Add the missing license header for core_callback_config init file (f8fd6a4)
  • Creates yaml_utils.py in utils to allow adk dump yaml in the same style (1fd58cb)
  • Return explict None type for DELETE endpoints (f03f167)
  • Add _config suffix to all yaml-based agent examples (43f302c)
  • Rename run related method and request to align with the conventions (ecaa7b4)
  • Update models in samples/ folder to be gemini 2.0+ (6c217ba)
  • Remove the "one commit" requirement from the contributing guide (c32cb6e)
  • Bump version to 1.11.0 (8005270)

Documentation

  • Add contributing bigtable sample (fef5318)
  • Fix core_callback example (ba6e85e)
  • Adds a minimal sample to demo how to use Agent Config to create a multi-agent setup (1328e6e)

1.11.0 (2025-08-14)

... (truncated)

Commits
  • 5b999ed chore: Uses pydantic Field for Agent configs, so that the generated AgentCo...
  • bb8ebd1 chore: Update openai dependency version, based on correct OPENAI release
  • fef5318 docs: add contributing bigtable sample
  • 018db79 fix: Lazy load VertexAiCodeExecutor and ContainerCodeExecutor
  • 77ed1f5 feat: Add setdefault method to the ADK State object
  • 4afc9b2 feat: Add env var to suppress experimental warnings
  • f8fd6a4 chore: add the missing license header for core_callback_config init file
  • a953807 feat: add Bigtable tools
  • fa64545 fix: Fix the path for agent card in A2A demo
  • 004a0a0 fix: litellm-test due to breaking change in dep library of extension extra
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [google-adk](https://github.com/google/adk-python) from 1.4.1 to 1.12.0.
- [Release notes](https://github.com/google/adk-python/releases)
- [Changelog](https://github.com/google/adk-python/blob/main/CHANGELOG.md)
- [Commits](google/adk-python@v1.4.1...v1.12.0)

---
updated-dependencies:
- dependency-name: google-adk
  dependency-version: 1.12.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file python Pull requests that update python code labels Aug 21, 2025
@codecov

codecov Bot commented Aug 21, 2025

Copy link
Copy Markdown

Codecov Report

✅ All modified and coverable lines are covered by tests.

📢 Thoughts on this report? Let us know!

@dependabot @github

dependabot Bot commented on behalf of github Aug 28, 2025

Copy link
Copy Markdown
Contributor Author

Superseded by #100.

@dependabot dependabot Bot closed this Aug 28, 2025
@dependabot dependabot Bot deleted the dependabot/pip/main/google-adk-1.12.0 branch August 28, 2025 20:25
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file python Pull requests that update python code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants