File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change
1
+ - Enable apphosting:rollouts: create command. (#8031 )
1
2
- Added default value for ` emulators.dataconnect.dataDir ` to ` init dataconnect ` .
2
3
- Fixed issue where expired auth tokens would not refresh when running on IDX.
3
4
- Fixed an issue where ` firebase ` would error out instead of displaying help text.
Original file line number Diff line number Diff line change @@ -177,6 +177,8 @@ export function load(client: any): any {
177
177
client . apphosting . secrets . grantaccess = loadCommand ( "apphosting-secrets-grantaccess" ) ;
178
178
client . apphosting . secrets . describe = loadCommand ( "apphosting-secrets-describe" ) ;
179
179
client . apphosting . secrets . access = loadCommand ( "apphosting-secrets-access" ) ;
180
+ client . apphosting . rollouts = { } ;
181
+ client . apphosting . rollouts . create = loadCommand ( "apphosting-rollouts-create" ) ;
180
182
client . apphosting . config = { } ;
181
183
client . apphosting . config . export = loadCommand ( "apphosting-config-export" ) ;
182
184
if ( experiments . isEnabled ( "internaltesting" ) ) {
@@ -185,8 +187,6 @@ export function load(client: any): any {
185
187
client . apphosting . builds . create = loadCommand ( "apphosting-builds-create" ) ;
186
188
client . apphosting . repos = { } ;
187
189
client . apphosting . repos . create = loadCommand ( "apphosting-repos-create" ) ;
188
- client . apphosting . rollouts = { } ;
189
- client . apphosting . rollouts . create = loadCommand ( "apphosting-rollouts-create" ) ;
190
190
client . apphosting . rollouts . list = loadCommand ( "apphosting-rollouts-list" ) ;
191
191
}
192
192
}
You can’t perform that action at this time.
0 commit comments