From e928ed34e1a96a44c6f8870eb89269f04e975b64 Mon Sep 17 00:00:00 2001 From: Nick Cooke Date: Thu, 14 Sep 2023 00:53:01 -0400 Subject: [PATCH] Add changelog entries --- Firestore/CHANGELOG.md | 6 ++++++ Firestore/Swift/CHANGELOG.md | 12 ++++++++++++ 2 files changed, 18 insertions(+) diff --git a/Firestore/CHANGELOG.md b/Firestore/CHANGELOG.md index 00de6e5d8680..9223221255ee 100644 --- a/Firestore/CHANGELOG.md +++ b/Firestore/CHANGELOG.md @@ -1,3 +1,9 @@ +# Unreleased +- [feature] The `FirebaseFirestore` module now contains Firebase Firestore's + Swift-only APIs that were previously only available via the + `FirebaseFirestoreSwift` extension SDK. See the + `FirebaseFirestoreSwift` release note from this release for more details. + # 10.15.0 - [feature] Add the option to allow the SDK to create cache indexes automatically to improve query execution locally. (#11596) diff --git a/Firestore/Swift/CHANGELOG.md b/Firestore/Swift/CHANGELOG.md index a176d7c4e118..535138cc9e6c 100644 --- a/Firestore/Swift/CHANGELOG.md +++ b/Firestore/Swift/CHANGELOG.md @@ -1,3 +1,15 @@ +Unreleased +- [deprecated] `FirebaseFirestoreSwift` has been deprecated, and will be + removed in a future release. All of the public API from + `FirebaseFirestoreSwift` can now be accessed through the + `FirebaseFirestore` module. To migrate, delete imports of + `FirebaseFirestoreSwift` and remove the module as a dependency to your + project. If applicable, any APIs namespaced with + `FirebaseFirestoreSwift` can now be namespaced with + `FirebaseFirestore`. Additionally, if applicable, + `@testable import FirebaseFirestoreSwift` should be replaced with + `@testable import FirebaseFirestore`. + # 10.12.0 - [added] Added support animations on the `@FirestoreQuery` property wrapper.