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
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,27 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.3.0] 2026-04-13

### Security
- [#109](https://github.com/stouset/secrets/issues/109): Two `Secret`s can no
longer accidentally occupy the same page, which would cause the unlocking of
one to unintentionally unlock the other.

### Soundness
- [#100](https://github.com/stouset/secrets/issues/100): Tuple types may contain
padding and so cannot safely implement the `Bytes` trait. This trait has been
removed from tuples.
- [#100](https://github.com/stouset/secrets/issues/100): `bool` and `char`
cannot contain arbitrary byte sequences, and have similarly had their `Bytes`
implementation removed.

### Fixed
- [#115](https://github.com/stouset/secrets/issues/115): `SecretVec::try_new` now
accepts a length parameter as originally intended. This is technically
backwards-incompatible, but it is unlikely anyone in the wild was relying on
this since it would have been noticed immediately.

## [1.2.0] 2022-03-26

### Added
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "secrets"
version = "1.2.0"
version = "1.3.0"
edition = "2024"

rust-version = "1.85.0"
Expand Down
Loading