From 8cdadd72f07bf70fa7f5780ed5725cb4fb72c81a Mon Sep 17 00:00:00 2001 From: "release-please[bot]" <55107282+release-please[bot]@users.noreply.github.com> Date: Fri, 7 Aug 2026 17:30:24 +0000 Subject: [PATCH] chore(main): release 0.11.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 13 +++++++++++++ package.json | 2 +- src/client.ts | 2 +- 4 files changed, 16 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 091cfb12..f7014c35 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.10.0" + ".": "0.11.0" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 40623d22..b87206f2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## [0.11.0](https://github.com/googleapis/nodejs-agentplatform/compare/v0.10.0...v0.11.0) (2026-08-07) + + +### Features + +* Add sandbox templates and snapshots submodules to the Vertex AI GenAI SDK for JavaScript. ([63f8eb6](https://github.com/googleapis/nodejs-agentplatform/commit/63f8eb63a4db541d6e2d582f92c8012b71803c07)) +* allow users to configure max wait time for prompt management queries for Python and JS ([7a9ec5f](https://github.com/googleapis/nodejs-agentplatform/commit/7a9ec5fc9bf75789fbda8b02700f18df473ba3f8)) + + +### Bug Fixes + +* Update generator configuration and SDK bindings for Agent Engine Session update calls to return Session directly. ([8c328ae](https://github.com/googleapis/nodejs-agentplatform/commit/8c328aeed62409fc89116ff72de0c8c9d89e077b)) + ## [0.10.0](https://github.com/googleapis/nodejs-agentplatform/compare/v0.9.0...v0.10.0) (2026-07-11) diff --git a/package.json b/package.json index cf718748..6fad1a0b 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@google-cloud/agentplatform", "description": "Vertex Generative AI client for Node.js", - "version": "0.10.0", + "version": "0.11.0", "license": "Apache-2.0", "author": "Google LLC", "engines": { diff --git a/src/client.ts b/src/client.ts index f530da00..aed6e0d3 100644 --- a/src/client.ts +++ b/src/client.ts @@ -9,7 +9,7 @@ import {AgentEngines} from './agentengines'; import {Skills} from './skills'; import {Prompts} from './prompts'; -export const SDK_VERSION = '0.10.0'; // x-release-please-version +export const SDK_VERSION = '0.11.0'; // x-release-please-version let agentEnginesInternalWarned = false;