diff --git a/CHANGELOG.md b/CHANGELOG.md index 10b169e0fb3..b13e382db88 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,4 @@ +- Enable apphosting:rollouts:create command. (#8031) - Added default value for `emulators.dataconnect.dataDir` to `init dataconnect`. - Fixed issue where expired auth tokens would not refresh when running on IDX. - Fixed an issue where `firebase` would error out instead of displaying help text. diff --git a/src/commands/index.ts b/src/commands/index.ts index 251dc65c75b..181d5baf89f 100644 --- a/src/commands/index.ts +++ b/src/commands/index.ts @@ -177,6 +177,8 @@ export function load(client: any): any { client.apphosting.secrets.grantaccess = loadCommand("apphosting-secrets-grantaccess"); client.apphosting.secrets.describe = loadCommand("apphosting-secrets-describe"); client.apphosting.secrets.access = loadCommand("apphosting-secrets-access"); + client.apphosting.rollouts = {}; + client.apphosting.rollouts.create = loadCommand("apphosting-rollouts-create"); client.apphosting.config = {}; client.apphosting.config.export = loadCommand("apphosting-config-export"); if (experiments.isEnabled("internaltesting")) { @@ -185,8 +187,6 @@ export function load(client: any): any { client.apphosting.builds.create = loadCommand("apphosting-builds-create"); client.apphosting.repos = {}; client.apphosting.repos.create = loadCommand("apphosting-repos-create"); - client.apphosting.rollouts = {}; - client.apphosting.rollouts.create = loadCommand("apphosting-rollouts-create"); client.apphosting.rollouts.list = loadCommand("apphosting-rollouts-list"); } }