Skip to content

Commit

Permalink
Fixes #3481 by removing overly aggresive jar cleaning (#3541)
Browse files Browse the repository at this point in the history
  • Loading branch information
abeisgoat committed Jun 30, 2021
1 parent d86d8e2 commit 640770c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
- Support loading Firebase Functions packaged as an ES module. (#3485)
- Fixes Cloud Storage emulator missing classes (#3541)
11 changes: 5 additions & 6 deletions src/emulator/downloadableEmulators.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,16 +51,15 @@ export const DownloadDetails: { [s in DownloadableEmulators]: EmulatorDownloadDe
},
},
storage: {
downloadPath: path.join(CACHE_DIR, "cloud-storage-rules-runtime-v1.0.0.jar"),
version: "1.0.0",
downloadPath: path.join(CACHE_DIR, "cloud-storage-rules-runtime-v1.0.1.jar"),
version: "1.0.1",
opts: {
cacheDir: CACHE_DIR,
remoteUrl:
"https://storage.googleapis.com/firebase-preview-drop/emulator/cloud-storage-rules-runtime-v1.0.0.jar",
expectedSize: 63857175,
expectedChecksum: "fd8577f82d42ee1c03ae9d12b888049c",
"https://storage.googleapis.com/firebase-preview-drop/emulator/cloud-storage-rules-runtime-v1.0.1.jar",
expectedSize: 32729999,
expectedChecksum: "1a441f5e16c17aa7a27db71c9c9186d5",
namePrefix: "cloud-storage-rules-emulator",
skipChecksumAndSize: true,
},
},
ui: {
Expand Down

0 comments on commit 640770c

Please sign in to comment.