Skip to content

Commit 7cb4a78

Browse files
author
game-workstore-bot
committed
Package Update 8.0.0
1 parent 86061fb commit 7cb4a78

33 files changed

+53
-36
lines changed

CHANGELOG.md

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ features on *iOS* and *Android*:
1313
| Cloud Firestore | FirebaseFirestore.unitypackage |
1414
| Firebase Functions | FirebaseFunctions.unitypackage |
1515
| Firebase Installations | FirebaseInstallations.unitypackage|
16-
| Firebase Instance ID | FirebaseInstanceId.unitypackage |
1716
| Firebase Messaging | FirebaseMessaging.unitypackage |
1817
| Firebase Realtime Database | FirebaseDatabase.unitypackage |
1918
| Firebase Remote Config | FirebaseRemoteConfig.unitypackage |
@@ -171,6 +170,24 @@ Release Notes
171170
- Remote Config: The previously-deprecated class
172171
`FirebaseRemoteConfigDeprecated` and the property
173172
`ConfigSettings.IsDeveloperMode` have been removed.
173+
- Changes
174+
- Firestore: Internal assertions will now trigger C# exceptions (possible
175+
exception types are `ArgumentException`, `InvalidOperationException` and
176+
`FirestoreException` with `ErrorCode` set to `Internal`). These exceptions
177+
are not meant to be caught -- rather, they are to help with debugging and
178+
to avoid crashing the Unity editor instance.
179+
*Important*: on iOS, you would need to change two settings on the exported
180+
XCode project for this feature to work properly. Open `Build Settings` and
181+
make sure that `Enable C++ Exceptions` and `Enable C++ Runtime Types`
182+
settings are set to `Yes` for _all_ of the following: the `Unity-iPhone`
183+
scheme, the `UnityFramework` scheme (for Unity versions 2019.3 and above)
184+
_and_ the `Unity-iPhone` project. If you're doing incremental iOS builds
185+
(i.e., if you use `Append` instead of `Replace` when doing the build),
186+
these settings will persist between rebuilds, so you would only have to do
187+
this once per project.
188+
- Firestore: Fix `RunTransactionAsync()` to roll back the transaction if
189+
the task returned from the given callback faults
190+
((#1042)[https://github.com/firebase/quickstart-unity/issues/1042]).
174191

175192
### 7.2.0:
176193
- Changes

CHANGELOG.md.meta

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Firebase/Editor/DynamicLinksDependencies.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@ FirebaseDynamicLinks iOS and Android Dependencies.
55

66
<dependencies>
77
<iosPods>
8-
<iosPod name="Firebase/DynamicLinks" version="7.11.0" minTargetSdk="9.0">
8+
<iosPod name="Firebase/DynamicLinks" version="8.1.1" minTargetSdk="9.0">
99
</iosPod>
1010
</iosPods>
1111
<androidPackages>
12-
<androidPackage spec="com.google.firebase:firebase-dynamic-links:19.1.1">
12+
<androidPackage spec="com.google.firebase:firebase-dynamic-links:20.1.0">
1313
</androidPackage>
14-
<androidPackage spec="com.google.firebase:firebase-analytics:18.0.3">
14+
<androidPackage spec="com.google.firebase:firebase-analytics:19.0.0">
1515
</androidPackage>
16-
<androidPackage spec="com.google.firebase:firebase-dynamic-links-unity:7.2.0">
16+
<androidPackage spec="com.google.firebase:firebase-dynamic-links-unity:8.0.0">
1717
<repositories>
1818
<repository>Assets/Firebase/m2repository</repository>
1919
</repositories>

Firebase/Editor/DynamicLinksDependencies.xml.meta

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Firebase/Editor/FirebaseDynamicLinks_version-7.2.0_manifest.txt renamed to Firebase/Editor/FirebaseDynamicLinks_version-8.0.0_manifest.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ Assets/Firebase/Plugins/iOS/Firebase.DynamicLinks.dll.mdb
66
Assets/Firebase/Plugins/x86_64/FirebaseCppDynamicLinks.bundle
77
Assets/Firebase/Plugins/x86_64/FirebaseCppDynamicLinks.dll
88
Assets/Firebase/Plugins/x86_64/FirebaseCppDynamicLinks.so
9-
Assets/Firebase/m2repository/com/google/firebase/firebase-dynamic-links-unity/7.2.0/firebase-dynamic-links-unity-7.2.0.pom
10-
Assets/Firebase/m2repository/com/google/firebase/firebase-dynamic-links-unity/7.2.0/firebase-dynamic-links-unity-7.2.0.srcaar
9+
Assets/Firebase/m2repository/com/google/firebase/firebase-dynamic-links-unity/8.0.0/firebase-dynamic-links-unity-8.0.0.pom
10+
Assets/Firebase/m2repository/com/google/firebase/firebase-dynamic-links-unity/8.0.0/firebase-dynamic-links-unity-8.0.0.srcaar
1111
Assets/Firebase/m2repository/com/google/firebase/firebase-dynamic-links-unity/maven-metadata.xml
1212
Assets/Plugins/iOS/Firebase/libFirebaseCppDynamicLinks.a
1313
Assets/package.json

Firebase/Editor/FirebaseDynamicLinks_version-7.2.0_manifest.txt.meta renamed to Firebase/Editor/FirebaseDynamicLinks_version-8.0.0_manifest.txt.meta

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
512 Bytes
Binary file not shown.
19 Bytes
Binary file not shown.

Firebase/Plugins/Firebase.DynamicLinks.dll.mdb.meta

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Firebase/Plugins/Firebase.DynamicLinks.dll.meta

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)