Skip to content

Commit

Permalink
Merge ff49947 into 9ee8f54
Browse files Browse the repository at this point in the history
  • Loading branch information
yuchenshi committed Jan 3, 2020
2 parents 9ee8f54 + ff49947 commit 5b40862
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
@@ -1,2 +1,3 @@
* Adds the ability to select an extension to install from a list of available official extensions when `firebase ext:install -i` or `firebase ext:install --interactive` is run.
* Fixes a small bug that caused `false` values in the `options` object to be ignored.
* Release Database Emulator v4.3.1.
8 changes: 4 additions & 4 deletions src/serve/javaEmulators.ts
Expand Up @@ -27,13 +27,13 @@ const CACHE_DIR =

const DownloadDetails: { [s in JavaEmulators]: EmulatorDownloadDetails } = {
database: {
downloadPath: path.join(CACHE_DIR, "firebase-database-emulator-v4.2.0.jar"),
downloadPath: path.join(CACHE_DIR, "firebase-database-emulator-v4.3.1.jar"),
opts: {
cacheDir: CACHE_DIR,
remoteUrl:
"https://storage.googleapis.com/firebase-preview-drop/emulator/firebase-database-emulator-v4.2.0.jar",
expectedSize: 17131418,
expectedChecksum: "d9d825b2f321e05ca8dc9b758eec6ba6",
"https://storage.googleapis.com/firebase-preview-drop/emulator/firebase-database-emulator-v4.3.1.jar",
expectedSize: 27893859,
expectedChecksum: "7d84e76144093406331571969f30444e",
namePrefix: "firebase-database-emulator",
},
},
Expand Down

0 comments on commit 5b40862

Please sign in to comment.