We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b00f951 commit abb4761Copy full SHA for abb4761
CHANGELOG.md
@@ -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
+
5
# Version 3.5.2 (May 12, 2025)
6
- [Chore] Depenency upgrades
7
analytics-core/src/main/java/com/segment/analytics/http/UploadResponse.java
@@ -7,4 +7,8 @@
@AutoGson
8
public abstract class UploadResponse {
9
public abstract boolean success();
10
11
+ public static UploadResponse create(boolean success) {
12
+ return new AutoValue_UploadResponse(success);
13
+ }
14
}
0 commit comments