From 9d7efd041de95df8203035016aed87425965dc28 Mon Sep 17 00:00:00 2001 From: "Ryan P. Brewster" Date: Fri, 7 Dec 2018 11:53:43 -0800 Subject: [PATCH 1/4] Release Firestore Emulator v1.2.2 --- src/emulator/constants.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/emulator/constants.js b/src/emulator/constants.js index d8dd856e..7996e59a 100644 --- a/src/emulator/constants.js +++ b/src/emulator/constants.js @@ -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"), }, }; From cd1f48a0193375a4eb6cc4086395faee47ac61a1 Mon Sep 17 00:00:00 2001 From: "Ryan P. Brewster" Date: Fri, 7 Dec 2018 12:32:22 -0800 Subject: [PATCH 2/4] Add changelog --- changelog.txt | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/changelog.txt b/changelog.txt index e69de29b..4365fd0e 100644 --- a/changelog.txt +++ b/changelog.txt @@ -0,0 +1,5 @@ +Firestore Emulator: +- Fix bug when running in Java 10 + Java 11 environments (due to better system clock granularity) +- Add explicit IPv6 bindings by default (previous behavior was to bind to + "localhost", which was usually IPv4-only). This improves gRPC performance + significantly due to grpc/grpc#17282. From 031f2321922aaf8370276fe2e6f2994565eaa22d Mon Sep 17 00:00:00 2001 From: "Ryan P. Brewster" Date: Fri, 7 Dec 2018 13:34:18 -0800 Subject: [PATCH 3/4] changelog format --- changelog.txt | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/changelog.txt b/changelog.txt index 4365fd0e..5388a7b9 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,5 +1,2 @@ -Firestore Emulator: -- Fix bug when running in Java 10 + Java 11 environments (due to better system clock granularity) -- Add explicit IPv6 bindings by default (previous behavior was to bind to - "localhost", which was usually IPv4-only). This improves gRPC performance - significantly due to grpc/grpc#17282. +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 grpc/grpc#17282. From 7fa1dc2c2b16084c5c96cd6fc02fe4ecd8c3ba33 Mon Sep 17 00:00:00 2001 From: "Ryan P. Brewster" Date: Fri, 7 Dec 2018 13:39:21 -0800 Subject: [PATCH 4/4] better link --- changelog.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/changelog.txt b/changelog.txt index 5388a7b9..6639dabd 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,2 +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 grpc/grpc#17282. +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.