From d6871aabb9760e25d5936d5db668b529902d213c Mon Sep 17 00:00:00 2001 From: joehan Date: Tue, 15 Nov 2022 13:04:17 -0800 Subject: [PATCH 1/3] Fixes a bug where extensions emulator was not appearing in the registry (#5242) * Fixes a bug where extensions emualtor was not appearing in the registry * changelog --- CHANGELOG.md | 3 ++- src/emulator/extensionsEmulator.ts | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e1424f12fa2..3d7e779fa0c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,4 +3,5 @@ - Fixes gzipped file handling in Storage Emulator. - Add support for object list using certain Admin SDKs (#5208) - Fixes source token expiration issue by acquiring new source token upon expiration. -- Fix bug where emulated event triggered function broke in debug mode (#5211) +- Fixes bug where emulated event triggered function broke in debug mode (#5211) +- Fixes bug that caused the Extensions Emulator to always appear to be inactive in the Emulator UI. diff --git a/src/emulator/extensionsEmulator.ts b/src/emulator/extensionsEmulator.ts index 3d69232be73..04233bfe57d 100644 --- a/src/emulator/extensionsEmulator.ts +++ b/src/emulator/extensionsEmulator.ts @@ -67,7 +67,7 @@ export class ExtensionsEmulator implements EmulatorInstance { "Extensions Emulator is running but Functions emulator is not. This should never happen." ); } - return functionsEmulator.getInfo(); + return { ...functionsEmulator.getInfo(), name: this.getName() }; } public getName(): Emulators { From a5bfe2481c393a4df441d1eff1fda162659f5325 Mon Sep 17 00:00:00 2001 From: Google Open Source Bot Date: Tue, 15 Nov 2022 22:52:52 +0000 Subject: [PATCH 2/3] 11.16.1 --- npm-shrinkwrap.json | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/npm-shrinkwrap.json b/npm-shrinkwrap.json index db6a738cd42..054c7074274 100644 --- a/npm-shrinkwrap.json +++ b/npm-shrinkwrap.json @@ -1,12 +1,12 @@ { "name": "firebase-tools", - "version": "11.16.0", + "version": "11.16.1", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "firebase-tools", - "version": "11.16.0", + "version": "11.16.1", "license": "MIT", "dependencies": { "@google-cloud/pubsub": "^3.0.1", diff --git a/package.json b/package.json index 3ccb1fc8118..274da8d6943 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "firebase-tools", - "version": "11.16.0", + "version": "11.16.1", "description": "Command-Line Interface for Firebase", "main": "./lib/index.js", "bin": { From 392d8a8565eeb1f7018170148baee15ad169359a Mon Sep 17 00:00:00 2001 From: Google Open Source Bot Date: Tue, 15 Nov 2022 22:53:03 +0000 Subject: [PATCH 3/3] [firebase-release] Removed change log and reset repo after 11.16.1 release --- CHANGELOG.md | 7 ------- 1 file changed, 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3d7e779fa0c..e69de29bb2d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +0,0 @@ -- Updated the pubsub emulator to v0.7.1. -- Updated some emulator download logic to pause after unzipping to avoid a file not found issue. -- Fixes gzipped file handling in Storage Emulator. -- Add support for object list using certain Admin SDKs (#5208) -- Fixes source token expiration issue by acquiring new source token upon expiration. -- Fixes bug where emulated event triggered function broke in debug mode (#5211) -- Fixes bug that caused the Extensions Emulator to always appear to be inactive in the Emulator UI.