Releases: mixpanel/mixpanel-swift
v3.0.0.beta.1
v3.0.0.beta.1 is in parity with v2.9.2 but without the Messages & Experiments feature support.
On Jan 1, 2022, we’ll remove the Messages & Experiments feature from Mixpanel. For now, if you do not use Mixpanel's Messages & Experiments feature, you can choose to opt into this beta version.
You can use Swift Package Manager to install the beta version:
In Xcode, select File > Swift Packages > Add Package Dependency. Follow the prompts using the URL for this repository and point to branch 3.0.0.beta.
v2.9.1 - Crash fixes
v2.9.0 - add clearTimedEvent(event: String) method
This version adds the clearTimedEvent(event: String) method to allow for clearing of individual timed events. This closes #419
v2.8.3 - Bug fixes
v2.8.2 - Bug fixes
v2.8.1 - Bug fixes
Fix events being dropped when flushing if there are corrupted items in the event queue
v2.8.0 - Swift Package Manager support
Add support for Swift Package Manager
- #411, special thanks to @gsabran @MarcSteven and @JonathanDowning!
Important: v2.8.0 release only supports iOS, if you need integrations for other platforms, please use other integration methods instead, we will add support for all platforms soon
Integration steps:
- In Xcode, select File > Swift Packages > Add Package Dependency.
- Follow the prompts using the URL for this repository and a minimum semantic version of v2.8.0
v2.7.7 - Remove IFA/IDFA
Removing using IFA as distinct id
#389
Beginning with this version, Mixpanel no longer uses the IFA(ID for Advertisers) but uses a randomly generated UUID as the default distinct ID instead. After you call reset, Mixpanel generates a new distinct_id by default. This ensures that multiple users on the same device are not assigned the same alias.
If you want to use IFV(identifierForVendor) as the distinct_id, you can set
MIXPANEL_UNIQUE_DISTINCT_ID in build settings Active Compilation Conditions on the Mixpanel framework target. After you call reset, the IFV will not change. However, when a user removes and then re-installs the app, the IFV will change with each installation.
v2.7.6 - Bug fixes
v2.7.5 - Bug fixes
Convert objc_sync_enter lock to GCD
#393