Skip to content

Commit

Permalink
Release Emulator UI v1.4.2. (#3161)
Browse files Browse the repository at this point in the history
  • Loading branch information
yuchenshi authored Feb 22, 2021
1 parent fcaf121 commit 2ca6d04
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
- Fixes issue where rules are not applied to the default emulated Realtime Database instance (#3124)
- Adds `setup:emulators:ui` command to download the Emulators UI (#3152)
- Fixes issue causing timeout errors for eventually successful functions deploys (#3147)
- Fixes issue where adding a field to an empty document in Firestore Emulator UI fails
14 changes: 7 additions & 7 deletions src/emulator/downloadableEmulators.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,15 +50,15 @@ const DownloadDetails: { [s in DownloadableEmulators]: EmulatorDownloadDetails }
},
},
ui: {
version: "1.4.1",
downloadPath: path.join(CACHE_DIR, "ui-v1.4.1.zip"),
unzipDir: path.join(CACHE_DIR, "ui-v1.4.1"),
binaryPath: path.join(CACHE_DIR, "ui-v1.4.1", "server.bundle.js"),
version: "1.4.2",
downloadPath: path.join(CACHE_DIR, "ui-v1.4.2.zip"),
unzipDir: path.join(CACHE_DIR, "ui-v1.4.2"),
binaryPath: path.join(CACHE_DIR, "ui-v1.4.2", "server.bundle.js"),
opts: {
cacheDir: CACHE_DIR,
remoteUrl: "https://storage.googleapis.com/firebase-preview-drop/emulator/ui-v1.4.1.zip",
expectedSize: 3374020,
expectedChecksum: "7a82fed575a2b9a008d96080a7dcccdb",
remoteUrl: "https://storage.googleapis.com/firebase-preview-drop/emulator/ui-v1.4.2.zip",
expectedSize: 3259556,
expectedChecksum: "651b9f2e548c319a615a5f8c03f76d02",
namePrefix: "ui",
},
},
Expand Down

0 comments on commit 2ca6d04

Please sign in to comment.