Skip to content

Commit 21eef4a

Browse files
runningcodeclaude
andcommitted
chore: Update changelog and remove redundant comments
Update changelog entry to be more user-facing and remove doc comments that were redundant with the code. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 6380deb commit 21eef4a

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
### Various fixes & improvements
1010

11-
- Add CLI version metadata to build upload archives for debugging purposes ([#2890](https://github.com/getsentry/sentry-cli/pull/2890))
11+
- Build uploads now include CLI version metadata in the uploaded archive ([#2890](https://github.com/getsentry/sentry-cli/pull/2890))
1212

1313
### Deprecations
1414

src/utils/build/normalize.rs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,15 +77,12 @@ fn add_entries_to_zip(
7777
Ok(file_count)
7878
}
7979

80-
/// Creates file options with consistent compression and timestamp settings for metadata files.
81-
/// Uses Deflated compression to match other files in the archive.
8280
fn metadata_file_options() -> SimpleFileOptions {
8381
SimpleFileOptions::default()
8482
.compression_method(zip::CompressionMethod::Deflated)
8583
.last_modified_time(DateTime::default())
8684
}
8785

88-
/// Writes the CLI version metadata to a zip archive.
8986
pub fn write_version_metadata<W: std::io::Write + std::io::Seek>(
9087
zip: &mut ZipWriter<W>,
9188
) -> Result<()> {

0 commit comments

Comments
 (0)