Skip to content

Commit

Permalink
feat: bump Firebase iOS SDK 10.16.0 (#11698)
Browse files Browse the repository at this point in the history
* feat: bump Firebase iOS SDK `10.16.0`

* ci: use `iPhone 15 Pro`

* ci: use `iPhone 14 Pro`

* test(firestore): update exception message test. apple has changed

* Discard changes to .github/workflows/e2e_tests.yaml

* chore: analyze issue
  • Loading branch information
russellwheatley committed Oct 24, 2023
1 parent 4f565b8 commit 666f90e
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2225,8 +2225,13 @@ void runQueryTests() {
.get();
} catch (e) {
expect(
(e as FirebaseException).message,
contains('An error occurred while parsing query arguments'),
(e as FirebaseException)
.message!
.contains('Client specified an invalid argument.') ||
e.message!.contains(
'An error occurred while parsing query arguments',
),
isTrue,
);
expect(e, isA<FirebaseException>());
}
Expand Down Expand Up @@ -2403,10 +2408,13 @@ void runQueryTests() {
.get();
} catch (e) {
expect(
(e as FirebaseException).message,
contains(
'An error occurred while parsing query arguments',
),
(e as FirebaseException)
.message!
.contains('Client specified an invalid argument.') ||
e.message!.contains(
'An error occurred while parsing query arguments',
),
isTrue,
);
expect(e, isA<FirebaseException>());
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1813,8 +1813,13 @@ void runSecondDatabaseTests() {
.get();
} catch (e) {
expect(
(e as FirebaseException).message,
contains('An error occurred while parsing query arguments'),
(e as FirebaseException)
.message!
.contains('Client specified an invalid argument.') ||
e.message!.contains(
'An error occurred while parsing query arguments',
),
isTrue,
);
expect(e, isA<FirebaseException>());
}
Expand Down Expand Up @@ -1876,10 +1881,13 @@ void runSecondDatabaseTests() {
.get();
} catch (e) {
expect(
(e as FirebaseException).message,
contains(
'An error occurred while parsing query arguments',
),
(e as FirebaseException)
.message!
.contains('Client specified an invalid argument.') ||
e.message!.contains(
'An error occurred while parsing query arguments',
),
isTrue,
);
expect(e, isA<FirebaseException>());
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# https://firebase.google.com/support/release-notes/ios
def firebase_sdk_version!()
'10.15.0'
'10.16.0'
end

0 comments on commit 666f90e

Please sign in to comment.