Skip to content

Commit 97d20dd

Browse files
chore(main): release 0.6.1 (#344)
Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
1 parent c5855a3 commit 97d20dd

5 files changed

+20
-5
lines changed

.release-please-manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.6.0"
2+
".": "0.6.1"
33
}

CHANGELOG.md

+15
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,21 @@
11
# Changelog
22

33

4+
## [0.6.1](https://github.com/googleapis/js-genai/compare/v0.6.0...v0.6.1) (2025-03-25)
5+
6+
7+
### Features
8+
9+
* Add engine to VertexAISearch ([69dfbaf](https://github.com/googleapis/js-genai/commit/69dfbaf95c6e0c98d962ef7172aa41a455ecbdc1))
10+
* allow title property to be sent to Gemini API. Gemini API now supports the title property, so it's ok to pass this onto both Vertex and Gemini API. ([c5855a3](https://github.com/googleapis/js-genai/commit/c5855a310b02fcf2d12ec5d23a7f7fac943aa22f))
11+
* implement files.delete for JS client SDK. ([4ac44de](https://github.com/googleapis/js-genai/commit/4ac44de9b1cb5d71274b24287149b39a3b934257))
12+
* Save prompt safety attributes in dedicated field for generate_images ([1a774fa](https://github.com/googleapis/js-genai/commit/1a774fa18db4ca26bc97e1947f308837b16620ae))
13+
14+
15+
### Bug Fixes
16+
17+
* schema transformer logic fix. ([6311f60](https://github.com/googleapis/js-genai/commit/6311f60539a12f6a0287c746c1367904af274197))
18+
419
## [0.6.0](https://github.com/googleapis/js-genai/compare/v0.5.0...v0.6.0) (2025-03-20)
520

621

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@google/genai",
3-
"version": "0.6.0",
3+
"version": "0.6.1",
44
"description": "",
55
"main": "dist/node/index.js",
66
"module": "dist/web/index.mjs",

src/_api_client.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import {File, HttpOptions, HttpResponse, UploadFileConfig} from './types';
1212
const CONTENT_TYPE_HEADER = 'Content-Type';
1313
const USER_AGENT_HEADER = 'User-Agent';
1414
const GOOGLE_API_CLIENT_HEADER = 'x-goog-api-client';
15-
export const SDK_VERSION = '0.6.0'; // x-release-please-version
15+
export const SDK_VERSION = '0.6.1'; // x-release-please-version
1616
const LIBRARY_LABEL = `google-genai-sdk/${SDK_VERSION}`;
1717
const VERTEX_AI_API_DEFAULT_VERSION = 'v1beta1';
1818
const GOOGLE_AI_API_DEFAULT_VERSION = 'v1beta';

0 commit comments

Comments
 (0)