Skip to content

Commit 4a677a4

Browse files
chore(deps): bump libraries-bom from 8.0.0 to 20.4.0 (#558)
* chore(deps): bump libraries-bom from 8.0.0 to 20.4.0 Bumps [libraries-bom](https://github.com/GoogleCloudPlatform/cloud-opensource-java) from 8.0.0 to 20.4.0. - [Release notes](https://github.com/GoogleCloudPlatform/cloud-opensource-java/releases) - [Changelog](https://github.com/GoogleCloudPlatform/cloud-opensource-java/blob/master/CHANGELOG.md) - [Commits](https://github.com/GoogleCloudPlatform/cloud-opensource-java/commits) Signed-off-by: dependabot[bot] <[email protected]> * fix: Removed legacy Firestore API calls Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Hiranya Jayathilaka <[email protected]>
1 parent 3924f85 commit 4a677a4

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -393,7 +393,7 @@
393393
<dependency>
394394
<groupId>com.google.cloud</groupId>
395395
<artifactId>libraries-bom</artifactId>
396-
<version>8.0.0</version>
396+
<version>20.4.0</version>
397397
<type>pom</type>
398398
<scope>import</scope>
399399
</dependency>

src/test/java/com/google/firebase/cloud/FirestoreClientTest.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -69,11 +69,9 @@ public void testFirestoreOptions() throws IOException {
6969
.build());
7070
Firestore firestore = FirestoreClient.getFirestore(app);
7171
assertEquals("explicit-project-id", firestore.getOptions().getProjectId());
72-
assertTrue(firestore.getOptions().areTimestampsInSnapshotsEnabled());
7372

7473
firestore = FirestoreClient.getFirestore();
7574
assertEquals("explicit-project-id", firestore.getOptions().getProjectId());
76-
assertTrue(firestore.getOptions().areTimestampsInSnapshotsEnabled());
7775
}
7876

7977
@Test
@@ -88,13 +86,11 @@ public void testFirestoreOptionsOverride() throws IOException {
8886
.build());
8987
Firestore firestore = FirestoreClient.getFirestore(app);
9088
assertEquals("explicit-project-id", firestore.getOptions().getProjectId());
91-
assertTrue(firestore.getOptions().areTimestampsInSnapshotsEnabled());
9289
assertSame(ImplFirebaseTrampolines.getCredentials(app),
9390
firestore.getOptions().getCredentialsProvider().getCredentials());
9491

9592
firestore = FirestoreClient.getFirestore();
9693
assertEquals("explicit-project-id", firestore.getOptions().getProjectId());
97-
assertTrue(firestore.getOptions().areTimestampsInSnapshotsEnabled());
9894
assertSame(ImplFirebaseTrampolines.getCredentials(app),
9995
firestore.getOptions().getCredentialsProvider().getCredentials());
10096
}

0 commit comments

Comments
 (0)