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
16 changes: 16 additions & 0 deletions spiffe-rustls/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Changelog

## [0.2.0] – 2025-12-26

### Changed
- Updated dependency to `spiffe 0.8.0`.
- Made `ClientConfigBuilder::build()` and `ServerConfigBuilder::build()` synchronous (removed async/await).
- Refactored material construction to use `rustls::pki_types::CertificateDer` and renamed helpers for clarity.
- Added generation tracking to material snapshots and implemented verifier caching keyed by generation.
- Tightened crate linting and documentation policy (`missing_docs`, `unsafe_code`, clippy incl. `pedantic`).

### Fixed
- Improved internal correctness and performance under trust bundle rotation by avoiding verifier rebuilds on every handshake.

### Notes
- Building configs now requires a Tokio runtime to spawn the rotation watcher; initialization returns an error if no runtime is available.


## [0.1.3] – 2025-12-24

* Documentation improvements only. No functional changes.
Expand Down
2 changes: 1 addition & 1 deletion spiffe-rustls/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "spiffe-rustls"
version = "0.1.3"
version = "0.2.0"
edition = "2021"
rust-version = "1.83"
license = "Apache-2.0"
Expand Down
Loading