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
13 changes: 11 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

All notable changes to this project will be documented in this file.

## [Unreleased]
## [0.7.0] — 2026-05-11

### Added

Expand All @@ -16,13 +16,22 @@ All notable changes to this project will be documented in this file.
`PassThrough` is opt-in for the rare case a caller wants the lossy
prior behaviour. Recorded in attestation `tool_parameters` as
`dwarf_handling = "strip" | "passthrough"`. Verified by
`meld-core/tests/dwarf_strip.rs`.
`meld-core/tests/dwarf_strip.rs`. Lands #135.

### Safety / STPA

- New approved loss scenario: **LS-CP-4** (DWARF passthrough emits
address-incorrect debug info on fused output, [H-7]).

### Breaking

- Default DWARF handling changed: `.debug_*` sections are now dropped
from fused output by default. Callers that previously relied on
passed-through DWARF must opt in with
`FuserConfig { dwarf_handling: DwarfHandling::PassThrough, .. }`,
understanding that the addresses inside those sections do not match
the merged code section.

## [0.6.0] — Unreleased

### Added
Expand Down
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ exclude = [
]

[workspace.package]
version = "0.6.0"
version = "0.7.0"
authors = ["PulseEngine <https://github.com/pulseengine>"]
edition = "2024"
license = "Apache-2.0"
Expand Down
Loading