summaryrefslogtreecommitdiff
path: root/crates/safelog/semver.md
Commit message (Collapse)AuthorAgeFilesLines
* arti-client: Include redacted HsId in ObtainHsCircuit errorIan Jackson2023-03-231-1/+1
| | | | | As per https://gitlab.torproject.org/tpo/core/arti/-/merge_requests/1071/diffs?commit_id=580fe1118dbbbfa086d11b28e3e26d7c91afe21c#fbd7ab2d6d0a5b515697d4f9f99a42ebd508aa4b_153_165
* safelog: impl From<T> for Redacted<T>Ian Jackson2023-03-231-0/+1
| | | | I think this is uncontroversial; we already have it for Sensitive.
* Remove semver.md files now that 1.1.1 is tagged.Nick Mathewson2023-02-011-2/+0
|
* Rename Sensitive::into_inner() from ::unwrap()Ian Jackson2022-12-121-0/+2
| | | | | | | | | | By analogy with similar methods on Mutex, Cell, BufReader, etc. etc. Discussed here https://gitlab.torproject.org/tpo/core/arti/-/merge_requests/890#note_2856885 Make it a method, as per https://gitlab.torproject.org/tpo/core/arti/-/merge_requests/928
* Remove semver.md files now that 1.1.0 is released.Nick Mathewson2022-11-301-2/+0
|
* safelog: Define a "Redactable" traitNick Mathewson2022-11-281-0/+2
A "redactable" object is one that can be _partially_ scrubbed in sensitive contexts. This can be very helpful for UX, but is not risk-free: see comments.