<feed xmlns='http://www.w3.org/2005/Atom'>
<title>mirrors/arti.git/crates, branch arti-v2.4.0</title>
<subtitle>mirror of https://gitlab.torproject.org/tpo/core/arti
</subtitle>
<id>http://git.dilluti0n.com/mirrors/arti.git/atom?h=arti-v2.4.0</id>
<link rel='self' href='http://git.dilluti0n.com/mirrors/arti.git/atom?h=arti-v2.4.0'/>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/'/>
<updated>2026-06-01T17:28:14Z</updated>
<entry>
<title>Merge branch '2.4.0-bumps' into 'main'</title>
<updated>2026-06-01T17:28:14Z</updated>
<author>
<name>gabi-250</name>
<email>gabi@torproject.org</email>
</author>
<published>2026-06-01T17:28:14Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=d93b5bed3a99a085a15e681633ef47a4e53098ea'/>
<id>urn:sha1:d93b5bed3a99a085a15e681633ef47a4e53098ea</id>
<content type='text'>
Version bumps for the 2.4.0 release

See merge request tpo/core/arti!4039</content>
</entry>
<entry>
<title>Update release date</title>
<updated>2026-06-01T16:53:29Z</updated>
<author>
<name>Gabriela Moldovan</name>
<email>gabi@torproject.org</email>
</author>
<published>2026-06-01T16:53:29Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=2fc337133303327e0ee830757291f5bb864691c8'/>
<id>urn:sha1:2fc337133303327e0ee830757291f5bb864691c8</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Bump arti crate to 2.4.0</title>
<updated>2026-06-01T16:32:34Z</updated>
<author>
<name>Gabriela Moldovan</name>
<email>gabi@torproject.org</email>
</author>
<published>2026-06-01T16:32:34Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=b4df40ec4b09800796b8815f8891b36ed9965a0f'/>
<id>urn:sha1:b4df40ec4b09800796b8815f8891b36ed9965a0f</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Bump all the unstable tor- and arti- crates to 0.43.0</title>
<updated>2026-06-01T16:32:03Z</updated>
<author>
<name>Gabriela Moldovan</name>
<email>gabi@torproject.org</email>
</author>
<published>2026-06-01T16:32:03Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=2100e7c8586af3616310d2bc18bbe971af77f1f1'/>
<id>urn:sha1:2100e7c8586af3616310d2bc18bbe971af77f1f1</id>
<content type='text'>
Done using:

```
for crate in $(./maint/list-crates  | rg '^(tor|arti-)'); do
    cargo set-version -p $crate 0.43.0
done
```
</content>
</entry>
<entry>
<title>Run cargo update for {hashx,equix}/bench</title>
<updated>2026-06-01T16:30:41Z</updated>
<author>
<name>Gabriela Moldovan</name>
<email>gabi@torproject.org</email>
</author>
<published>2026-06-01T16:30:41Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=4c84c04b19b74cb918ceb8535a95e6d4d8e9317d'/>
<id>urn:sha1:4c84c04b19b74cb918ceb8535a95e6d4d8e9317d</id>
<content type='text'>
Done using

```
  (cd crates/hashx/bench &amp;&amp; cargo update)
  (cd crates/equix/bench &amp;&amp; cargo update)
```
</content>
</entry>
<entry>
<title>Bump the versions of the non-{arti-,tor-} crates</title>
<updated>2026-06-01T16:30:04Z</updated>
<author>
<name>Gabriela Moldovan</name>
<email>gabi@torproject.org</email>
</author>
<published>2026-06-01T16:30:04Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=d480c7653c219e019ad3f2387dfdce7f6d85e4d3'/>
<id>urn:sha1:d480c7653c219e019ad3f2387dfdce7f6d85e4d3</id>
<content type='text'>
The non-{arti-,tor-} crates are:
```
./maint/list-crates  | rg -v '^(tor|arti)'
oneshot-fused-workaround
web-time-compat
slotmap-careful
test-temp-dir
fslock-guard
hashx
equix
caret
fs-mistrust
safelog
retry-error
futures-copy
```

We split them in the following categories:
  * crates with no changes (no version bumps):

    ```
     oneshot-fused-workaround: No change.
     web-time-compat: No change.
     slotmap-careful: No change.
     test-temp-dir: No change.
     caret: No change.
     safelog: No change.
     retry-error: No change.
     futures-copy: No change.
    ```

    Obtained with:
    ```
    maint/changed-crates -v "arti-v$LAST_VERSION" 2&gt;&amp;1 &gt;/dev/null | grep -i "no change" | grep -v '\(tor\|arti\)-'
    ```

  * crates that only have non-functional changes (bump the patch version,
    but not the dependend-on version):
    - equix

  * crates where functional changes were made, but no APIs were broken
    (bump patch):
    - fs-mistrust

  * crates where APIs were broken (bump minor):
    - hashx
    - fslock-guard

The bumps from this commit were created using this script:

```
PATCH_NF=(
equix
)

PATCH="
fs-mistrust
"

MINOR="
hashx
fslock-guard
"

./maint/bump-nodep "${PATCH_NF[@]}"

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

for crate in $MINOR; do
    cargo set-version --bump minor -p $crate;
done
```
</content>
</entry>
<entry>
<title>tor-netdoc: Use spec comment for identity-ed25519</title>
<updated>2026-06-01T12:33:11Z</updated>
<author>
<name>Clara Engler</name>
<email>cve@cve.cx</email>
</author>
<published>2026-05-27T15:28:24Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=4826135752a56c198c83780ad9d5953b200d54e0'/>
<id>urn:sha1:4826135752a56c198c83780ad9d5953b200d54e0</id>
<content type='text'>
</content>
</entry>
<entry>
<title>tor-netdoc: Small spelling fix</title>
<updated>2026-06-01T12:13:33Z</updated>
<author>
<name>Clara Engler</name>
<email>cve@cve.cx</email>
</author>
<published>2026-05-27T15:22:37Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=7b93bb4704cedd4518cebc42bc4df959f570257b'/>
<id>urn:sha1:7b93bb4704cedd4518cebc42bc4df959f570257b</id>
<content type='text'>
</content>
</entry>
<entry>
<title>tor-netdoc: Fix RouterDesc::ed_identity expect msg</title>
<updated>2026-06-01T12:13:33Z</updated>
<author>
<name>Clara Engler</name>
<email>cve@cve.cx</email>
</author>
<published>2026-05-27T15:20:32Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=6b2a64aadf9f8df5091cbbb2bfe3a6aeef9e618b'/>
<id>urn:sha1:6b2a64aadf9f8df5091cbbb2bfe3a6aeef9e618b</id>
<content type='text'>
</content>
</entry>
<entry>
<title>tor-netdoc: Store identity_ed25519 in EmbeddedCert logic (fmt)</title>
<updated>2026-06-01T12:13:33Z</updated>
<author>
<name>Clara Engler</name>
<email>cve@cve.cx</email>
</author>
<published>2026-05-19T14:16:07Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=f9fad9d802b88380c446f43a5a60c2739df876a5'/>
<id>urn:sha1:f9fad9d802b88380c446f43a5a60c2739df876a5</id>
<content type='text'>
Just rustfmt.
</content>
</entry>
</feed>
