Skip to content

Commit

Permalink
Updated changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
ijunaid committed Oct 18, 2023
1 parent 6f89352 commit 2be04d3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
- Added `requestDropAgeHours` initial config property to set a time limit after which the requests would be removed if not sent to the server
- Added a call to enroll users to A/B tests when getting a remote config value: 'getValueAndEnroll'
- Added a call to enroll users to A/B tests when getting all remote config values: 'getAllValuesAndEnroll'
- Added app version in all API requests.

- Fixed sending '--' as carrier name due to platform changes from iOS version 16.4. This version and above will now not send any carrier information due to platform limitations.
- Mitigated an issue where users could not enroll to an A/B tests if enrollment request has failed
Expand Down
2 changes: 2 additions & 0 deletions CountlyDeviceInfo.m
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@
CLYMetricKey const CLYMetricKeyHasWatch = @"_has_watch";
CLYMetricKey const CLYMetricKeyInstalledWatchApp = @"_installed_watch_app";

NSString* const kCountlyAppVersionKey = @"av";

@interface CountlyDeviceInfo ()
@property (nonatomic) BOOL isInBackground;
#if (TARGET_OS_IOS)
Expand Down
1 change: 0 additions & 1 deletion CountlyPersistency.m
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ @implementation CountlyPersistency
NSString* const kCountlyIsCustomDeviceIDKey = @"kCountlyIsCustomDeviceIDKey";
NSString* const kCountlyRemoteConfigKey = @"kCountlyRemoteConfigKey";
NSString* const kCountlyServerConfigPersistencyKey = @"kCountlyServerConfigPersistencyKey";
NSString* const kCountlyAppVersionKey = @"av";


NSString* const kCountlyCustomCrashLogFileName = @"CountlyCustomCrash.log";
Expand Down

0 comments on commit 2be04d3

Please sign in to comment.