File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 1+ # Unreleased
2+ - [ fixed] Mark two internal properties as ` atomic ` to prevent concurrency
3+ related crash. (#13898 )
4+
15# 11.0.0
26- [ fixed] RemoteConfigValue stringValue is now ` nonnull ` . This may break some builds. (#10870 )
37- [ removed] ** Breaking change** : The deprecated ` FirebaseRemoteConfigSwift `
Original file line number Diff line number Diff line change 4141// / Device data version of checkin information.
4242@property (nonatomic , copy ) NSString *deviceDataVersion;
4343// / InstallationsID.
44- @property (nonatomic , copy ) NSString *configInstallationsIdentifier;
44+ // / @note The property is atomic because it is accessed across multiple threads.
45+ @property (atomic , copy ) NSString *configInstallationsIdentifier;
4546// / Installations token.
46- @property (nonatomic , copy ) NSString *configInstallationsToken;
47+ // / @note The property is atomic because it is accessed across multiple threads.
48+ @property (atomic , copy ) NSString *configInstallationsToken;
4749
4850// / A list of successful fetch timestamps in milliseconds.
4951// / TODO Not used anymore. Safe to remove.
You can’t perform that action at this time.
0 commit comments