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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file.

## [Unreleased]

### Added
- `#[error(transparent)]` support in the derive macro: validates wrapper shape,
delegates `Display`/`source` to the inner error, and works with `#[from]`.

## [0.4.0] - 2025-09-15
### Added
- Optional `frontend` feature:
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,8 @@ masterror = { version = "0.4.0", default-features = false }
- **Opt-in integrations.** Zero default features; you enable what you need.
- **Clean wire contract.** `ErrorResponse { status, code, message, details?, retry?, www_authenticate? }`.
- **One log at boundary.** Log once with `tracing`.
- **Less boilerplate.** Built-in conversions, compact prelude.
- **Less boilerplate.** Built-in conversions, compact prelude,
derive macro support for transparent wrappers via `#[error(transparent)]`.
- **Consistent workspace.** Same error surface across crates.

</details>
Expand Down
3 changes: 2 additions & 1 deletion README.template.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@ masterror = { version = "{{CRATE_VERSION}}", default-features = false }
- **Opt-in integrations.** Zero default features; you enable what you need.
- **Clean wire contract.** `ErrorResponse { status, code, message, details?, retry?, www_authenticate? }`.
- **One log at boundary.** Log once with `tracing`.
- **Less boilerplate.** Built-in conversions, compact prelude.
- **Less boilerplate.** Built-in conversions, compact prelude,
derive macro support for transparent wrappers via `#[error(transparent)]`.
- **Consistent workspace.** Same error surface across crates.

</details>
Expand Down
Loading
Loading