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
6 changes: 3 additions & 3 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
".": "1.2.0",
"core": "1.2.0",
"dev": "1.2.0"
".": "1.3.0",
"core": "1.3.0",
"dev": "1.3.0"
}
17 changes: 17 additions & 0 deletions core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# Changelog

## [1.3.0](https://github.com/google/adk-js/compare/adk-v1.2.0...adk-v1.3.0) (2026-06-09)


### Features

* introduce Skills Registry Core interface, Zip Extraction, and local Toolset caching fallbacks (PR 1) ([#422](https://github.com/google/adk-js/issues/422)) ([26ba26a](https://github.com/google/adk-js/commit/26ba26a12f893835b03eda55ea042b9261e40d3d))
* **openapi:** implement spec operation parser and auth handler (part 2) ([#385](https://github.com/google/adk-js/issues/385)) ([8adf05e](https://github.com/google/adk-js/commit/8adf05eedc31d6a9d32b9f5c8512258794cac551))
* **skills:** Dynamic SearchSkillsTool for LLM Agents (Skills Registry Part 3) ([#424](https://github.com/google/adk-js/issues/424)) ([a41c62c](https://github.com/google/adk-js/commit/a41c62c97d40bba86237021be4a49ab453a26e8b))
* **skills:** Remote GCP Skills Registry Integration & E2E Tests (Skills Registry Part 2) ([#423](https://github.com/google/adk-js/issues/423)) ([33401e8](https://github.com/google/adk-js/commit/33401e85077bd5dc9a816f0345948394ce67e14c))


### Bug Fixes

* Filter temporary state keys on session creation in TS ADK ([#406](https://github.com/google/adk-js/issues/406)) ([04968b7](https://github.com/google/adk-js/commit/04968b734e44600a847239f103864e4c404d97c3))
* replace any with proper AuthConfig type in EventActions ([#405](https://github.com/google/adk-js/issues/405)) ([4172398](https://github.com/google/adk-js/commit/417239854cbae63650f63e0e3ad02fa34f433401))
* **streaming:** prevent prototype pollution via model-controlled JSON path ([#410](https://github.com/google/adk-js/issues/410)) ([9008353](https://github.com/google/adk-js/commit/9008353e6d81e086dc778df67189ee193b440ab7))

## [1.2.0](https://github.com/google/adk-js/compare/adk-v1.1.0...adk-v1.2.0) (2026-06-02)


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": "1.2.0",
"version": "1.3.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 = '1.2.0'; // x-release-please-version
export const version = '1.3.0'; // x-release-please-version
14 changes: 14 additions & 0 deletions dev/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## [1.3.0](https://github.com/google/adk-js/compare/devtools-v1.2.0...devtools-v1.3.0) (2026-06-09)


### Miscellaneous Chores

* **devtools:** Synchronize adk versions


### Dependencies

* The following workspace dependencies were updated
* dependencies
* @google/adk bumped from ^1.2.0 to ^1.3.0

## [1.2.0](https://github.com/google/adk-js/compare/devtools-v1.1.0...devtools-v1.2.0) (2026-06-02)


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": "1.2.0",
"version": "1.3.0",
"description": "Google ADK JS Development Tools",
"author": "Google",
"license": "Apache-2.0",
Expand Down Expand Up @@ -54,7 +54,7 @@
},
"dependencies": {
"@clack/prompts": "^0.11.0",
"@google/adk": "^1.2.0",
"@google/adk": "^1.3.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 = '1.2.0'; // x-release-please-version
export const version = '1.3.0'; // x-release-please-version
10 changes: 5 additions & 5 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": "1.2.0",
"version": "1.3.0",
"description": "Google ADK JS",
"author": "Google",
"license": "Apache-2.0",
Expand Down
Loading