Skip to content

Commit

Permalink
[eas-cli] Unhide rollout-percentage flag on update publish command (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
wschurman authored Oct 7, 2024
1 parent 7699573 commit a346af2
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ This is the log of notable changes to EAS CLI and related packages.
### 🧹 Chores

- Implement new `worker` deploy API flow. ([#2601](https://github.com/expo/eas-cli/pull/2601) by [@kitten](https://github.com/kitten)))
- Unhide rollout-percentage flag on update publish command. ([#2608](https://github.com/expo/eas-cli/pull/2608) by [@wschurman](https://github.com/wschurman))

## [12.5.1](https://github.com/expo/eas-cli/releases/tag/v12.5.1) - 2024-09-27

Expand Down
1 change: 0 additions & 1 deletion packages/eas-cli/src/commands/update/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,6 @@ export default class UpdatePublish extends EasCommand {
'rollout-percentage': Flags.integer({
description: `Percentage of users this update should be immediately available to. Users not in the rollout will be served the previous latest update on the branch, even if that update is itself being rolled out. The specified number must be an integer between 1 and 100. When not specified, this defaults to 100.`,
required: false,
hidden: true,
min: 0,
max: 100,
}),
Expand Down

0 comments on commit a346af2

Please sign in to comment.