Skip to content

Commit 42f5358

Browse files
authored
Enable apphosting:rollouts:create command (#8031)
* fix error message * add changelog * move apphosting:rollouts:create out of internaltesting * changelog
1 parent 9ea466f commit 42f5358

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
- Enable apphosting:rollouts:create command. (#8031)
12
- Added default value for `emulators.dataconnect.dataDir` to `init dataconnect`.
23
- Fixed issue where expired auth tokens would not refresh when running on IDX.
34
- Fixed an issue where `firebase` would error out instead of displaying help text.

src/commands/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -177,6 +177,8 @@ export function load(client: any): any {
177177
client.apphosting.secrets.grantaccess = loadCommand("apphosting-secrets-grantaccess");
178178
client.apphosting.secrets.describe = loadCommand("apphosting-secrets-describe");
179179
client.apphosting.secrets.access = loadCommand("apphosting-secrets-access");
180+
client.apphosting.rollouts = {};
181+
client.apphosting.rollouts.create = loadCommand("apphosting-rollouts-create");
180182
client.apphosting.config = {};
181183
client.apphosting.config.export = loadCommand("apphosting-config-export");
182184
if (experiments.isEnabled("internaltesting")) {
@@ -185,8 +187,6 @@ export function load(client: any): any {
185187
client.apphosting.builds.create = loadCommand("apphosting-builds-create");
186188
client.apphosting.repos = {};
187189
client.apphosting.repos.create = loadCommand("apphosting-repos-create");
188-
client.apphosting.rollouts = {};
189-
client.apphosting.rollouts.create = loadCommand("apphosting-rollouts-create");
190190
client.apphosting.rollouts.list = loadCommand("apphosting-rollouts-list");
191191
}
192192
}

0 commit comments

Comments
 (0)