summaryrefslogtreecommitdiff
path: root/crates/tor-dirmgr/semver.md
Commit message (Collapse)AuthorAgeFilesLines
* 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.