Skip to content

Commit 9b7bd67

Browse files
chore(main): release 0.4.0 (#278)
Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
1 parent 4fb0771 commit 9b7bd67

5 files changed

+24
-5
lines changed

.release-please-manifest.json

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

CHANGELOG.md

+19
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,25 @@
11
# Changelog
22

33

4+
## [0.4.0](https://github.com/googleapis/js-genai/compare/v0.3.1...v0.4.0) (2025-03-14)
5+
6+
7+
### ⚠ BREAKING CHANGES
8+
9+
* remove the createPartFromVideoMetadata usability function.
10+
11+
### Features
12+
13+
* enable union type for Schema when calling Gemini API. ([180983c](https://github.com/googleapis/js-genai/commit/180983c05857344d00133561aeae1e7a46e3475a))
14+
* Provide a better error message when trying to use VertexAI in browsers. ([1ab1402](https://github.com/googleapis/js-genai/commit/1ab14020720e6d0bb47da7785b74aa06fffafca2))
15+
* Support returned safety attributes for generate_images ([a0e0fcf](https://github.com/googleapis/js-genai/commit/a0e0fcfae5b9f6be4d2c9bd2466c91628bfd8623))
16+
* throw exception when given method is not supported in Gemini API or Vertex AI ([96ccb6f](https://github.com/googleapis/js-genai/commit/96ccb6f9d578749fb485735be7f1b164da444029))
17+
18+
19+
### Bug Fixes
20+
21+
* remove the createPartFromVideoMetadata usability function. ([d660a7f](https://github.com/googleapis/js-genai/commit/d660a7f57d3d54239a30fca0a2aeb486b476e7e5))
22+
423
## 0.3.1 (2025-03-11)
524

625
## 0.3.0 (2025-03-11)

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.3.1",
3+
"version": "0.4.0",
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.3.1'; // x-release-please-version
15+
export const SDK_VERSION = '0.4.0'; // 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)