Skip to content

Commit 7fe5313

Browse files
chore(main): release 0.7.0 (#363)
Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
1 parent 12a6e71 commit 7fe5313

5 files changed

+23
-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.1"
2+
".": "0.7.0"
33
}

CHANGELOG.md

+18
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,24 @@
11
# Changelog
22

33

4+
## [0.7.0](https://github.com/googleapis/js-genai/compare/v0.6.1...v0.7.0) (2025-03-27)
5+
6+
7+
### ⚠ BREAKING CHANGES
8+
9+
* Change File.sizeBytes from number type to string type
10+
11+
### Features
12+
13+
* Add experimental generate_video support ([0fa1f05](https://github.com/googleapis/js-genai/commit/0fa1f053e3904f72218ad19b44e42acf180e8364))
14+
* add MediaModalities for ModalityTokenCount ([9869098](https://github.com/googleapis/js-genai/commit/98690986bccb7e13707cd283a71c7ce6e1ccccb0))
15+
16+
17+
### Bug Fixes
18+
19+
* Change File.sizeBytes from number type to string type ([184c7db](https://github.com/googleapis/js-genai/commit/184c7db957e7abb0e572660272f717f1b40abac1))
20+
* Update tLiveClienttToolResponse() to accept FunctionResponse[] ([4cab8bf](https://github.com/googleapis/js-genai/commit/4cab8bfe19dab6ac6708e9d3f6e5ab6bba6969f1))
21+
422
## [0.6.1](https://github.com/googleapis/js-genai/compare/v0.6.0...v0.6.1) (2025-03-25)
523

624

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