Skip to content

Commit d779db4

Browse files
chore(main): release 1.11.0 (#587)
Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
1 parent 912f684 commit d779db4

File tree

5 files changed

+13
-4
lines changed

5 files changed

+13
-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.10.4"
2+
".": "1.11.0"
33
}

CHANGELOG.md

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

3+
## [1.11.0](https://github.com/googleapis/nodejs-vertexai/compare/v1.10.4...v1.11.0) (2026-04-07)
4+
5+
6+
### Features
7+
8+
* Add consolidation customization to Memory Bank ([9df74eb](https://github.com/googleapis/nodejs-vertexai/commit/9df74eb4c128084d9746b8cf26570a7a04452178))
9+
* Add session_id to Create Session to allow custom session id ([fed70af](https://github.com/googleapis/nodejs-vertexai/commit/fed70afa92c42331efa5633c80184d27b8d0a1c4))
10+
* In run_query_job, rename gcs_bucket to gcs_uri and allow the case that user sets the filename for the output. ([4a1a387](https://github.com/googleapis/nodejs-vertexai/commit/4a1a3870cb368e574cb51ef7a284b82a3b09f935))
11+
312
## [1.10.4](https://github.com/googleapis/nodejs-vertexai/compare/v1.10.3...v1.10.4) (2026-03-31)
413

514

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.10.4",
4+
"version": "1.11.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.10.4'; // x-release-please-version
10+
export const SDK_VERSION = '1.11.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.10.4'; // x-release-please-version
24+
const CLIENT_LIBRARY_VERSION = '1.11.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)