Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
* Allow the RTDB emulator to hot-reload rules file on changes.
* Allows emulated Cloud Functions to talk to production RTDB/Firestore if the emulators are not running.
* Fixes an issue where internal logs would sometimes appear in stdout.
* Fixes an issue where internal logs would sometimes appear in stdout.
* Improves RTDB emulator support for JWT algorithms and arbitrary Google Cloud auth tokens.
8 changes: 4 additions & 4 deletions src/serve/javaEmulators.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ const EmulatorDetails: { [s in JavaEmulators]: JavaEmulatorDetails } = {
stdout: null,
cacheDir: CACHE_DIR,
remoteUrl:
"https://storage.googleapis.com/firebase-preview-drop/emulator/firebase-database-emulator-v4.0.0.jar",
expectedSize: 17097803,
expectedChecksum: "102c8de422db81933a0f29fede5a80a0",
localPath: path.join(CACHE_DIR, "firebase-database-emulator-v4.0.0.jar"),
"https://storage.googleapis.com/firebase-preview-drop/emulator/firebase-database-emulator-v4.1.0.jar",
expectedSize: 17122506,
expectedChecksum: "4b6c494eb2711cee32c6af6cb7ecda07",
localPath: path.join(CACHE_DIR, "firebase-database-emulator-v4.1.0.jar"),
namePrefix: "firebase-database-emulator",
},
firestore: {
Expand Down