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
11 changes: 9 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,20 @@ Skip the changelog only when the PR contains no runtime-affecting changes
(docs, CI, tooling, tests). In that case the hook will tell you to apply the
`no changelog` label instead.

## v0.4.0 (unreleased)
## v0.4.1 (2026-06-17)

### Features

- Added optional `after_block_num` to `TransportNote` so senders can give recipients a deterministic block floor for commitment scans ([#81](https://github.com/0xMiden/note-transport-service/pull/81)).
- Added structured tracing fields across the gRPC, database, and streaming layers for debuggability ([#83](https://github.com/0xMiden/note-transport-service/pull/83)).

### Changes

### Fixes
- Changed OpenTelemetry configuration: enable via `--enable-otel`/`--otel-endpoint` flags or the standard `OTEL_EXPORTER_OTLP_ENDPOINT`/`OTEL_EXPORTER_OTLP_TRACES_ENDPOINT` env vars. The previous `OTEL_ENABLED`/`OTEL_TRACES_ENDPOINT` vars are no longer read ([#80](https://github.com/0xMiden/note-transport-service/pull/80)).

## v0.4.0 (2026-06-08)

Released without itemized changelog entries. See [`git log v0.3.2..v0.4.0`](https://github.com/0xMiden/note-transport-service/compare/v0.3.2...v0.4.0) for the change set.

## v0.3.1 (2026-04-08)

Expand Down
8 changes: 4 additions & 4 deletions Cargo.lock

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

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ license = "MIT"
readme = "README.md"
repository = "https://github.com/0xMiden/miden-note-transport"
rust-version = "1.87"
version = "0.4.0"
version = "0.4.1"

[workspace.dependencies]
# Workspace crates (path-based dependencies)
miden-note-transport-node = { path = "crates/node", version = "0.4.0" }
miden-note-transport-proto = { path = "crates/proto", version = "0.4.0" }
miden-note-transport-proto-build = { path = "proto", version = "0.4.0" }
miden-note-transport-node = { path = "crates/node", version = "0.4.1" }
miden-note-transport-proto = { path = "crates/proto", version = "0.4.1" }
miden-note-transport-proto-build = { path = "proto", version = "0.4.1" }

# miden-base aka protocol dependencies (git = "https://github.com/0xMiden/miden-base"). These should be updated in sync.
miden-protocol = { default-features = false, version = "0.15" }
Expand Down
Loading