Skip to content

Commit 7d00b98

Browse files
chore(main): release 1.12.0
1 parent b3ea8e3 commit 7d00b98

File tree

5 files changed

+12
-4
lines changed

5 files changed

+12
-4
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "1.11.0"
2+
".": "1.12.0"
33
}

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## [1.12.0](https://github.com/googleapis/nodejs-vertexai/compare/v1.11.0...v1.12.0) (2026-04-10)
4+
5+
6+
### Features
7+
8+
* Add subset_topics to Memory Bank GenerateMemories ([7932c2b](https://github.com/googleapis/nodejs-vertexai/commit/7932c2b49a05d26c5656bb996cd09709d60670c9))
9+
* Add support for agent gateway in agent engine ([b3ea8e3](https://github.com/googleapis/nodejs-vertexai/commit/b3ea8e3a8fdb90e05c5531e01f4ec1284c105af6))
10+
311
## [1.11.0](https://github.com/googleapis/nodejs-vertexai/compare/v1.10.4...v1.11.0) (2026-04-07)
412

513

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@google-cloud/vertexai",
33
"description": "Vertex Generative AI client for Node.js",
4-
"version": "1.11.0",
4+
"version": "1.12.0",
55
"license": "Apache-2.0",
66
"author": "Google LLC",
77
"engines": {

src/genai/client.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import {ApiClient, NodeAuth, NodeDownloader, NodeUploader,} from '@google/genai/
77

88
import {AgentEngines} from './agentengines';
99

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

1212
let agentEnginesInternalWarned = false;
1313

src/util/constants.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export const USER_ROLE = 'user';
2121
export const MODEL_ROLE = 'model';
2222
export const SYSTEM_ROLE = 'system';
2323
const USER_AGENT_PRODUCT = 'model-builder';
24-
const CLIENT_LIBRARY_VERSION = '1.11.0'; // x-release-please-version
24+
const CLIENT_LIBRARY_VERSION = '1.12.0'; // x-release-please-version
2525
const CLIENT_LIBRARY_LANGUAGE = `grpc-node/${CLIENT_LIBRARY_VERSION}`;
2626
export const USER_AGENT = `${USER_AGENT_PRODUCT}/${CLIENT_LIBRARY_VERSION} ${CLIENT_LIBRARY_LANGUAGE}`;
2727
export const CREDENTIAL_ERROR_MESSAGE =

0 commit comments

Comments
 (0)