Skip to content

Commit 53916fe

Browse files
committed
fix(preprod): Mention build upload is non-experimental in CHANGELOG
Follow up from #2900 Also unhide the subcommand.
1 parent 1c7fcdc commit 53916fe

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## Unreleased
44

5+
### New Features
6+
7+
- Promote `sentry-cli build upload` command to non-experimental ([#2899](https://github.com/getsentry/sentry-cli/pull/2899)).
8+
59
### Deprecations
610

711
- Deprecated the `upload-proguard` subcommand's `--platform` flag ([#2863](https://github.com/getsentry/sentry-cli/pull/2863)). This flag appears to have been a no-op for some time, so we will remove it in the next major.

src/commands/build/mod.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,7 @@ pub fn make_command(mut command: Command) -> Command {
2525
.subcommand_required(true)
2626
.arg_required_else_help(true)
2727
.org_arg()
28-
.project_arg(true)
29-
// TODO: Remove this when ready for release
30-
.hide(true);
28+
.project_arg(true);
3129
each_subcommand!(add_subcommand);
3230
command
3331
}

0 commit comments

Comments
 (0)