File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 2
2
3
3
# v0.10.3
4
4
- [ fixed] Fixed a regression in the 4.10.0 Firebase iOS SDK release that
5
- prevented the SDK from communicating with the backend until successfully
6
- authenticating via Firebase Authentication. All reads and writes would
7
- silently be executed only locally rather than being sent as unauthenticated
8
- requests .
5
+ prevented the SDK from communicating with the backend before successfully
6
+ authenticating via Firebase Authentication or after unauthenticating and
7
+ re-authenticating. Reads and writes would silently be executed locally
8
+ but not sent to the backend .
9
9
10
10
# v0.10.2
11
11
- [ changed] When you delete a FirebaseApp, the associated Firestore instances
Original file line number Diff line number Diff line change @@ -94,7 +94,7 @@ @implementation FSTLevelDBMutationQueue {
94
94
+ (instancetype )mutationQueueWithUser : (const User &)user
95
95
db : (std::shared_ptr<DB>)db
96
96
serializer : (FSTLocalSerializer *)serializer {
97
- NSString *userID = user.is_authenticated () ? util::WrapNSStringNoCopy (user.uid ()) : @" " ;
97
+ NSString *userID = user.is_authenticated () ? util::WrapNSString (user.uid ()) : @" " ;
98
98
99
99
return [[FSTLevelDBMutationQueue alloc ] initWithUserID: userID db: db serializer: serializer];
100
100
}
You can’t perform that action at this time.
0 commit comments