Skip to content

Commit abb4761

Browse files
authored
Updating changelog for 3.5.3 and fixing verify errors (#528)
1 parent b00f951 commit abb4761

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Version 3.5.3 (Dec 3, 2025)
2+
- [New](https://github.com/segmentio/analytics-java/pull/526) Improved shutdown process
3+
- [New](https://github.com/segmentio/analytics-java/pull/517) Support (de)serializing Instant objects to support newer java versions
4+
15
# Version 3.5.2 (May 12, 2025)
26
- [Chore] Depenency upgrades
37

analytics-core/src/main/java/com/segment/analytics/http/UploadResponse.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,8 @@
77
@AutoGson
88
public abstract class UploadResponse {
99
public abstract boolean success();
10+
11+
public static UploadResponse create(boolean success) {
12+
return new AutoValue_UploadResponse(success);
13+
}
1014
}

0 commit comments

Comments
 (0)