Releases: mixpanel/mixpanel-flutter
Releases · mixpanel/mixpanel-flutter
v2.4.1
What's Changed
- Bump mixpanel-swift version to 5.0.0 by @jaredmixpanel in #187
- Update release.yml to run on ubuntu-latest by @jaredmixpanel in #188
Full Changelog: v2.4.0...v2.4.1
Release v2.4.0
Release v2.3.4
Release v2.3.3
Release v2.3.2
Release v2.3.1
Release v2.3.0
Release 2.2.0
v2.2.0 (2023-11-17)
Enhancements
- add api: setFlushBatchSize #102
/// Set the number of events sent in a single network request to the Mixpanel server.
/// By configuring this value, you can optimize network usage and manage the frequency of communication between the client
/// and the server. The maximum size is 50; any value over 50 will default to 50.
/// * [flushBatchSize] an int representing the number of events sent in a single network request.
void setFlushBatchSize(int flushBatchSize) {
_channel.invokeMethod<void>('setFlushBatchSize',
<String, dynamic>{'flushBatchSize': flushBatchSize});
}
- bump iOS to
4.2.0
Release v2.1.1
Release v2.1.0
v2.1.0 (2023-03-06)
NOTE:
- From this version we will prefix randomly generated device-specific distinct_ids with "$device:". The prefix is applied the next time a new random ID is generated, any IDs generated by previous SDK versions and persisted on the device will continue to be used as-is until reset is called to generate a new ID. This does not change the value sent for the $device_id property, which will continue to be the randomly-generated ID without a prefix. Mixpanel's $identify endpoint has been updated to accept UUIDs with this prefix to coordinate with this change.
Enhancements
- bump ios to 4.0.5 and android to 7.3.0 #99