Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release Database Emulator v4.7.3. #3955

Merged
merged 2 commits into from Dec 16, 2021
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
@@ -0,0 +1 @@
- Upgrades Database Emulator to v4.7.3, removing log4j dependency.
10 changes: 5 additions & 5 deletions src/emulator/downloadableEmulators.ts
Expand Up @@ -27,14 +27,14 @@ const CACHE_DIR =

export const DownloadDetails: { [s in DownloadableEmulators]: EmulatorDownloadDetails } = {
database: {
downloadPath: path.join(CACHE_DIR, "firebase-database-emulator-v4.7.2.jar"),
version: "4.7.2",
downloadPath: path.join(CACHE_DIR, "firebase-database-emulator-v4.7.3.jar"),
version: "4.7.3",
opts: {
cacheDir: CACHE_DIR,
remoteUrl:
"https://storage.googleapis.com/firebase-preview-drop/emulator/firebase-database-emulator-v4.7.2.jar",
expectedSize: 28910604,
expectedChecksum: "264e5df0c0661c064ef7dc9ce8179aba",
"https://storage.googleapis.com/firebase-preview-drop/emulator/firebase-database-emulator-v4.7.3.jar",
expectedSize: 28862098,
expectedChecksum: "8f696f24ee89c937a789498a0c0e4899",
namePrefix: "firebase-database-emulator",
},
},
Expand Down