Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "1.11.0"
".": "1.12.0"
}
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Changelog

## [1.12.0](https://github.com/googleapis/nodejs-vertexai/compare/v1.11.0...v1.12.0) (2026-04-14)


### Features

* Add Agent Engine-level configuration for generation_trigger_config. ([365a14a](https://github.com/googleapis/nodejs-vertexai/commit/365a14ae4b05f81df52fd9fbfe2d3ac3371a2b97))
* Add ingest_events method for Memory Bank. ([365a14a](https://github.com/googleapis/nodejs-vertexai/commit/365a14ae4b05f81df52fd9fbfe2d3ac3371a2b97))
* Add memory_types filter to RetrieveMemories ([90e3f69](https://github.com/googleapis/nodejs-vertexai/commit/90e3f6922caebb65535958081d18b200246cef60))
* Add RetrieveProfiles. ([90e3f69](https://github.com/googleapis/nodejs-vertexai/commit/90e3f6922caebb65535958081d18b200246cef60))
* Add structured data and context to MemoryRevision. ([90e3f69](https://github.com/googleapis/nodejs-vertexai/commit/90e3f6922caebb65535958081d18b200246cef60))
* Add structured data and memory type to Memory. ([90e3f69](https://github.com/googleapis/nodejs-vertexai/commit/90e3f6922caebb65535958081d18b200246cef60))
* Add subset_topics to Memory Bank GenerateMemories ([7932c2b](https://github.com/googleapis/nodejs-vertexai/commit/7932c2b49a05d26c5656bb996cd09709d60670c9))
* Add support for agent gateway in agent engine ([b3ea8e3](https://github.com/googleapis/nodejs-vertexai/commit/b3ea8e3a8fdb90e05c5531e01f4ec1284c105af6))
* add support for keep alive probe in agent engines ([088c5ad](https://github.com/googleapis/nodejs-vertexai/commit/088c5ad3edabb13e49dc520a945ac0f48b145704))
* Adds cancel_query_job to SDK for agent engine long running async tasks. ([bc19f31](https://github.com/googleapis/nodejs-vertexai/commit/bc19f31d0f86bdd9f42572a8d0a4ef94e82684e5))

## [1.11.0](https://github.com/googleapis/nodejs-vertexai/compare/v1.10.4...v1.11.0) (2026-04-07)


Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@google-cloud/vertexai",
"description": "Vertex Generative AI client for Node.js",
"version": "1.11.0",
"version": "1.12.0",
"license": "Apache-2.0",
"author": "Google LLC",
"engines": {
Expand Down
2 changes: 1 addition & 1 deletion src/genai/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import {ApiClient, NodeAuth, NodeDownloader, NodeUploader,} from '@google/genai/

import {AgentEngines} from './agentengines';

export const SDK_VERSION = '1.11.0'; // x-release-please-version
export const SDK_VERSION = '1.12.0'; // x-release-please-version

let agentEnginesInternalWarned = false;

Expand Down
2 changes: 1 addition & 1 deletion src/util/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export const USER_ROLE = 'user';
export const MODEL_ROLE = 'model';
export const SYSTEM_ROLE = 'system';
const USER_AGENT_PRODUCT = 'model-builder';
const CLIENT_LIBRARY_VERSION = '1.11.0'; // x-release-please-version
const CLIENT_LIBRARY_VERSION = '1.12.0'; // x-release-please-version
const CLIENT_LIBRARY_LANGUAGE = `grpc-node/${CLIENT_LIBRARY_VERSION}`;
export const USER_AGENT = `${USER_AGENT_PRODUCT}/${CLIENT_LIBRARY_VERSION} ${CLIENT_LIBRARY_LANGUAGE}`;
export const CREDENTIAL_ERROR_MESSAGE =
Expand Down
Loading