Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
- `api_key` configuration file field
- `apiKey` option in the JavaScript API
- Removed the `upload-proguard` subcommand's `--app-id`, `--version`, `--version-code`, `--android-manifest`, and `--platform` arguments ([#2876](https://github.com/getsentry/sentry-cli/pull/2876), [#2940](https://github.com/getsentry/sentry-cli/pull/2940), [#2948](https://github.com/getsentry/sentry-cli/pull/2948)). Users using these arguments should stop using them, as they are unnecessary. The information passed to these arguments is no longer visible in Sentry.
- Removed the `--started` argument from the `sentry-cli releases finalize` command ([#2972](https://github.com/getsentry/sentry-cli/pull/2972)). This argument is a no-op, so any users using it should simply stop using it.

#### Node.js Wrapper Breakages

Expand Down
15 changes: 0 additions & 15 deletions src/commands/releases/finalize.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,6 @@ pub fn make_command(command: Command) -> Command {
.value_name("URL")
.help("Optional URL to the release for information purposes."),
)
.arg(
Arg::new("started")
.long("started")
.hide(true)
.value_parser(get_timestamp)
.value_name("TIMESTAMP")
.help("[DEPRECATED] This value is ignored."),
)
.arg(
Arg::new("released")
.long("released")
Expand All @@ -40,13 +32,6 @@ pub fn execute(matches: &ArgMatches) -> Result<()> {
#[expect(clippy::unwrap_used, reason = "legacy code")]
let version = matches.get_one::<String>("version").unwrap();

if matches.get_one::<DateTime<Utc>>("started").is_some() {
log::warn!(
"The --started flag is deprecated. Its value is ignored, \
and the argument will be completely removed in a future version."
);
}

api.authenticated()?.update_release(
&config.get_org(matches)?,
version,
Expand Down