diff --git a/CHANGELOG.md b/CHANGELOG.md index d14aa228c95..6a9de9e9842 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1 +1,2 @@ - Updated the functions.config deprecation notice from March 2026 to March 2027 (#9941) +- Detects when App Hosting fails to deploy, returning an error. (#8866) diff --git a/src/deploy/apphosting/release.ts b/src/deploy/apphosting/release.ts index d4927603e5d..33056fd06f5 100644 --- a/src/deploy/apphosting/release.ts +++ b/src/deploy/apphosting/release.ts @@ -11,6 +11,7 @@ import { logLabeledWarning, } from "../../utils"; import { Context } from "./args"; +import { FirebaseError } from "../../error"; /** * Orchestrates rollouts for the backends targeted for deployment. @@ -70,6 +71,7 @@ export default async function (context: Context, options: Options): Promise