firebase-tools 9.23.2 → 9.23.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,7 +1 @@
1
- - Fixes issue when installing a Firebase Extension where secrets would be created before validation.
2
- - Fixes issue with filtering on a specific storage bucket using functions in the emulator. (#3893)
3
- - Fixes check in Cloud Functions for Firebase initialization to check for API enablement before trying to enable them. (#2574)
4
- - No longer tries to clean up function build images from Artifact Registry when Artifact Registry is not enabled. (#3943)
5
- - Show error message when running `firebase init hosting:github` with no Hosting config in `firebase.json`. (#3113)
6
- - Fixes issue where `remoteconfig:get` was not fetching the latest version by default. (#3559)
7
- - Fixes issue where empty variables in .env files would instead read as multi-line values. (#3934)
1
+ - Upgrades Database Emulator to v4.7.3, removing log4j dependency.
@@ -17,13 +17,13 @@ const EMULATOR_INSTANCE_KILL_TIMEOUT = 4000;
17
17
  const CACHE_DIR = process.env.FIREBASE_EMULATORS_PATH || path.join(os.homedir(), ".cache", "firebase", "emulators");
18
18
  exports.DownloadDetails = {
19
19
  database: {
20
- downloadPath: path.join(CACHE_DIR, "firebase-database-emulator-v4.7.2.jar"),
21
- version: "4.7.2",
20
+ downloadPath: path.join(CACHE_DIR, "firebase-database-emulator-v4.7.3.jar"),
21
+ version: "4.7.3",
22
22
  opts: {
23
23
  cacheDir: CACHE_DIR,
24
- remoteUrl: "https://storage.googleapis.com/firebase-preview-drop/emulator/firebase-database-emulator-v4.7.2.jar",
25
- expectedSize: 28910604,
26
- expectedChecksum: "264e5df0c0661c064ef7dc9ce8179aba",
24
+ remoteUrl: "https://storage.googleapis.com/firebase-preview-drop/emulator/firebase-database-emulator-v4.7.3.jar",
25
+ expectedSize: 28862098,
26
+ expectedChecksum: "8f696f24ee89c937a789498a0c0e4899",
27
27
  namePrefix: "firebase-database-emulator",
28
28
  },
29
29
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "firebase-tools",
3
- "version": "9.23.2",
3
+ "version": "9.23.3",
4
4
  "description": "Command-Line Interface for Firebase",
5
5
  "main": "./lib/index.js",
6
6
  "bin": {