diff --git a/.release-please-manifest.json b/.release-please-manifest.json index cd3352f1..d623f0d8 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,5 +1,5 @@ { - ".": "0.6.1", - "core": "0.6.1", - "dev": "0.6.1" + ".": "1.0.0", + "core": "1.0.0", + "dev": "1.0.0" } diff --git a/core/CHANGELOG.md b/core/CHANGELOG.md index 9ecf9042..d5b05701 100644 --- a/core/CHANGELOG.md +++ b/core/CHANGELOG.md @@ -1,5 +1,38 @@ # Changelog +## [1.0.0](https://github.com/google/adk-js/compare/adk-v0.6.1...adk-v1.0.0) (2026-04-21) + + +### Features + +* add Agent type alias for LlmAgent to keep parity with Python ADK. ([#242](https://github.com/google/adk-js/issues/242)) ([03da958](https://github.com/google/adk-js/commit/03da95820efb5cdbca045f0621f15c5a60efe2ea)) +* add auth preprocessor and update auth handler. ([#227](https://github.com/google/adk-js/issues/227)) ([e94c181](https://github.com/google/adk-js/commit/e94c181d50760b47dde5b2302a385f7c35cbe34e)) +* add auth related base classes ([#223](https://github.com/google/adk-js/issues/223)) ([a87ed8e](https://github.com/google/adk-js/commit/a87ed8e0215e4eb654d000cd2ce6b763ab9b7b6b)) +* add progressive model streaming processing ([#258](https://github.com/google/adk-js/issues/258)) ([93d551b](https://github.com/google/adk-js/commit/93d551b488427e7d124636141cd012fd2ce6a8b6)) +* oauth support: add oauth2 related classes ([#225](https://github.com/google/adk-js/issues/225)) ([d2b7dcb](https://github.com/google/adk-js/commit/d2b7dcb80c9c501a96630582a02191cc55aafcca)) +* Plugin callbacks for context compaction and tool selection ([#250](https://github.com/google/adk-js/issues/250)) ([3deda16](https://github.com/google/adk-js/commit/3deda167a6b2e9fd465142ed718db96a0f20d446)) +* RoutedAgent and RoutedLlm ([#215](https://github.com/google/adk-js/issues/215)) ([1083301](https://github.com/google/adk-js/commit/10833019afafa3e0993af3f3f9fe87c3728ac08d)) +* skills: add skills toolset (part 2) ([#252](https://github.com/google/adk-js/issues/252)) ([6869e23](https://github.com/google/adk-js/commit/6869e2336db6aa80d96ac87e444e6c657480d9e7)) +* skills: define skills interface ([#251](https://github.com/google/adk-js/issues/251)) ([e8b2cae](https://github.com/google/adk-js/commit/e8b2caeb219de7d84e1a9e399a52fe19cb9c70c9)) +* skills: loader (part 3) ([#256](https://github.com/google/adk-js/issues/256)) ([a4d2858](https://github.com/google/adk-js/commit/a4d2858a7a8f2e87bd7e0f10d8988fc08c350824)) +* skills: support script execution ([#276](https://github.com/google/adk-js/issues/276)) ([8d5cc0a](https://github.com/google/adk-js/commit/8d5cc0ac347f96a5362fcf85d445efd1c04eccae)) +* support abort parameter in runner, agent, model, tool and processors ([#234](https://github.com/google/adk-js/issues/234)) ([1614f36](https://github.com/google/adk-js/commit/1614f36c77967ff064a52ff2ee89be0a5c6b5cb4)) +* unsafe local code executor ([#257](https://github.com/google/adk-js/issues/257)) ([ce5bde9](https://github.com/google/adk-js/commit/ce5bde9c37635f01a67b137354d32aa5d1ea4650)) + + +### Bug Fixes + +* add client url to support custom url options for DB connection. ([#284](https://github.com/google/adk-js/issues/284)) ([bf8fade](https://github.com/google/adk-js/commit/bf8fadefb764e2ea22f9bc022b6e437ce8020873)) +* add missing invocation id when creating new ADK event while merging parallel tool responses. ([#253](https://github.com/google/adk-js/issues/253)) ([7739bd8](https://github.com/google/adk-js/commit/7739bd8b79ef38fc65fb06495043318c3f287f40)) +* move otel dependencies from dev deps to deps ([#243](https://github.com/google/adk-js/issues/243)) ([9622da6](https://github.com/google/adk-js/commit/9622da610f394c3cb4a93432ea1d9a9391000947)) +* propagate thoughtSignature to concurrent function calls in streaming ([#268](https://github.com/google/adk-js/issues/268)) ([8cd6360](https://github.com/google/adk-js/commit/8cd6360eea2a38fd3acdcfc8b73c7491d28bc75a)) +* support dynamic requre in esm builds ([#244](https://github.com/google/adk-js/issues/244)) ([fecbdd3](https://github.com/google/adk-js/commit/fecbdd351552fbacf2db1d6174920e76ddc56a53)) + + +### Miscellaneous Chores + +* release 1.0.0 ([84f886e](https://github.com/google/adk-js/commit/84f886e1ac8b3e9a7807a184257444fd0b15e1af)) + ## [0.6.1](https://github.com/google/adk-js/compare/adk-v0.6.0...adk-v0.6.1) (2026-03-30) diff --git a/core/package.json b/core/package.json index ae553d53..e51834ac 100644 --- a/core/package.json +++ b/core/package.json @@ -1,6 +1,6 @@ { "name": "@google/adk", - "version": "0.6.1", + "version": "1.0.0", "description": "Google ADK JS", "author": "Google", "license": "Apache-2.0", diff --git a/core/src/version.ts b/core/src/version.ts index 5316738b..50463a26 100644 --- a/core/src/version.ts +++ b/core/src/version.ts @@ -5,4 +5,4 @@ */ // version: major.minor.patch -export const version = '0.6.1'; // x-release-please-version +export const version = '1.0.0'; // x-release-please-version diff --git a/dev/CHANGELOG.md b/dev/CHANGELOG.md index 19a40e12..4ce17570 100644 --- a/dev/CHANGELOG.md +++ b/dev/CHANGELOG.md @@ -1,5 +1,30 @@ # Changelog +## [1.0.0](https://github.com/google/adk-js/compare/devtools-v0.6.1...devtools-v1.0.0) (2026-04-21) + + +### Features + +* export AdkApiServer from @google/adk-devtools package ([#245](https://github.com/google/adk-js/issues/245)) ([0887e40](https://github.com/google/adk-js/commit/0887e4082974fb500a67411ded196f31e9d790bf)) +* keep original __dirname, __filename and import.meta.url value for compiled agent files. ([#254](https://github.com/google/adk-js/issues/254)) ([db89a42](https://github.com/google/adk-js/commit/db89a4212000a450b6b197438cb798b4bf294831)) + + +### Bug Fixes + +* add client url to support custom url options for DB connection. ([#284](https://github.com/google/adk-js/issues/284)) ([bf8fade](https://github.com/google/adk-js/commit/bf8fadefb764e2ea22f9bc022b6e437ce8020873)) + + +### Miscellaneous Chores + +* release 1.0.0 ([84f886e](https://github.com/google/adk-js/commit/84f886e1ac8b3e9a7807a184257444fd0b15e1af)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @google/adk bumped from ^0.6.1 to ^1.0.0 + ## [0.6.1](https://github.com/google/adk-js/compare/devtools-v0.6.0...devtools-v0.6.1) (2026-03-30) diff --git a/dev/package.json b/dev/package.json index ce3e3605..1855e4a5 100644 --- a/dev/package.json +++ b/dev/package.json @@ -1,6 +1,6 @@ { "name": "@google/adk-devtools", - "version": "0.6.1", + "version": "1.0.0", "description": "Google ADK JS Development Tools", "author": "Google", "license": "Apache-2.0", @@ -54,7 +54,7 @@ }, "dependencies": { "@clack/prompts": "^0.11.0", - "@google/adk": "^0.6.1", + "@google/adk": "^1.0.0", "@mikro-orm/mariadb": "^6.6.6", "@mikro-orm/mssql": "^6.6.6", "@mikro-orm/mysql": "^6.6.6", diff --git a/dev/src/version.ts b/dev/src/version.ts index 5316738b..50463a26 100644 --- a/dev/src/version.ts +++ b/dev/src/version.ts @@ -5,4 +5,4 @@ */ // version: major.minor.patch -export const version = '0.6.1'; // x-release-please-version +export const version = '1.0.0'; // x-release-please-version diff --git a/package-lock.json b/package-lock.json index f528a4df..227336a7 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "adk", - "version": "0.6.1", + "version": "1.0.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "adk", - "version": "0.6.1", + "version": "1.0.0", "license": "Apache-2.0", "workspaces": [ "core", @@ -39,7 +39,7 @@ }, "core": { "name": "@google/adk", - "version": "0.6.1", + "version": "1.0.0", "license": "Apache-2.0", "dependencies": { "@a2a-js/sdk": "^0.3.10", @@ -86,11 +86,11 @@ }, "dev": { "name": "@google/adk-devtools", - "version": "0.6.1", + "version": "1.0.0", "license": "Apache-2.0", "dependencies": { "@clack/prompts": "^0.11.0", - "@google/adk": "^0.6.1", + "@google/adk": "^1.0.0", "@mikro-orm/mariadb": "^6.6.6", "@mikro-orm/mssql": "^6.6.6", "@mikro-orm/mysql": "^6.6.6", diff --git a/package.json b/package.json index c3b44bb0..a1163d31 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "adk", - "version": "0.6.1", + "version": "1.0.0", "description": "Google ADK JS", "author": "Google", "license": "Apache-2.0",