Merge pull request #1058 from firebase/rpb/firestore-1.2.2

Release Firestore Emulator v1.2.2
This commit is contained in:
Ryan Brewster
2018-12-10 10:23:34 -08:00
committed by GitHub
2 changed files with 4 additions and 2 deletions

View File

@@ -0,0 +1,2 @@
fixed - Firestore Emulator bug when running in Java 10 + Java 11 environments (due to better system clock granularity)
changed - Firestore Emulator now binds to IPv6 loopback address by default (previous behavior was to bind to "localhost", which was usually IPv4-only). This improves gRPC performance significantly due to https://github.com/grpc/grpc/issues/17282.

View File

@@ -24,8 +24,8 @@ const _emulators = {
stdout: null,
cacheDir: CACHE_DIR,
remoteUrl:
"https://storage.googleapis.com/firebase-preview-drop/emulator/cloud-firestore-emulator-v1.2.1.jar",
localPath: path.join(CACHE_DIR, "cloud-firestore-emulator-v1.2.1.jar"),
"https://storage.googleapis.com/firebase-preview-drop/emulator/cloud-firestore-emulator-v1.2.2.jar",
localPath: path.join(CACHE_DIR, "cloud-firestore-emulator-v1.2.2.jar"),
},
};