Skip to content

Commit f8b83aa

Browse files
chore(main): release 1.26.0 (#647)
Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
1 parent c1af981 commit f8b83aa

File tree

7 files changed

+32
-7
lines changed

7 files changed

+32
-7
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.25.0"
2+
".": "1.26.0"
33
}

CHANGELOG.md

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

3+
## [1.26.0](https://github.com/googleapis/java-genai/compare/v1.25.0...v1.26.0) (2025-11-05)
4+
5+
6+
### Features
7+
8+
* Add clearXxx methods to data type builders ([a4900c9](https://github.com/googleapis/java-genai/commit/a4900c97ec7c256b45b729ae68404aea4fbf5830))
9+
* add complete stats to BatchJob ([659c65c](https://github.com/googleapis/java-genai/commit/659c65cc777c35ae5dc8ef84caf00f4aa30bb3db))
10+
* Add FileSearch tool and associated FileSearchStore management APIs ([8ada6ef](https://github.com/googleapis/java-genai/commit/8ada6efb0c2b2a2231acc08c952e2fc76e20a29d))
11+
* Add FileSearch tool and associated FileSearchStore management APIs ([e4df737](https://github.com/googleapis/java-genai/commit/e4df73794ef34aabc0ee346a313a6762ce3357fa))
12+
* Add image_size to ImageConfig (Early Access Program) ([c1af981](https://github.com/googleapis/java-genai/commit/c1af981dc19fad22db68126ec6153d9fa20ec734))
13+
* Added phish filtering feature. ([ed4e12c](https://github.com/googleapis/java-genai/commit/ed4e12c44e9fec3c2131a52d995cb0602dc246a0))
14+
* Return response headers for generateContentStream ([82a8118](https://github.com/googleapis/java-genai/commit/82a8118968bb5da37ec81dce83580bd86767bf62))
15+
* Support lists as function parameters in AFC (fixes [#527](https://github.com/googleapis/java-genai/issues/527)) ([452d2e5](https://github.com/googleapis/java-genai/commit/452d2e50a6c13ab94d5de380d32dcb164379a2cb))
16+
17+
18+
### Bug Fixes
19+
20+
* disable AFC when there are AFC incompatible tool presented. ([6099d87](https://github.com/googleapis/java-genai/commit/6099d871ff703606dffbf533a231869725f32bc6))
21+
22+
23+
### Documentation
24+
25+
* add blank line before version update marker ([82616c2](https://github.com/googleapis/java-genai/commit/82616c23be6cf7295049026985d105c5c2993c7a))
26+
* Update Java SDK README spacing ([82616c2](https://github.com/googleapis/java-genai/commit/82616c23be6cf7295049026985d105c5c2993c7a))
27+
328
## [1.25.0](https://github.com/googleapis/java-genai/compare/v1.24.0...v1.25.0) (2025-10-29)
429

530

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ If you're using Maven, add the following to your dependencies:
1616
<dependency>
1717
<groupId>com.google.genai</groupId>
1818
<artifactId>google-genai</artifactId>
19-
<version>1.25.0</version>
19+
<version>1.26.0</version>
2020
</dependency>
2121
</dependencies>
2222
```

examples/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@
55

66
<groupId>com.google.genai.examples</groupId>
77
<artifactId>google-genai-examples</artifactId>
8-
<version>1.26.0-SNAPSHOT</version><!-- {x-version-update:google-genai:current} -->
8+
<version>1.26.0</version><!-- {x-version-update:google-genai:current} -->
99
<name>google-genai-examples</name>
1010

1111
<properties>
1212
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1313
<maven.compiler.source>1.8</maven.compiler.source>
1414
<maven.compiler.target>1.8</maven.compiler.target>
1515
<!-- {x-version-update-start:google-genai:current} -->
16-
<google-genai.version>1.26.0-SNAPSHOT</google-genai.version>
16+
<google-genai.version>1.26.0</google-genai.version>
1717
<!-- {x-version-update-end} -->
1818
</properties>
1919
<build>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<groupId>com.google.genai</groupId>
77
<artifactId>google-genai</artifactId>
88
<name>google-genai</name>
9-
<version>1.26.0-SNAPSHOT</version><!-- {x-version-update:google-genai:current} -->
9+
<version>1.26.0</version><!-- {x-version-update:google-genai:current} -->
1010
<packaging>jar</packaging>
1111
<description>
1212
Java idiomatic SDK for the Gemini Developer APIs and Vertex AI APIs.

src/main/java/com/google/genai/ApiClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
abstract class ApiClient {
4949

5050
// {x-version-update-start:google-genai:released}
51-
private static final String SDK_VERSION = "1.25.0";
51+
private static final String SDK_VERSION = "1.26.0";
5252
// {x-version-update-end:google-genai:released}
5353
private static final Logger logger = Logger.getLogger(ApiClient.class.getName());
5454

versions.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Format:
22
# module:released-version:current-version
33

4-
google-genai:1.25.0:1.26.0-SNAPSHOT
4+
google-genai:1.26.0:1.26.0

0 commit comments

Comments
 (0)