Skip to content

Commit e9d2904

Browse files
chore(main): release 1.10.4 (#580)
Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
1 parent 15988b8 commit e9d2904

File tree

5 files changed

+18
-4
lines changed

5 files changed

+18
-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.3"
2+
".": "1.10.4"
33
}

CHANGELOG.md

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

3+
## [1.10.4](https://github.com/googleapis/nodejs-vertexai/compare/v1.10.3...v1.10.4) (2026-03-31)
4+
5+
6+
### Features
7+
8+
* Add memory_id to Create Memory ([73207d3](https://github.com/googleapis/nodejs-vertexai/commit/73207d37f72df9475c8919bbace08e8d531daa7f))
9+
* Add raw_event to Append Event ([73207d3](https://github.com/googleapis/nodejs-vertexai/commit/73207d37f72df9475c8919bbace08e8d531daa7f))
10+
* add support for container_spec in AgentEngines ([274e0ff](https://github.com/googleapis/nodejs-vertexai/commit/274e0ff4861a5d7ec5a157300b4675ca6aa70695))
11+
12+
13+
### Miscellaneous Chores
14+
15+
* release 1.10.4 ([15988b8](https://github.com/googleapis/nodejs-vertexai/commit/15988b8e5810d9faebebfaca2c0963b74dea5b90))
16+
317
## [1.10.3](https://github.com/googleapis/nodejs-vertexai/compare/v1.10.2...v1.10.3) (2026-03-24)
418

519

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.3",
4+
"version": "1.10.4",
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
@@ -9,7 +9,7 @@ import {ApiClient, NodeAuth, NodeDownloader, NodeUploader} from '@google/genai/v
99
import {AgentEngines} from './agentengines';
1010
import {Sessions} from './sessions';
1111

12-
export const SDK_VERSION = '1.10.3'; // x-release-please-version
12+
export const SDK_VERSION = '1.10.4'; // x-release-please-version
1313

1414
let agentEnginesInternalWarned = false;
1515

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.3'; // x-release-please-version
24+
const CLIENT_LIBRARY_VERSION = '1.10.4'; // 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)