summaryrefslogtreecommitdiff
path: root/crates/tor-persist/semver.md
Commit message (Collapse)AuthorAgeFilesLines
* Remove pending semver entriesarti-v1.1.12Nick Mathewson2024-01-091-1/+0
|
* tor-persist: Provide FsMistrustErrorExt, and use itIan Jackson2023-12-131-0/+1
| | | | | | | | | | | | | This code needs fs_mistrust::Error and tor_error::ErrorKind. I think we probably don't want fs_mistrust to depend on tor_error or vice versa. tor_persist is approximately the place where these two threads of thought come together, and it's currently the lowest place where this is needed. Use it in tor-dirmgr too, which is currently the other place that embodies this knowledge about fs_mistrust::Error.
* Remove semver.md files.Nick Mathewson2023-12-041-1/+0
|
* tor-persist: Make LockStatus #[must_use]Ian Jackson2023-11-221-0/+1
| | | | | I see other problems with this API, see #1136. but we can at least easily do this.
* Remove semver.md files now that 1.1.2 is out.Nick Mathewson2023-02-281-1/+0
|
* ErrorHint: Implement tryfrom_torpersistNick Mathewson2023-01-271-0/+1
|
* Now that versions have bumped, remove semver.md files.Nick Mathewson2022-08-011-1/+0
|
* tor-persist: Big refactoring on Error type.Nick Mathewson2022-07-061-0/+1
Every error now has an action (what we were trying to do), a resource (what we were trying to do it to), and a source (what problem we encountered). Initially I tried to add "action" and "resource" fields to error variants individually, but that led to a combinatorial explosion. Part of #323.