Skip to content
Open
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
8 changes: 4 additions & 4 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
".": "2.0.0",
"core": "2.0.0",
"dev": "2.0.0",
"integrations": "2.0.0"
".": "2.1.0",
"core": "2.1.0",
"dev": "2.1.0",
"integrations": "2.1.0"
}
25 changes: 25 additions & 0 deletions core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,30 @@
# Changelog

## [2.1.0](https://github.com/google/adk-js/compare/adk-v2.0.0...adk-v2.1.0) (2026-09-02)


### Features

* **plugins:** add ReflectAndRetryToolPlugin and ReflectAndRetryModelPlugin for self-healing error recovery ([#631](https://github.com/google/adk-js/issues/631)) ([1b6ea6d](https://github.com/google/adk-js/commit/1b6ea6db46597abb17ccbcdc948fcc4ed6cb20e0))
* Port the typed-errors module (errors/) from adk-python ([#583](https://github.com/google/adk-js/issues/583)) ([fab19d0](https://github.com/google/adk-js/commit/fab19d04cd1231567d363b49f5c657223e6842ba))


### Bug Fixes

* **a2a:** propagate request metadata to agent execution ([#752](https://github.com/google/adk-js/issues/752)) ([#768](https://github.com/google/adk-js/issues/768)) ([bb2dd8f](https://github.com/google/adk-js/commit/bb2dd8f285e3360d5284a29756e9c06afcc3b4ce))
* **agents:** carry request-input resume inputs in their own type ([#822](https://github.com/google/adk-js/issues/822)) ([8664b6e](https://github.com/google/adk-js/commit/8664b6e4937958a6faee79c20a0299ee3683dac6))
* **auth:** redact OAuth2 authorization code from malformed-callback-URI log ([#640](https://github.com/google/adk-js/issues/640)) ([08f4f24](https://github.com/google/adk-js/commit/08f4f24c45b31a1bc0d69fb464bdc4d3c2e6c67a))
* close two remaining author-blind confirmation-resolution paths ([#755](https://github.com/google/adk-js/issues/755)) ([f9d6d91](https://github.com/google/adk-js/commit/f9d6d914bbe33436d075bde798c99df5b26293ab))
* **core:** gracefully handle unregistered tool calls ([#790](https://github.com/google/adk-js/issues/790)) ([6be4195](https://github.com/google/adk-js/commit/6be4195aeee9fda7a7346607f2fa879d101f76a0))
* **core:** load artifacts and MCP resources when other tools are call… ([#639](https://github.com/google/adk-js/issues/639)) ([b723201](https://github.com/google/adk-js/commit/b72320146c2352b13d0e92ba8b33e96fb00945cb))
* **core:** make built-in tools resolvable by name ([#811](https://github.com/google/adk-js/issues/811)) ([e7fab37](https://github.com/google/adk-js/commit/e7fab3763f1bb8e072edf8f4753e8103838d95cb))
* **core:** stop a surviving grandchild from hanging code execution ([#793](https://github.com/google/adk-js/issues/793)) ([173462a](https://github.com/google/adk-js/commit/173462ae07bcfa1155f8acdb96e71d49d2470b0c)), closes [#622](https://github.com/google/adk-js/issues/622)
* drop the redundant ExtendedInteractionSSEEvent self-cast in the streaming loop ([#827](https://github.com/google/adk-js/issues/827)) ([e9f187f](https://github.com/google/adk-js/commit/e9f187fc54bf1f26397d0dbd476b68d15a38e4f5))
* preserve EventActions when a long-running tool returns no response ([#571](https://github.com/google/adk-js/issues/571)) ([c6ad9c2](https://github.com/google/adk-js/commit/c6ad9c277253fb07076f1180169679810b922efd))
* scrub credential material before forwarding to a remote A2A peer ([#767](https://github.com/google/adk-js/issues/767)) ([f3c27fd](https://github.com/google/adk-js/commit/f3c27fde193a1c095f3fb358b9304ce66d954ee3))
* **sessions:** import Client from the @google-cloud/vertexai package root ([#801](https://github.com/google/adk-js/issues/801)) ([3aaf49b](https://github.com/google/adk-js/commit/3aaf49bbd22eadc5dbfd6b957623598e4d3f7def))
* type the load_mcp_resource LlmRequest fixtures instead of double-casting ([#836](https://github.com/google/adk-js/issues/836)) ([071f795](https://github.com/google/adk-js/commit/071f795b9dc57449f95e8cba51615d75566cf02e))

## [2.0.0](https://github.com/google/adk-js/compare/adk-v1.6.0...adk-v2.0.0) (2026-08-20)


Expand Down
2 changes: 1 addition & 1 deletion core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@google/adk",
"version": "2.0.0",
"version": "2.1.0",
"description": "Google ADK JS",
"author": "Google",
"license": "Apache-2.0",
Expand Down
2 changes: 1 addition & 1 deletion core/src/version.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
*/

// version: major.minor.patch
export const version = '2.0.0'; // x-release-please-version
export const version = '2.1.0'; // x-release-please-version
16 changes: 16 additions & 0 deletions dev/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Changelog

## [2.1.0](https://github.com/google/adk-js/compare/devtools-v2.0.0...devtools-v2.1.0) (2026-09-02)


### Bug Fixes

* **dev:** let --bundle false actually load an agent ([#791](https://github.com/google/adk-js/issues/791)) ([91357fd](https://github.com/google/adk-js/commit/91357fdf9a1f93adf089db91f407a840a27f27f6)), closes [#714](https://github.com/google/adk-js/issues/714)
* guard reads in the dev server against DNS rebinding ([#744](https://github.com/google/adk-js/issues/744)) ([0fe9581](https://github.com/google/adk-js/commit/0fe958137e9c4b5211651f62609ca95933809eb5))
* remove the no-op [@ts-ignore](https://github.com/ts-ignore) on the esbuild-shim-plugin import ([#805](https://github.com/google/adk-js/issues/805)) ([9566743](https://github.com/google/adk-js/commit/9566743ffaa5fcc29b5a97d2a823837fa8319627))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* @google/adk bumped from ^2.0.0 to ^2.1.0

## [2.0.0](https://github.com/google/adk-js/compare/devtools-v1.6.0...devtools-v2.0.0) (2026-08-20)


Expand Down
4 changes: 2 additions & 2 deletions dev/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@google/adk-devtools",
"version": "2.0.0",
"version": "2.1.0",
"description": "Google ADK JS Development Tools",
"author": "Google",
"license": "Apache-2.0",
Expand Down Expand Up @@ -55,7 +55,7 @@
},
"dependencies": {
"@clack/prompts": "^0.11.0",
"@google/adk": "^2.0.0",
"@google/adk": "^2.1.0",
"@mikro-orm/mariadb": "^6.6.6",
"@mikro-orm/mssql": "^6.6.6",
"@mikro-orm/mysql": "^6.6.6",
Expand Down
2 changes: 1 addition & 1 deletion dev/src/version.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
*/

// version: major.minor.patch
export const version = '2.0.0'; // x-release-please-version
export const version = '2.1.0'; // x-release-please-version
14 changes: 14 additions & 0 deletions integrations/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## [2.1.0](https://github.com/google/adk-js/compare/integrations-v2.0.0...integrations-v2.1.0) (2026-09-02)


### Miscellaneous Chores

* **integrations:** Synchronize adk versions


### Dependencies

* The following workspace dependencies were updated
* dependencies
* @google/adk bumped from ^2.0.0 to ^2.1.0

## [2.0.0](https://github.com/google/adk-js/compare/integrations-v1.6.0...integrations-v2.0.0) (2026-08-20)


Expand Down
4 changes: 2 additions & 2 deletions integrations/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@google/adk-integrations",
"version": "2.0.0",
"version": "2.1.0",
"description": "Google ADK JS Integrations",
"author": "Google",
"license": "Apache-2.0",
Expand Down Expand Up @@ -45,6 +45,6 @@
"prepublishOnly": "npm run build"
},
"dependencies": {
"@google/adk": "^2.0.0"
"@google/adk": "^2.1.0"
}
}
2 changes: 1 addition & 1 deletion integrations/src/version.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
*/

// version: major.minor.patch
export const version = '2.0.0'; // x-release-please-version
export const version = '2.1.0'; // x-release-please-version
14 changes: 7 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "adk",
"version": "2.0.0",
"version": "2.1.0",
"description": "Google ADK JS",
"author": "Google",
"license": "Apache-2.0",
Expand Down
Loading