From 0dab90113cadc6d238cfd232cb3d1f8be2030afb Mon Sep 17 00:00:00 2001 From: "release-please[bot]" <55107282+release-please[bot]@users.noreply.github.com> Date: Thu, 23 Apr 2026 20:58:03 +0000 Subject: [PATCH] chore(main): release 1.13.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 7 +++++++ package.json | 3 +-- src/genai/client.ts | 2 +- vertexai/src/util/constants.ts | 2 +- 5 files changed, 11 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index de0960ab..f94eeca2 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.12.0" + ".": "1.13.0" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index b48f281e..75763092 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [1.13.0](https://github.com/googleapis/nodejs-vertexai/compare/v1.12.0...v1.13.0) (2026-04-23) + + +### Features + +* BREAKING CHANGE - Update minimum supported Node version to Node 20 ([e2a384e](https://github.com/googleapis/nodejs-vertexai/commit/e2a384e88744914fe8daab01d4ea1f5765cd8700)) + ## [1.12.0](https://github.com/googleapis/nodejs-vertexai/compare/v1.11.0...v1.12.0) (2026-04-14) diff --git a/package.json b/package.json index e20531c9..191f9228 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@google-cloud/vertexai", "description": "Vertex Generative AI client for Node.js", - "version": "1.12.0", + "version": "1.13.0", "license": "Apache-2.0", "author": "Google LLC", "engines": { @@ -19,7 +19,6 @@ "docs-test": "linkinator docs", "compile:oss": "tsc -p tsconfig.json.oss", "fix": "gts fix", - "test": "npm run test:src && npm run test:test", "test": "npm run test:legacy:src && npm run test:legacy:test", "test:src": "npm run test:legacy:src", "test:test": "npm run test:legacy:test", diff --git a/src/genai/client.ts b/src/genai/client.ts index 7d28d99f..9ed7ab88 100644 --- a/src/genai/client.ts +++ b/src/genai/client.ts @@ -7,7 +7,7 @@ import {ApiClient, NodeAuth, NodeDownloader, NodeUploader,} from '@google/genai/ import {AgentEngines} from './agentengines'; -export const SDK_VERSION = '1.12.0'; // x-release-please-version +export const SDK_VERSION = '1.13.0'; // x-release-please-version let agentEnginesInternalWarned = false; diff --git a/vertexai/src/util/constants.ts b/vertexai/src/util/constants.ts index f4e07590..847ce34f 100644 --- a/vertexai/src/util/constants.ts +++ b/vertexai/src/util/constants.ts @@ -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.12.0'; // x-release-please-version +const CLIENT_LIBRARY_VERSION = '1.13.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 =