summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | | | Release.md: Document the need to update the extra Cargo.lockIan Jackson2024-05-071-0/+5
|/ / / / /
* | | | | Merge branch 'fix_feature_name' into 'main'Alexander Færøy2024-05-071-1/+1
|\ \ \ \ \ | |/ / / / |/| | | | | | | | | | | | | | Use the right feature name for an allow(dead_code). See merge request tpo/core/arti!2133
| * | | | Use the right feature name for an allow(dead_code).Nick Mathewson2024-05-071-1/+1
|/ / / /
* | | | Merge branch 'void' into 'main'Nick Mathewson2024-05-073-7/+12
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | tor-rpcbase: Use Void to eliminate a panic, as statically unreachable See merge request tpo/core/arti!2124
| * | | | tor-rpcbase: Use Void to eliminate a panic, as statically unreachableIan Jackson2024-05-023-7/+12
| | |_|/ | |/| |
* | | | Merge branch 'new_ci_cfg_strategy' into 'main'Nick Mathewson2024-05-0758-121/+135
|\ \ \ \ | |_|/ / |/| | | | | | | | | | | | | | | | | | | add_warning/CI: New strategy to avoid "unexpected-cfgs" warning Closes #1395 See merge request tpo/core/arti!2129
| * | | Re-run maint/add_warning.Nick Mathewson2024-05-0656-112/+112
| | | | | | | | | | | | | | | | This commit is automatically generated.
| * | | CI: Use new add_warning features in place of --cfg.Nick Mathewson2024-05-061-6/+5
| | | |
| * | | add_warning: Allow suppression of marked lines, and avoid cfg().Nick Mathewson2024-05-061-3/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Sometimes we want to enforce different lints depending on whether we're running CI. Until now we've been using `#[cfg(not(ci_arti_FOO))]` for this, but that approach now seems to be somewhat deprecated, and to cause warnings on nightly. (See #1395.) Instead, I'm tweaking the add_warning script so that it can conditionally suppress lines depending on a command-line argument that it receives.
* | | | Merge branch 'keymgr-test-utils' into 'main'gabi-2502024-05-074-50/+105
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | tor-keymgr: Move test constants to test_utils. Closes #1363 See merge request tpo/core/arti!2125
| * | | | tor-keymgr: Make test module private again.Gabriela Moldovan2024-05-071-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This doesn't need to be public anymore now that the test keys are exported from `test_utils`. Addresses https://gitlab.torproject.org/tpo/core/arti/-/merge_requests/2076#note_3016577
| * | | | tor-keymgr: Move TestSpecifier to test_utils.Gabriela Moldovan2024-05-073-26/+49
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is used by `ArtiNativeKeystore` and the `EphemeralKeystore`. Moving it to test_utils means `EphemeralKeystore` no longer needs to import test helpers from the arti module.
| * | | | tor-keymgr: Move test constants to test_utils.Gabriela Moldovan2024-05-074-23/+55
| | | | | | | | | | | | | | | | | | | | | | | | | Closes #1363 and addresses a handful of TODOs about `include_str!`ing the same key multiple times from various test modules.
* | | | | Merge branch 'hyper' into 'main'gabi-2502024-05-071-1/+18
|\ \ \ \ \ | |/ / / / |/| | | | | | | | | | | | | | Declare arti-hyper obsolete and unmaintained See merge request tpo/core/arti!2127
| * | | | Declare arti-hyper obsolete and unmaintainedIan Jackson2024-05-021-1/+18
| | |/ / | |/| |
* | | | Merge branch 'chutney' into 'main'Nick Mathewson2024-05-061-1/+1
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | CI: disable chutney tests in coverage job too See merge request tpo/core/arti!2120
| * | | | CI: disable chutney tests in coverage job tooIan Jackson2024-04-301-1/+1
| |/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Followup to !1488. Apropos #1299. Ideally these would be replaced by shadow tests. At a future point, when they've not been used for ages, we could delete the chutney scripts etc.
* | | | Merge branch 'rpc-prefixes' into 'main'Nick Mathewson2024-05-061-2/+2
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | Add requisite RPC method name prefixes See merge request tpo/core/arti!2130
| * | | | Add requisite RPC method name prefixesNick Mathewson2024-05-061-2/+2
|/ / / /
* | | | Merge branch 'circuit-reactor-unnest' into 'main'Nick Mathewson2024-05-061-90/+88
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | Circuit reactor: refactor to unnest a bit See merge request tpo/core/arti!2122
| * | | | Circuit reactor: use refutable let to unnest some codeJim Newsome2024-05-061-34/+35
| | | | |
| * | | | Circuit reactor: rename 'hop to 'hop_outboundJim Newsome2024-05-061-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | It was a bit misleading since it doesn't cover all processing for the hop.
| * | | | Circuit reactor run_once: remove a level of nestingJim Newsome2024-05-061-27/+27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Get rid of an `if` block by changing the guarded loop to check its conditions at the beginning of the loop instead of the end. This is a slight behavior change, since previously channel readiness wasn't checked before the first iteration of the loop.
| * | | | circuit reactor run_once: remove a level of nestingJim Newsome2024-05-061-90/+87
|/ / / / | | | | | | | | | | | | | | | | | | | | This should be a pure refactor. We remove a large if block and modify the first loop inside it to check whether the channel is ready before each attempt to send a message instead of after.
* | | | Merge branch 'status_methods' into 'main'Nick Mathewson2024-05-068-9/+197
|\ \ \ \ | |_|/ / |/| | | | | | | | | | | | | | | | | | | rpc: Implement get-client-status and watch-client-status Closes #1384 See merge request tpo/core/arti!2110
| * | | TorClient: Slightly cleaner (?) interface for registering RPC methods.Nick Mathewson2024-05-063-5/+24
| | | |
| * | | Add a note about declaring get and watch functions.Nick Mathewson2024-05-061-0/+6
| | | |
| * | | Add a note about why the RPC functions aren't declared as methods.Nick Mathewson2024-05-061-0/+5
| | | |
| * | | RPC: Send "null" for blockage rather than omitting it.Nick Mathewson2024-05-061-2/+1
| | | |
| * | | Lightly simplify the syntax for installing multiple InvokerEntsNick Mathewson2024-05-062-2/+42
| | | |
| * | | RPC: Implement methods to get and watch client bootstrap status.Nick Mathewson2024-05-065-3/+121
| | | |
| * | | Add a const instance of rpc::Nil.Nick Mathewson2024-05-061-0/+2
| | | |
| * | | rpc: Remove a limitation on DynMethod macro.Nick Mathewson2024-05-061-6/+5
|/ / / | | | | | | | | | It no longer requires the user to have `typetag` in scope.
* | | Merge branch 'warnings-05052024' into 'main'Nick Mathewson2024-05-068-21/+10
|\ \ \ | |/ / |/| | | | | | | | Fix warnings from latest Rust See merge request tpo/core/arti!2128
| * | CI: allow uexpected-cfgs when building docsNick Mathewson2024-05-061-1/+1
| | | | | | | | | | | | Without this, our rustdoc CI build will fail on nightly because of
| * | tor-rpcbase: Require downcast_rs 1.2.1Nick Mathewson2024-05-051-1/+1
| | | | | | | | | | | | This resolves a clippy warning about redundant bounds.
| * | Allow DropStatus to be unused.Nick Mathewson2024-05-051-0/+1
| | | | | | | | | | | | (It appears to be test-only.)
| * | Remove two unused cases of "TestError"Nick Mathewson2024-05-052-6/+0
| | |
| * | Resolve some clippy warnings about empty rustdoc.Nick Mathewson2024-05-054-13/+7
|/ / | | | | | | | | (In most cases, by writing the documentation; in tests, by permitting the documentation to be missing.)
* | Merge branch 'semver' into 'main'gabi-2502024-04-301-1/+0
|\ \ | | | | | | | | | | | | Remove semver.md, post release See merge request tpo/core/arti!2119
| * | Remove semver.md, post releaseIan Jackson2024-04-301-1/+0
| | |
* | | Merge branch 's101-2024-q1' into 'main'Nick Mathewson2024-04-301-2/+28
|\ \ \ | |/ / |/| | | | | | | | Update Sponsor 101 stats for Q1 2024. See merge request tpo/core/arti!2115
| * | Update stats for Q1 2024.Alexander Færøy2024-04-301-2/+28
| | |
| | * Merge branch 'tor-circmgr-0.18.1' into 'tor-circmgr-0.18.1'tor-circmgr-v0.18.1arti-v1.2.3gabi-2502024-05-156-26/+142
| |/| |/| | | | | | | | | | | TROVE-2024-003: Prepare release See merge request tpo/core/arti!2154
| | * CHANGELOG: Mention TROVE-2024-004Gabriela Moldovan2024-05-151-0/+16
| | |
| | * tor-circmgr: If necessary, extend the circuit to become STUB+.Gabriela Moldovan2024-05-151-8/+42
| | | | | | | | | | | | Closes #1400
| | * tor-circmgr: Add a helper for extending HsCircStubs by one hop.Gabriela Moldovan2024-05-151-2/+15
| | | | | | | | | | | | | | | | | | We're about to use this in `maybe_extend_stub_circuit` too. Part of #1400
| | * arti: Bump patchlevel.Gabriela Moldovan2024-05-152-2/+2
| | | | | | | | | | | | This contains the fix for TROVE-2024-003 (arti#1409).
| | * tor-circmgr: Bump patchlevel.Gabriela Moldovan2024-05-152-2/+2
| | |
| | * changelog: Add changelog for the 1.2.3 release.Gabriela Moldovan2024-05-151-0/+24
| | |