summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
| * | check_licences: Allow the ludicrous "Apache-2.0) OR MIT AND (MIT"Ian Jackson2024-10-301-0/+4
|/ / | | | | | | | | | | | | | | | | Currently cargo-license mangles libm's Cargo.toml information very badly! And also our licence checker script is rather too stupid to do the boolean logic. I have a better licence checker elsewhere, in a personal project but ... it's GPL'd :-). https://salsa.debian.org/dgit-team/tag2upload-service-manager/-/blob/main/maint/check-licences?ref_type=heads
* | Merge branch 'fallbackdir-10-24' into 'main'Nick Mathewson2024-10-291-895/+888
|\ \ | | | | | | | | | | | | fallbackdir: Update list generated on October 24, 2024 See merge request tpo/core/arti!2589
| * | fallbackdir: Update list generated on October 24, 2024Tor CI Release2024-10-291-895/+888
| | | | | | | | | | | | Signed-off-by: Tor CI Release <[email protected]>
* | | Merge branch 'tor-genaddr' into 'main'Nick Mathewson2024-10-2924-583/+718
|\ \ \ | |_|/ |/| | | | | | | | Extract general::SocketAddr and its unix friends to their own crate. See merge request tpo/core/arti!2592
| * | Fix Windows compilation after moving unix::SocketAddr.Nick Mathewson2024-10-291-6/+6
| | |
| * | tor-general-addr: Resolve rustdoc links.Nick Mathewson2024-10-291-1/+0
| | |
| * | Adjust docsrs exception and documentation for unix::SocketAddrNick Mathewson2024-10-292-1/+6
| | |
| * | Add semver file for removed members of tor-rtcompat.Nick Mathewson2024-10-291-0/+1
| | |
| * | whitespace fix.Nick Mathewson2024-10-291-1/+1
| | |
| * | Whitespace fixes.Nick Mathewson2024-10-291-1/+1
| | |
| * | Remove re-export of "general::*" from tor-rtcompat.Nick Mathewson2024-10-291-17/+15
| | |
| * | Remove re-export of "unix" from tor_rtcompat.Nick Mathewson2024-10-2911-44/+35
| | |
| * | Extract general::SocketAddr and its unix friends to their own crate.Nick Mathewson2024-10-2914-536/+677
| |/ | | | | | | This is mostly code motion.
* | Merge branch 'tor-config-path' into 'main'Nick Mathewson2024-10-297-6/+127
|\ \ | | | | | | | | | | | | tor-config-path: new crate containing moved `tor_config::path` See merge request tpo/core/arti!2590
| * | tor-config-path: comment-out a test that relies on 'tor-config'Steven Engler2024-10-291-0/+4
| | |
| * | tor-config-path: added lint listSteven Engler2024-10-291-4/+42
| | |
| * | tor-config-path: moved `tor_config::path` to hereSteven Engler2024-10-295-506/+552
| | | | | | | | | | | | This is a direct move of the `path` module from tor-config.
| * | tor-config-path: added empty packageSteven Engler2024-10-296-0/+33
| |/
* | Merge branch 'backtrace-display' into 'main'Alexander Hansen Færøy2024-10-291-1/+1
|\ \ | |/ |/| | | | | | | | | tor-error: use `Display` for backtrace captured by `BugRepr` Closes #1713 See merge request tpo/core/arti!2588
| * tor-error: use `Display` for backtrace captured by `BugRepr`Steven Engler2024-10-291-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Before: ```text 2024-10-29T01:57:31Z ERROR arti: error: internal error (bug) at crates/arti/src/lib.rs:378:27: foo Backtrace [{ fn: "tor_error::internal::ie_backtrace::capture", file: "./crates/tor-error/src/internal.rs", line: 21 }, { fn: "tor_error::internal::Bug::new_inner", file: "./crates/tor-error/src/internal.rs", line: 105 }, { fn: "tor_error::internal::Bug::new", file: "./crates/tor-error/src/internal.rs", line: 94 }, { fn: "arti::main_main", file: "./crates/arti/src/lib.rs", line: 378 }, ... ``` After: ```text 2024-10-29T01:58:23Z ERROR arti: error: internal error (bug) at crates/arti/src/lib.rs:378:27: foo 0: tor_error::internal::ie_backtrace::capture at ./crates/tor-error/src/internal.rs:21:27 1: tor_error::internal::Bug::new_inner at ./crates/tor-error/src/internal.rs:105:24 2: tor_error::internal::Bug::new at ./crates/tor-error/src/internal.rs:94:9 3: arti::main_main at ./crates/arti/src/lib.rs:378:27 ... ```
* | Merge branch 'config-paths' into 'main'opara2024-10-293-61/+39
|\ \ | |/ |/| | | | | tor-config: use 'path' feature of shellexpand See merge request tpo/core/arti!2583
| * tor-config: remove `CfgPathError::BadUtf8`Steven Engler2024-10-281-20/+1
| |
| * tor-config: use 'path' feature of shellexpandSteven Engler2024-10-283-41/+38
| |
* | Merge branch 'python-ci' into 'main'Nick Mathewson2024-10-295-10/+231
|\ \ | | | | | | | | | | | | | | | | | | CI: Apply flake8, mypy, and black to all of our Python Closes #1689 See merge request tpo/core/arti!2584
| * | CI: Re-purpose "python-check" to run python lints.Nick Mathewson2024-10-281-7/+10
| | |
| * | python-lints script to run flake8, black, and mypy.Nick Mathewson2024-10-282-0/+217
| | | | | | | | | | | | | | | | | | | | | The script is a bit tricky because it needs to set arguments correctly, use the right dependencies, treat packages differently from scripts, and find all of the packages and scripts in our repository.
| * | arti_rpc_tests: use Iterator, not GeneratorNick Mathewson2024-10-281-2/+2
| | | | | | | | | | | | Generator is more abstract, and expects a possible return or send type.
| * | update-md-links: annotate a Popen generic.Nick Mathewson2024-10-281-1/+2
| |/ | | | | | | For some reason this will soon be necessary with mypy.
* | Merge branch 'chutney-artifact' into 'main'opara2024-10-291-0/+5
|\ \ | | | | | | | | | | | | ci: upload 'shadow.chutney.data/' artifact in 'integration-chutney-shadow' See merge request tpo/core/arti!2586
| * | ci: upload more artifacts in 'integration-chutney-shadow'Steven Engler2024-10-281-0/+5
| | | | | | | | | | | | Set "1 week" since I see that it's used on another shadow artifact.
* | | Merge branch 'rpc-spec-tweaks-1711' into 'main'Nick Mathewson2024-10-292-127/+147
|\ \ \ | |/ / |/| | | | | | | | | | | | | | Final (ha!) clean-ups on rpc connect-string specs Closes #1711 See merge request tpo/core/arti!2582
| * | rpc: clarify percent-encoding rules.Nick Mathewson2024-10-281-5/+10
| | |
| * | rpc: refer to TOML tables, not sections.Nick Mathewson2024-10-281-5/+5
| | |
| * | rpc: centralize treatment of unrecognized sections/members.Nick Mathewson2024-10-281-2/+2
| | |
| * | rpc: clarify "hidden file" meaning.Nick Mathewson2024-10-281-2/+3
| | |
| * | rpc: tweak "connect string" terminologyNick Mathewson2024-10-282-75/+78
| | | | | | | | | | | | | | | With all the fanciness we've built up here here, it seems that "connect point" is a better term than "connect point".
| * | rpc-connect-sketch: convert to toml.Nick Mathewson2024-10-271-50/+61
| |/ | | | | | | | | (We've decided to make this change because these files are meant to be written by humans.)
* | Merge branch 'chutney-deps' into 'main'Jim Newsome2024-10-281-1/+16
|\ \ | | | | | | | | | | | | CI: pip install chutney to get its dependencies See merge request tpo/core/arti!2587
| * | integration-chutney-shadow: pip install chutney to get its dependenciesJim Newsome2024-10-281-0/+8
| | |
| * | .gitlab-ci: reformat long apt-install lineJim Newsome2024-10-281-1/+8
|/ /
* | Merge branch 'shadow-commit' into 'main'Jim Newsome2024-10-281-2/+3
|\ \ | | | | | | | | | | | | ci: use latest shadow commit See merge request tpo/core/arti!2585
| * | ci: use latest shadow commitSteven Engler2024-10-281-2/+3
|/ / | | | | | | | | The changes in https://github.com/shadow/shadow/pull/3428 should add more details to the CI output of Shadow simulations.
* | Merge branch 'orport' into 'main'opara2024-10-282-85/+99
|\ \ | |/ |/| | | | | tor-chanmgr: revert `PendingChannelHandle` drop behaviour, and try to prevent problematic code paths See merge request tpo/core/arti!2566
| * tor-chanmgr: rename `replace_pending_channel` to ↵Steven Engler2024-10-242-9/+10
| | | | | | | | `upgrade_pending_channel_to_open`
| * tor-chanmgr: `remove_pending` now takes a `PendingChannelHandle`Steven Engler2024-10-241-18/+8
| |
| * tor-chanmgr: improve cleanup procedure of pending channelsSteven Engler2024-10-242-47/+92
| | | | | | | | | | | | | | | | | | | | An attempt to make sure that there are no code paths which forget to remove a pending channel from the channel map. This also adds error-level log messages and panics during debug builds if a `PendingChannelHandle` is dropped without properly passing it to `MgrState::remove_pending_channel` or `MgrState::replace_pending_channel`.
| * Revert "tor-chanmgr: `PendingChannelHandle` removes the channel when dropped"Steven Engler2024-10-212-56/+34
| | | | | | | | | | | | | | | | This reverts commit f85bc3cf849109aaa2c4da9fc8c06e7173a0543f. There were some small conflcits in `AbstractChanMgr::get_or_launch_internal`, so this wasn't a clean revert.
* | Merge branch 'arti-rpcserver-remove_echo_on_session' into 'main'Nick Mathewson2024-10-271-26/+0
|\ \ | | | | | | | | | | | | arti-rpcserver: Remove echo_on_session See merge request tpo/core/arti!2549
| * | Remove echo structsNeel Chauhan2024-10-251-14/+0
| | |
| * | arti-rpcserver: Remove echo_on_sessionNeel Chauhan2024-10-251-12/+0
|/ /