8.22.0 (2024-10-02)
8.21.0 (2024-08-24)
8.20.0 (2024-08-12)
8.19.3 (2024-08-05)
8.19.2 (2024-04-24)
- Prevent crashes in multithreaded environments with sqlite. (#495) (7020c95)
- specify resource_bundle vs resource for resources in cocoapods (#493) (f780c12)
8.19.1 (2024-04-05)
- assign deviceId correctly on new device (#492) (a200db0)
- initialize device info before generating the device ID (#491) (7960a7e)
8.19.0 (2024-04-04)
8.18.3 (2024-03-23)
- force push (c4ffb7c)
8.18.2 (2024-03-12)
8.18.1 (2024-02-20)
8.18.0 (2024-02-08)
8.17.2 (2023-09-15)
8.17.1 (2023-07-06)
8.17.0 (2023-07-05)
8.16.4 (2023-06-22)
- avoid global variables in AMPIdentifyInterceptor to fix missing user properties updates (#445) (eb820a2)
8.16.3 (2023-06-15)
8.16.2 (2023-06-14)
8.16.1 (2023-05-30)
- set _inForeground value earlier (#433) (3cee4c2)
- sudo rm appledoc (#444) (53ba490)
- XCode 14 fixes - update iPhone targets to 11, MacOS to 10.15, appledoc (#442) (5c15979)
8.16.0 (2023-04-26)
- update identify collapsing logic to send actions on separate identify event (#437) (9fb64c3)
- updated identify merging logic to ignore nil values (#434) (8e1239c)
8.15.2 (2023-03-08)
8.15.1 (2023-02-21)
8.15.0 (2023-02-15)
8.14.1 (2023-02-08)
8.14.0 (2022-10-05)
8.13.0 (2022-09-08)
8.12.0 (2022-08-10)
8.11.1 (2022-07-31)
8.11.0 (2022-07-19)
8.10.2 (2022-06-21)
8.10.1 (2022-06-15)
8.10.0 (2022-03-31)
8.9.0 (2022-03-30)
- fix release action (5eb7ee6)
8.8.0 (2022-02-10)
8.7.2 (2022-01-23)
8.7.1 (2021-12-22)
8.7.0 (2021-12-17)
8.6.0 (2021-12-08)
8.5.0 (2021-10-22)
8.4.0 (2021-09-24)
- add observe plan information support (62e8bab)
8.3.1 (2021-08-21)
- rename to initCompletionBlock (f43a86c)
8.3.0 (2021-04-30)
8.2.1 (2021-04-01)
8.2.0 (2021-03-18)
8.1.0 (2021-03-16)
8.0.0 (2021-03-06)
7.3.0 (2021-02-22)
7.2.2 (2020-12-23)
7.2.1 (2020-12-02)
- Make resources files to be visible inside xcode project (#313) (64aa1ad)
- SPM macOS/tvOS disable event explorer (#315) (e3e763c)
7.2.0 (2020-10-26)
7.1.1 (2020-10-20)
- buildsettings: Remove override for GCC_WARN_INHIBIT_ALL_WARNINGS (#302) (0e55297)
- deprecation warnings: Fix deprecation warnings (#301) (e7b0e6e), closes /github.com/amplitude/Amplitude-iOS/issues/250#issuecomment-655224554
- deprecations: Use DEPRECATED_MSG_ATTRIBUTE instead of notes (#305) (f501c6c)
- nil dynamic config refresh crash (#288) (#289) (9dc896d)
- Swift UserId and DeviceId setter (#299) (b7c0f90)
- Explicitly add files in Resources for SPM (#292) (61da6d3)
- Add support to view/copy userId, deviceId to use Event Explorer (BETA). NOTE: This feature doesn't support Swift Package Manager yet.
- Removed Amplitude-iOS.podspec from repo.
Background: Users reported that IDFA MACRO still do not prevent app rejections. So we make both idfa and location tracking to be fully customer driven.
- Add
adSupportBlock
to let idfa tracking to be customer driven. - Add
locationInfoBlock
to let location tracking to be customer driven. - Remove
enableLocationListening
,disableLocationListening
andupdateLocation
APIs.
- To accommodate the new rules over IDFA in iOS 14, we make some changes over our IDFA logic.
- Added
AMPLITUDE_IDFA_TRACKING
MACRO to control if IDFA logic is included in the binary. - Removed
disableIdfaTracking
API. - Documentation
- Introducing
useDynamicConfig
flag!! Turning this flag on will find the best server url automatically based on users' geo location. - Note 1. If you have your own proxy server and use
setServerUrl
API, please leave this OFF. - Note 2. If you have users in China Mainland, we suggest you turn this on.
- Note 3. By default, this feature is OFF. So you need to explicitly set it to ON to use it.
- Removed obsolete certificates used for SSL Pinning before.
- Fixed an implementation issue in SSL pinning. If you're using SSL pinning, please update your SDK ASAP.
- Added APIs to
Amplitude
to let users setlibrary
name and version. This should be only used when you develop your own library which wraps Amplitude iOS SDK.
- Now macOS support!
- Covered both cases. (1) pure macOS App, (2) Mac Catalyst (Running iPad App on macOS)
- NOTE 1: CocoaPods users!
Amplitude-iOS
pod is deprecated (4.10.0 is the last version we support). Please use the new oneAmplitude
going forward. - NOTE 2: If you encounter any issues when instrumenting your macOS App, please reach out to us!
- NOTE 3: Minimum supported iOS version is now 10.0 instead of 8.0 in the past. We made this decision since usages for 9.0 and 8.0 are extremely low now. (<= 1%)
- Now you can enable or disable COPPA (Children's Online Privacy Protection Act) restrictions on IDFA, IDFV, city, IP address and location tracking.
- To enable COPPA, please call
[[Amplitude instance] enableCoppaControl];
. - To disable COPPA, please call
[[Amplitude instance] disableCoppaControl];
. - Fix partial truncation for string with unicode (e.g. emoji).
- Fix error for not finding declaration for NSObject when using Swift Package Manager
- Added support for Swift Package Manager. Thanks @mayur1407 to add the support.
- Ensure background tasks are always ended and add safeguard before retrieving the app by checking for valid uploadTaskID
- Suppress NSLogs for non-dev environments.
- Identify Macs for Mac Catalyst support.
- Fix issue where tag wasn't included in tag spec
- Fix bug where background task might be stopped before final events are flushed
- Revert logic to restore db from memory on potential db resets
- Add support for installing on tvOS platform via Carthage
- Do not use IDFV or IDFA for device ID if disabled via tracking options
- Close Sqlite DB object even if open fails
- Made
startOrContinueSession
public method. Only call this if you know what you are doing. This may trigger a new session to start. - Properly end background event flush task
- Increased minimum iOS deployment target to 8.0
- Add ability to set a custom server URL for uploading events using
setServerUrl
.
- Add ability to set group properties via a new
groupIdentifyWithGroupType
method that takes in anAMPIdentify
object as well as a group type and group name.
- Update SDK to better handle SQLite Exceptions.
- Add
AMPTrackingOptions
interface to customize the automatic tracking of user properties in the SDK (such as language, ip_address, platform, etc). See Help Center Documentation for instructions on setting up this configuration.
- Fix a bunch of compiler warnings
- Fix SSLPinning import so that it doesn't corrupt debug console. Thanks to @rob-keepsafe for the PR
- Added a
setUserId
method with optional boolean argumentstartNewSession
, which whenYES
starts a new session after changing the userId.
- Add option to disable IDFA tracking. To disable IDFA tracking call
[[Amplitude instance] disableIdfaTracking];
before initializing with your API key.
- Fix bug where events in the initial session for brand new users have a session id of -1 (introduced in v4.0.2).
- Fix unknown carrier caching. This fixes "Could not successfully update network info during initialization" warnings when logging events on devices without SIM cards.
- Ensure the foreground checker in
initializeApiKey
runs on the main thread. This fixes the "UI API called on a background thread" warning. - Removing unnecessary try / catch when looking up device carrier.
- Lowering minimum required iOS version down to 7.0.
- Minimum required iOS version is now 9.0
- Removed deprecated methods, fixed warnings in Xcode 9, adding support for iOS 11.
- Migrate setup instructions and SDK documentation in the README file to Zendesk articles.
- Catch exceptions when looking up device carrier.
- Fix build warnings caused by certificate files in the Podfile. Thanks to @benasher44 for the PR.
- Fix warnings for missing new line at end of files. Thanks to @teanet for reporting.
- Fix linker warnings when using Amplitude framework in an extension target. Thanks to @r-peck for the PR.
- Add support for enabling SSL-pinning via Cocoapods. Thanks to @aaronwasserman for the PR. See Readme for more information.
- Add support for tvOS. Thanks to @gabek for the original PR. See Readme for more information.
- Bump iOS minimum deployment target to 6.0.
- Update device list. Thanks to @subbotkin for the PR.
- Fix bug where
regenerateDeviceId
was not being run on background thread. [AMPDeviceInfo generateUUID]
should be a static method.
- Add helper method to regenerate a new random deviceId. This can be used in conjunction with
setUserId:nil
to anonymize a user after they log out. Note this is not recommended unless you know what you are doing. See Readme for more information.
- Allow
logEvent
with a custom long long timestamp (milliseconds since epoch). See iOS documentation for more details.
- Allow
logEvent
with a custom timestamp (milliseconds since epoch). If the timestamp value isnil
, then the event is timestamped with the current time. If setting a custom timestamp, you should use[NSNumber numberWithLongLong:milliseconds]
. See iOS documentation for more details.
- Enable "Weak References in Manual Retain Release" to fix build errors in Xcode 7.3 and up.
- Add ability to log identify events outOfSession, this is useful for updating user properties without triggering session-handling logic. See Readme for more information.
- Switch to unarchiving unsent events archive file with
[NSKeyedUnarchiver unarchiveObjectWithFile]
to iOS 9's[NSKeyedUnarchiver unarchiveTopLevelObjectWithData]
. Note: this only affects you if you are upgrading from an SDK version older than v3.1.0 straight to v3.9.0 or newer. Users who have not updated to iOS 9.0 or newer will lose any unsent events stored on their devices. This also removes all Objective-C Exceptions (@try/@catch) from the SDK, removing the need to toggleEnable Objective-C Exceptions
in Xcode. - Block event property and user property dictionaries that have more than 1000 items. This is to block properties that are set unintentionally (for example in a loop). A single call to
logEvent
should not have more than 1000 event properties. Similarly a single call tosetUserProperties
should not have more than 1000 user properties.
- Fix crash by handling NULL events saved to and fetched from the database.
- Added support for integration via Carthage. Thanks to @mpurland for the original PR. Thanks to @lexrus for follow up PR to fix framework naming.
- Cleaned up warnings for expression result unused.
- Note if you installed 3.8.4 on August 18, just rerun
pod install
orcarthage update
to pull in the new changes. The re-release was to fix the Carthage framework naming.
- Fix overflow bug for long long values saved to Sqlite DB on 32-bit devices.
productId
is no longer a required field forRevenue
logged vialogRevenueV2
.- Fix bug where revenue receipt was being truncated if it was too long (exceeded 1024 characters);
- Allow ability to silence error messages. Note error messages are printed by default. To disable error logging, change
AMPLITUDE_LOG_ERRORS
from1
to0
inAmplitude.m
.
- Add support for iOS Extensions. See the Readme for instructions, or check out our iOS-Extension-Demo. Credit to @andyyc for the original PR.
- Fix bug where subsequent calls to
initializeApiKey
after the first were not being ignored. - Guard debug log statements with a debug flag (disabled by default). To enable debug logging, change
AMPLITUDE_DEBUG
from0
to1
at the top of the Objective-C file you wish to examine.
- Add documentation for SDK functions. You can take a look here. A link has also been added to the Readme.
- Updated device mapping with iPhone SE, iPad Mini 4, and iPad Pro.
- Fix crash during upgradePrefs in the init method. This bug affected app users who were upgrading from an old version of an app using Amplitude iOS v2.1.1 or earlier straight to a version of the app using Amplitude iOS v3.6.0 or later.
- Add helper method
getSessionId
to expose the current sessionId value. - Add support for setting groups for users and events. See Readme for more information.
- Add logRevenueV2 and new Revenue class to support logging revenue events with properties, and revenue type. See Readme for more info.
- Add support for prepend user property operation.
- Fix support for 32-bit devices. Switch to using sqlite3.0, and cast return values from sqlite3.
- Add support for logging events to multiple Amplitude apps. See Readme for details.
- Add ability to clear all user properties.
- Guarding AMPDatabaseHelper logging with a debug flag.
- Remove dependency on FMDB, use built-in SQLite3 library.
- Updated DeviceInfo platform strings, added iPhone 6s, iPhone 6s Plus, iPod Touch 6G.
- Fix bug to make sure events can be serialized before saving.
- Add support for append user property operation.
- Add ability to force the SDK to update with the user's latest location.
- Handle NaNs and exceptions from NSJSONSerialization during event data migration.
- Fix bug where logEvent checks session when logging start/end session events.
- Update DatabaseHelper to work with long longs instead of longs.
- Add ability to set custom deviceId.
- Add support for user property operations (set, setOnce, add, unset).
- Add ability to go offline (disable sending logged events to server).
- Fix bug where event and identify queues are not truncated if eventMaxCount is less than eventRemoveBatchSize.
- Fix bug where fetching nil/null values from database causes crash.
- Switch to using FMDB/standard.
- Migrate events data to Sqlite database.
- Fix bug where end session event was not being sent upon app reopen.
- Fix bug in database path.
- Fix uploadEventsWithDelay bug not triggering uploadEvents.
- Fix crash when dictionaries are deallocated during logEvent.
- Simplified session tracking. minTimeBetweenSessionsMillis default changed to 5 minutes. Removed sessionTimeoutMillis. No longer send start/end session events by default.
- Can now clear userId by setting to nil (subsequent logged events will be anonymous).
- Fix crash when array or dictionary is modified during JSON serialization.
- Static methods are now deprecated. Use the [Amplitude instance] singleton instead.
- Enable configuration of eventUploadThreshold, eventMaxCount, eventUploadMaxBatchSize, eventUploadPeriodSeconds, minTimeBetweenSessionsMillis, and sessionTimeoutMillis.
- Expose the startSession method publicly. Can be used to start a session for a user interaction that happens while the app is in the background, for example, changing tracks on background audio.
- No longer starts a session if the app is in the background when the SDK is initialized. Prevents logging of silent push notifications from starting a session and counting a user visit. This changes the previous default behavior. To maintain the previous behavior, use initializeApiKey:apiKey:userId:startSession and set startSession to true.
- Add opt out method to disable logging for a user
- Fix CLLocationManager authorization constants warning
- Add method for adding new user properties without replacing. Make it default
- Fix base64 string deprecation warning
- Fixed regressive crash on updateLocation. Fixes issue #22
- Fix bug where start session is called more than once when app enters foreground
- Change SDK to use a singleton instead of class methods
- Initialize deviceId properly in _getDeviceId. Fixes issue #20
- Fixed AMPDeviceInfo for non-ARC applications
- Update field names
- Split platform and os
- Send library information
- Fix long long to long warning
- Fix non-retained CTTelephonyNetworkInfo object
- Remove unused methods getPlatformString, getPhoneModel, and replaceWithJSONNull
- Change some method signatures to be cleaner
- Fix race condition setting session id
- Fix double release for CTTelephonyNetworkInfo
- Fix memory leak in generateUUID
- Send IDFA and IDFV
- Change data directory to be NSLibraryDirectory instead of NSCachesDirectory
- Ensure events are JSON serializable
- Cache device id in getDeviceId
- Add logRevenue method with receipt options
- Fix bug with ending on background task prematurely
- Added LICENSE file
- Fix bug where session id didn't match session start timestamp
- Lowered advertiserID version requirement to 6.0 and up
- Added advertisingIdentifier as an optional device identifier
- Fix bug when flushQueue dictionary value setting to empty array
- Changed reupload to only occur when beyond the number of max events to store locally
- Removed mac address, advertiser ID from user tracked
- Switched to identiferForVendor, otherwise randomly generated ID.
- Renamed customProperties to eventProperties
- Removed redundant saving of apiProperties in each event
- Removed campaign tracking code
- Renamed globalProperties to userProperties
- Fixing background task bug when app is minimized and maximized quickly a few times causing a dangling task to never be ended
- Fix warning by explicitly cast NSMakeRange arguments to int
- Fix bug with creating location manager off the main thread
- Save deviceId in local storage to ensure consistency
- Added iOS7 forward compatibility by using advertiserId by default on iOS7.0+
- Generate random UUID on mac address failure
- Fixed rare location access concurency bug
- Switch to native NSJSONSerialization
- Initial packaged release