Skip to content

Commit a1678e6

Browse files
author
Cynthia Jiang
committed
Merge remote-tracking branch 'origin/master' into ghm
2 parents 255b849 + e883ab4 commit a1678e6

File tree

8 files changed

+609
-330
lines changed

8 files changed

+609
-330
lines changed

cmake/android_dependencies.cmake

Lines changed: 13 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,16 @@
1616

1717
set(FIREBASE_APP_ANDROID_DEPS
1818
"com.google.firebase:firebase-common:20.0.0"
19-
"com.google.firebase:firebase-analytics:19.0.0"
19+
"com.google.firebase:firebase-analytics:20.0.0"
2020
)
2121

2222
set(FIREBASE_ANALYTICS_ANDROID_DEPS
23-
"com.google.firebase:firebase-analytics:19.0.0"
23+
"com.google.firebase:firebase-analytics:20.0.0"
2424
)
2525

2626
set(FIREBASE_AUTH_ANDROID_DEPS
2727
"com.google.firebase:firebase-auth:21.0.1"
28-
"com.google.firebase:firebase-analytics:19.0.0"
28+
"com.google.firebase:firebase-analytics:20.0.0"
2929
)
3030

3131
set(FIREBASE_CRASHLYTICS_ANDROID_DEPS
@@ -34,32 +34,31 @@ set(FIREBASE_CRASHLYTICS_ANDROID_DEPS
3434
)
3535

3636
set(FIREBASE_DATABASE_ANDROID_DEPS
37-
"com.google.firebase:firebase-database:20.0.0"
38-
"com.google.firebase:firebase-analytics:19.0.0"
37+
"com.google.firebase:firebase-database:20.0.3"
38+
"com.google.firebase:firebase-analytics:20.0.0"
3939
)
4040

4141
set(FIREBASE_DYNAMIC_LINKS_ANDROID_DEPS
4242
"com.google.android.gms:play-services-appinvite:18.0.0"
43-
"com.google.firebase:firebase-analytics:19.0.0"
43+
"com.google.firebase:firebase-analytics:20.0.0"
4444
)
4545

4646
set(FIREBASE_FUNCTIONS_ANDROID_DEPS
47-
"com.google.firebase:firebase-functions:20.0.0"
48-
"com.google.firebase:firebase-analytics:19.0.0"
47+
"com.google.firebase:firebase-functions:20.0.1"
48+
"com.google.firebase:firebase-analytics:20.0.0"
4949
)
5050

5151
set(FIREBASE_MESSAGING_ANDROID_DEPS
52-
"com.google.firebase:firebase-messaging:22.0.0"
53-
"com.google.firebase:firebase-analytics:19.0.0"
54-
"com.google.firebase:firebase-iid:21.1.0"
52+
"com.google.firebase:firebase-messaging:23.0.0"
53+
"com.google.firebase:firebase-analytics:20.0.0"
5554
)
5655

5756
set(FIREBASE_REMOTE_CONFIG_ANDROID_DEPS
58-
"com.google.firebase:firebase-config:21.0.0"
59-
"com.google.firebase:firebase-analytics:19.0.0"
57+
"com.google.firebase:firebase-config:21.0.1"
58+
"com.google.firebase:firebase-analytics:20.0.0"
6059
)
6160

6261
set(FIREBASE_STORAGE_ANDROID_DEPS
6362
"com.google.firebase:firebase-storage:20.0.0"
64-
"com.google.firebase:firebase-analytics:19.0.0"
63+
"com.google.firebase:firebase-analytics:20.0.0"
6564
)

docs/readme.md

Lines changed: 48 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -163,15 +163,60 @@ Support
163163

164164
Release Notes
165165
-------------
166-
### 8.5.0:
166+
### UNRELEASED
167+
- Changes
168+
- Storage: Added a method to access the url of a storage instance.
169+
170+
### 8.7.0:
171+
- Changes
172+
- General (iOS): Fixed an intermittent crash on iOS 15 caused by
173+
constructing C++ objects during Objective-C's `+load` method.
174+
([#706](https://github.com/firebase/firebase-cpp-sdk/pull/706))
175+
([#783](https://github.com/firebase/firebase-cpp-sdk/pull/783))
176+
- Crashlytics (Android): Fixed a bug that prevented some Crashlytics session
177+
files from being removed after the session ended. All session-specific
178+
files are now properly cleaned up.
179+
([#737](https://github.com/firebase/firebase-cpp-sdk/issues/737))
180+
181+
### 8.6.2:
167182
- Changes
168-
- General (iOS): iOS SDKs are now built using Xcode 13.0.0.
183+
- Messaging (Android): Clean up callbacks on termination, to possibly fix
184+
ANR issues in CheckAndFixDependenciesAsync
185+
([#1160](https://github.com/firebase/quickstart-unity/issues/1160)).
186+
187+
### 8.6.1:
188+
- Changes
189+
- Crashlytics (Android): Updated the pinned dependency to fix a missing
190+
method error
191+
([#1177](https://github.com/firebase/quickstart-unity/issues/1177)).
192+
193+
### 8.6.0:
194+
- Changes
195+
- General (Android): Minimum SDK version is now 19.
196+
- General: Variant double type now supports 64-bit while saving to json.
197+
([#1133](https://github.com/firebase/quickstart-unity/issues/1133)).
198+
- Firestore: Released to general availability for Android and iOS (desktop
199+
support remains in beta).
200+
- Firestore (iOS): Fixed intermittent crashes and empty results when
201+
retrieving the contents of a document.
202+
([#1171](https://github.com/firebase/quickstart-unity/issues/1171)).
203+
- Firestore (iOS): Fixed intermittent "start after" query filters failing
204+
to have any effects on the queries.
205+
- Firestore (iOS): Fixed intermittent cases where specifying
206+
ServerTimestampBehavior.Previous would return empty values instead of the
207+
previous values.
169208
- Crashlytics: Improved crash reporting for Unity Android apps using the
170209
IL2CPP scripting backend. To display symbolicated IL2CPP stack traces in
171210
the Crashlytics console, Android customers will need to upload symbol
172211
files for their builds. See the [Getting Started with Crashlytics Unity]
173212
(https://firebase.google.com/docs/crashlytics/get-started?platform=unity)
174-
Guild for more details.
213+
Guide for more details.
214+
- Messaging (Android): Fixed crash resulting in ANR on termination.
215+
([#1151](https://github.com/firebase/quickstart-unity/issues/1151)).
216+
217+
### 8.5.0:
218+
- Changes
219+
- General (iOS): iOS SDKs are now built using Xcode 13.0.0.
175220
- Firestore: Fixed an issue where the `Equals()` and `GetHashCode()` methods
176221
of `DocumentSnapshot` would sometimes be inconsistent
177222
([#8647](https://github.com/firebase/firebase-ios-sdk/pull/8647)).

0 commit comments

Comments
 (0)