summaryrefslogtreecommitdiff
path: root/crates/tor-dirmgr/semver.md
Commit message (Collapse)AuthorAgeFilesLines
* release: Update semver.md files.Wesley Aptekar-Cassels2025-10-011-0/+1
|
* Remove pending semver entriesarti-v1.1.12Nick Mathewson2024-01-091-1/+0
|
* tor-dirmgr: Rename DirMgrConfig.cache_path to cache_dirIan Jackson2023-12-041-0/+1
| | | | | | This variable contains precisely the value of cache_dir from arti_client::config::StorageConfig and it should therefore have the same name.
* Remove semver.md files now that 1.1.0 is released.Nick Mathewson2022-11-301-1/+0
|
* dirmgr Store: Have constructors take DirMgrStoreIan Jackson2022-11-141-0/+1
| | | | | | | Now the Store is constructed by arti_client, solving the problem described here https://gitlab.torproject.org/tpo/core/arti/-/issues/631#note_2853665 but in a different way.
* Remove semver.md from arti-1.0.0Nick Mathewson2022-09-071-1/+0
|
* Add params() method to NetDirProvider, and partial implementationNick Mathewson2022-08-021-0/+1
| | | | | | | | This method will let users get the latest `NetParameters`, with user-configured overrides, even if there is no current directory at all. Part of #528
* Now that versions have bumped, remove semver.md files.Nick Mathewson2022-08-011-3/+0
|
* tor-dirmgr: Remove opt_netdir entirely.Nick Mathewson2022-07-261-1/+1
| | | | Its existence tended to hide bugs, and was just asking for trouble.
* Remove unused DirMgr::netdir method, make opt_netdir private.Nick Mathewson2022-07-261-0/+1
|
* Rename DirSkewTolerance to DirToleranceNick Mathewson2022-07-221-0/+1
| | | | | | This name is more accurate because we aren't only dealing with clock skew here: we're also trying to tolerate the case where the authorities fail to reach consensus for a while.
* dirmgr: Clarify disk IO errors.Nick Mathewson2022-07-141-0/+1
|
* Remove semver.md files now that 0.5.0 is outNick Mathewson2022-06-241-5/+0
|
* tor-dirmgr: Make DirStatus non-public.Nick Mathewson2022-06-141-1/+2
| | | | | I believe this type was made public in error: No other crate uses it, and no API exposes it.
* Add a blockage-reporting mechanism to tor-dirmgr.Nick Mathewson2022-06-141-0/+1
| | | | | | | | | The `DirBootstrapStatus` type now exposes a blockage() method to return an `Option<DirBlockage>`. The blockage types reported are more low-level than I'd like, but they are IMO good enough for now: we'll want to get experience with actual vs hypothetical problems before we refine them.
* New API to expose and use TaskHandle from DirMgr.Nick Mathewson2022-06-131-0/+3
This change also means that we need to create the handle and scheduler earlier in the process of creating the DirMgr. If we don't, we won't have a way to manage the task before bootstrap() returns.