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
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.4.8] - 2026-06-20

### Fixed

- **Received attachments keep their original name and folder layout.** Files
were landing at `inbox/<distribution_id>/<basename>` — the original filename
buried under a UUID directory and any subdirectories flattened. The inbox now
mirrors the sender's outbox layout: a file dropped at `outbox/sub/report.pdf`
lands at `inbox/sub/report.pdf`, and re-delivery of the same path overwrites
(latest-wins). Sender-controlled names are re-sanitised on arrival (only
`Normal` path components accepted), so an absolute path or one containing `..`
can never escape the inbox — such a name falls back to a flat
`<distribution_id>.bin` at the inbox root. (#173)

### Added

- **Startup version banner.** The first log line now reports peat-node's own
Expand Down
2 changes: 1 addition & 1 deletion 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 @@ -4,7 +4,7 @@ resolver = "2"

[package]
name = "peat-node"
version = "0.4.7"
version = "0.4.8"
edition = "2021"
authors = ["Kit Plummer <kitplummer@defenseunicorns.com>"]
license = "Apache-2.0"
Expand Down
Loading