Skip to content

Commit

Permalink
Merge branch 'master' into am-single-lifecycle
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Memering committed Apr 18, 2019
2 parents 21f7a95 + f398dc6 commit 974b31e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
2 changes: 2 additions & 0 deletions changelog.txt
Expand Up @@ -2,4 +2,6 @@ fixed - Fixes a bug in Cloud Firestore emulator where rulesets with no-op writes
fixed - Reduced lock contention in Cloud Firestore emulator during concurrent writes to a document.
feature - Serving Hosting locally can now proxy to the live Cloud Run service.
fixed - Fixes a bug where fields in Cloud Firestore indexes would be sorted alphabetically for display.
fixed - Fixes a bug in Firestore Emulator REST API that caused 404s to root collections.
fixed - Firestore Emulator now accepts secure JWTs from Android/iOS SDK with warnings.
fixed - Lifecycle hooks will respect a single multi-resource deploy.
8 changes: 4 additions & 4 deletions src/emulator/constants.js
Expand Up @@ -26,10 +26,10 @@ const _emulators = {
stdout: null,
cacheDir: CACHE_DIR,
remoteUrl:
"https://storage.googleapis.com/firebase-preview-drop/emulator/cloud-firestore-emulator-v1.4.4.jar",
expectedSize: 56904597,
expectedChecksum: "b64aa203304f231b61ad7c30316d1094",
localPath: path.join(CACHE_DIR, "cloud-firestore-emulator-v1.4.4.jar"),
"https://storage.googleapis.com/firebase-preview-drop/emulator/cloud-firestore-emulator-v1.4.5.jar",
expectedSize: 56840576,
expectedChecksum: "7fa4ebe4615650038c79ea260b0e7bf6",
localPath: path.join(CACHE_DIR, "cloud-firestore-emulator-v1.4.5.jar"),
},
};

Expand Down

0 comments on commit 974b31e

Please sign in to comment.