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
2 changes: 2 additions & 0 deletions Firestore/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
- [added] Added support for Firebase AppCheck.
- [fixed] Fix a crash if `[FIRTransaction getDocument]` was called after
`[FIRFirestore terminateWithCompletion]` (#8760).
- [fixed] Fixed a performance issue due to repeated schema migrations
at app startup (#8791).

# v8.6.0
- [changed] Internal refactor to improve serialization performance.
Expand Down
1 change: 1 addition & 0 deletions Firestore/core/src/local/leveldb_migrations.cc
Original file line number Diff line number Diff line change
Expand Up @@ -375,6 +375,7 @@ void RewriteTargetsCanonicalIds(leveldb::DB* db,
transaction.Put(new_key, empty_buffer);
}

SaveVersion(7, &transaction);
transaction.Commit();
}

Expand Down