<feed xmlns='http://www.w3.org/2005/Atom'>
<title>mirrors/arti.git/crates/tor-proto, branch arti-v1.4.2</title>
<subtitle>mirror of https://gitlab.torproject.org/tpo/core/arti
</subtitle>
<id>http://git.dilluti0n.com/mirrors/arti.git/atom?h=arti-v1.4.2</id>
<link rel='self' href='http://git.dilluti0n.com/mirrors/arti.git/atom?h=arti-v1.4.2'/>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/'/>
<updated>2025-03-31T17:59:51Z</updated>
<entry>
<title>Bump all the unstable tor- and arti- crates to 0.29.0.</title>
<updated>2025-03-31T17:59:51Z</updated>
<author>
<name>Gabriela Moldovan</name>
<email>gabi@torproject.org</email>
</author>
<published>2025-03-31T17:34:50Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=1be579f99a7c0784bd7710f9ee6ee9a6b10c85df'/>
<id>urn:sha1:1be579f99a7c0784bd7710f9ee6ee9a6b10c85df</id>
<content type='text'>
Done using:

```
for crate in $(./maint/list_crates  | rg '^(tor|arti-)'); do
    cargo set-version -p $crate 0.29.0
done
```
</content>
</entry>
<entry>
<title>Bump the versions of the non-{arti-,tor-} crates.</title>
<updated>2025-03-31T17:59:48Z</updated>
<author>
<name>Gabriela Moldovan</name>
<email>gabi@torproject.org</email>
</author>
<published>2025-03-31T17:33:52Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=a0919b507bb2a5855e36b85a2e10e3eac5fa4e15'/>
<id>urn:sha1:a0919b507bb2a5855e36b85a2e10e3eac5fa4e15</id>
<content type='text'>
The non-{arti-,tor-} crates are:
```
./maint/list_crates  | rg -v '^(tor|arti)'
oneshot-fused-workaround
slotmap-careful
test-temp-dir
fslock-guard
hashx
equix
caret
fs-mistrust
safelog
retry-error
```

We split them in the following categories:
  * crates with no changes (no version bumps):
    ```
    maint/changed_crates -v "arti-v$LAST_VERSION" 2&gt;&amp;1 &gt;/dev/null | grep -i "no change" | grep -v '\(tor\|arti\)-'

     oneshot-fused-workaround: No change.
     slotmap-careful: No change.
     fslock-guard: No change.
     caret: No change.
     retry-error: No change.
    ```

  * crates that only have non-functional changes (bump the patch version):
     - test-temp-dir
     - equix
     - fs-mistrust
     - safelog

  * crates where APIs were broken (bump minor):
     - hashx (`RngCore` impl for `SipRand`)

The bumps from this commit were created using this script:

```
PATCH="
test-temp-dir
equix
fs-mistrust
safelog
"

for crate in $PATCH; do
    cargo set-version --bump patch -p $crate;
done

MINOR="
hashx
"

for crate in $MINOR; do
    cargo set-version --bump minor -p $crate;
done
```
</content>
</entry>
<entry>
<title>tor-proto: remove unnecessary `Option` from `circuit_action`</title>
<updated>2025-03-26T16:35:47Z</updated>
<author>
<name>Steven Engler</name>
<email>opara@torproject.org</email>
</author>
<published>2025-03-25T02:24:17Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=152b8714711cd7267d0663a65f0ad50fba69f80c'/>
<id>urn:sha1:152b8714711cd7267d0663a65f0ad50fba69f80c</id>
<content type='text'>
</content>
</entry>
<entry>
<title>tor-proto: fix possible bug when there are no ready streams</title>
<updated>2025-03-26T16:01:16Z</updated>
<author>
<name>Steven Engler</name>
<email>opara@torproject.org</email>
</author>
<published>2025-03-25T02:20:38Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=888a402432cd2e7ea27cae75f0d5a2b8efab25a7'/>
<id>urn:sha1:888a402432cd2e7ea27cae75f0d5a2b8efab25a7</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Merge branch 'circuit-action' into 'main'</title>
<updated>2025-03-25T18:25:37Z</updated>
<author>
<name>opara</name>
<email>opara@torproject.org</email>
</author>
<published>2025-03-25T18:25:37Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=8cf4c826b86b1dde2b238d7f63f54d973ff4741b'/>
<id>urn:sha1:8cf4c826b86b1dde2b238d7f63f54d973ff4741b</id>
<content type='text'>
tor-proto: simplify `ConfluxSet::circuit_action`

See merge request tpo/core/arti!2884</content>
</entry>
<entry>
<title>tor-basic-utils: move `flatten` from tor-proto</title>
<updated>2025-03-25T17:44:08Z</updated>
<author>
<name>Steven Engler</name>
<email>opara@torproject.org</email>
</author>
<published>2025-03-25T17:44:06Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=49c02757f05d983c1af2d49bc82f4f9cc5dcdcc7'/>
<id>urn:sha1:49c02757f05d983c1af2d49bc82f4f9cc5dcdcc7</id>
<content type='text'>
I also added an additional non-doc TODO comment.
</content>
</entry>
<entry>
<title>Merge branch 'circuit-cmd' into 'main'</title>
<updated>2025-03-25T10:14:06Z</updated>
<author>
<name>gabi-250</name>
<email>gabi@torproject.org</email>
</author>
<published>2025-03-25T10:14:06Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=5426bb68ba349b64ab1084d020390575091df20e'/>
<id>urn:sha1:5426bb68ba349b64ab1084d020390575091df20e</id>
<content type='text'>
tor-proto: Replace RunOnceCmdInner with CircuitCmd in Circuit impl

See merge request tpo/core/arti!2881</content>
</entry>
<entry>
<title>tor-proto: simplify tunnel `run_once`</title>
<updated>2025-03-25T01:56:35Z</updated>
<author>
<name>Steven Engler</name>
<email>opara@torproject.org</email>
</author>
<published>2025-03-25T01:29:01Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=2931820da995fb8242ef848866086761b4f794f7'/>
<id>urn:sha1:2931820da995fb8242ef848866086761b4f794f7</id>
<content type='text'>
As far as I can tell, the extra drop handling code isn't needed anymore.
</content>
</entry>
<entry>
<title>tor-proto: remove `CircuitActionResult` alias</title>
<updated>2025-03-25T01:56:35Z</updated>
<author>
<name>Steven Engler</name>
<email>opara@torproject.org</email>
</author>
<published>2025-03-25T01:21:32Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=2db7bda305656d7a5797d0a3ee0d213855cd6729'/>
<id>urn:sha1:2db7bda305656d7a5797d0a3ee0d213855cd6729</id>
<content type='text'>
I think the return type is simplified enough now that we don't need
this.
</content>
</entry>
<entry>
<title>tor-proto: change `ConfluxSet::next_circ_action` to return a `Future`</title>
<updated>2025-03-25T01:56:35Z</updated>
<author>
<name>Steven Engler</name>
<email>opara@torproject.org</email>
</author>
<published>2025-03-25T01:18:16Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=c84ebe1cddad53c62801ef923131ec783bd50114'/>
<id>urn:sha1:c84ebe1cddad53c62801ef923131ec783bd50114</id>
<content type='text'>
Now returns only the first item of the stream rather than the stream
itself. We use this in `Reactor::run_once`, which means we only ever use
the first item anyways.
</content>
</entry>
</feed>
