Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Changelog

## [v1.10.0](https://github.com/mixpanel/mixpanel-java/tree/v1.10.0) (2026-07-24)

### Features
- add Source discriminated union with Fallback.Reason (SDK-79) ([#89](https://github.com/mixpanel/mixpanel-java/pull/89))

### Fixes
- guard polling start so concurrent callers don't leak executors (SDK-81) ([#91](https://github.com/mixpanel/mixpanel-java/pull/91))
- keep polling alive when fetch throws a Throwable (SDK-86) ([#93](https://github.com/mixpanel/mixpanel-java/pull/93))
- surface dropped exposure when distinct_id missing from context (SDK-84) ([#90](https://github.com/mixpanel/mixpanel-java/pull/90))

[Full Changelog](https://github.com/mixpanel/mixpanel-java/compare/v1.9.0...v1.10.0)

## [v1.9.0](https://github.com/mixpanel/mixpanel-java/tree/v1.9.0) (2026-05-29)

### Fixes
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
This is the official Mixpanel tracking library for Java.

##### _May 29, 2026_ - [v1.9.0](https://github.com/mixpanel/mixpanel-java/releases/tag/v1.9.0)
##### _July 24, 2026_ - [v1.10.0](https://github.com/mixpanel/mixpanel-java/releases/tag/v1.10.0)

## Latest Version

Expand All @@ -10,7 +10,7 @@ See the [releases page](https://github.com/mixpanel/mixpanel-java/releases) for
<dependency>
<groupId>com.mixpanel</groupId>
<artifactId>mixpanel-java</artifactId>
<version>1.9.0</version>
<version>1.10.0</version>
</dependency>
```

Expand Down Expand Up @@ -59,7 +59,7 @@ To enable high-performance serialization, add the Jackson extension to your proj
<dependency>
<groupId>com.mixpanel</groupId>
<artifactId>mixpanel-java-extension-jackson</artifactId>
<version>1.9.0</version>
<version>1.10.0</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion mixpanel-java-extension-jackson/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>com.mixpanel</groupId>
<artifactId>mixpanel-java-extension-jackson</artifactId>
<version>1.9.0</version>
<version>1.10.0</version>
<packaging>jar</packaging>
<name>Mixpanel Java SDK - Jackson Extension</name>
<description>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

<groupId>com.mixpanel</groupId>
<artifactId>mixpanel-java</artifactId>
<version>1.9.0</version>
<version>1.10.0</version>
<packaging>jar</packaging>
<name>mixpanel-java</name>
<description>
Expand Down