Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions FirebaseRemoteConfig/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# Unreleased
- [fixed] Remote Config Realtime updates now trigger when a parameter's experiment
or variant assignment changes, ensuring more accurate A/B test analytics and
consistent user experiences.

# 12.12.0
- [added] Introduced a new `configUpdates` property to `RemoteConfig` that
provides an `AsyncSequence` for consuming real-time config updates.
Expand Down
3 changes: 2 additions & 1 deletion FirebaseRemoteConfig/Sources/RCNConfigContent.h
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ typedef NS_ENUM(NSInteger, RCNDBSource) {
- (void)activateRolloutMetadata:(void (^)(BOOL success))completionHandler;

/// Returns the updated parameters between fetched and active config.
- (FIRRemoteConfigUpdate *)getConfigUpdateForNamespace:(NSString *)FIRNamespace;
- (void)getConfigUpdateForNamespace:(NSString *)FIRNamespace
completionHandler:(void (^)(FIRRemoteConfigUpdate *update))completionHandler;

@end
Loading
Loading