Skip to content

Commit

Permalink
Merge c4065fd into 4c7b3e7
Browse files Browse the repository at this point in the history
  • Loading branch information
samtstern committed Jun 27, 2019
2 parents 4c7b3e7 + c4065fd commit e7d8d36
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion changelog.txt
@@ -1,4 +1,5 @@
* Auto-download Firestore and RTDB emulators when using `emulators:start`.
* Make `functions:shell` respect the `--port` argument.
* Improve error message when `firebase serve` can't acquire the right port.
* Allow running the Firestore and RTDB emulators without a configuration.
* Allow running the Firestore and RTDB emulators without a configuration.
* Allow the Firestore emulator to give more information about invalid rulesets.
8 changes: 4 additions & 4 deletions src/serve/javaEmulators.ts
Expand Up @@ -39,10 +39,10 @@ const EmulatorDetails: { [s in JavaEmulators]: JavaEmulatorDetails } = {
stdout: null,
cacheDir: CACHE_DIR,
remoteUrl:
"https://storage.googleapis.com/firebase-preview-drop/emulator/cloud-firestore-emulator-v1.5.0.jar",
expectedSize: 57204418,
expectedChecksum: "774fb006fc96ebbddb3a020dc0bfd324",
localPath: path.join(CACHE_DIR, "cloud-firestore-emulator-v1.5.0.jar"),
"https://storage.googleapis.com/firebase-preview-drop/emulator/cloud-firestore-emulator-v1.6.0.jar",
expectedSize: 57397358,
expectedChecksum: "58e9360b2abac579b2451c36c0cce147",
localPath: path.join(CACHE_DIR, "cloud-firestore-emulator-v1.6.0.jar"),
},
};

Expand Down

0 comments on commit e7d8d36

Please sign in to comment.