<feed xmlns='http://www.w3.org/2005/Atom'>
<title>mirrors/arti.git/crates/arti-client, branch arti-v1.4.5</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.5</id>
<link rel='self' href='http://git.dilluti0n.com/mirrors/arti.git/atom?h=arti-v1.4.5'/>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/'/>
<updated>2025-07-07T19:26:13Z</updated>
<entry>
<title>arti-client: Update release date.</title>
<updated>2025-07-07T19:26:13Z</updated>
<author>
<name>Gabriela Moldovan</name>
<email>gabi@torproject.org</email>
</author>
<published>2025-07-07T19:26:13Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=6773c426d97a21f66020ab26a6b7938fcaa97929'/>
<id>urn:sha1:6773c426d97a21f66020ab26a6b7938fcaa97929</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Bump all the unstable tor- and arti- crates to 0.32.0.</title>
<updated>2025-07-07T17:41:41Z</updated>
<author>
<name>Gabriela Moldovan</name>
<email>gabi@torproject.org</email>
</author>
<published>2025-07-07T17:26:53Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=721568b1bf261f6635c61c9f3abe52e24af1bf9c'/>
<id>urn:sha1:721568b1bf261f6635c61c9f3abe52e24af1bf9c</id>
<content type='text'>
Done using:

```
for crate in $(./maint/list_crates  | rg '^(tor|arti-)'); do
    cargo set-version -p $crate 0.32.0
done
```
</content>
</entry>
<entry>
<title>Bump the versions of the non-{arti-,tor-} crates.</title>
<updated>2025-07-07T17:41:41Z</updated>
<author>
<name>Gabriela Moldovan</name>
<email>gabi@torproject.org</email>
</author>
<published>2025-07-07T17:24:35Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=c69083de50fb19331eba474ec6d1a3e5893274a3'/>
<id>urn:sha1:c69083de50fb19331eba474ec6d1a3e5893274a3</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): None
    ```
    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):
     - oneshot-fused-workaround
     - slotmap-careful
     - test-temp-dir
     - fslock-guard
     - hashx
     - equix
     - caret
     - safelog
     - retry-error

  * crates where APIs were broken (bump minor):
     - fs-mistrust (the implicit once_cell feature was removed)

The bumps from this commit were created using this script:

```
PATCH="
oneshot-fused-workaround
slotmap-careful
test-temp-dir
fslock-guard
hashx
equix
caret
safelog
retry-error
"

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

MINOR="
fs-mistrust
"

for crate in $MINOR; do
    cargo set-version --bump minor -p $crate;
done
```
</content>
</entry>
<entry>
<title>Temporarily suppress mismatched_lifetime_syntaxes.</title>
<updated>2025-07-07T15:50:04Z</updated>
<author>
<name>Gabriela Moldovan</name>
<email>gabi@torproject.org</email>
</author>
<published>2025-07-07T15:50:04Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=a11b611466a5a73f5e06a0aabd17284a57d12fe3'/>
<id>urn:sha1:a11b611466a5a73f5e06a0aabd17284a57d12fe3</id>
<content type='text'>
See #2060.
</content>
</entry>
<entry>
<title>Merge branch 'arti-1.4.5-prep' into 'main'</title>
<updated>2025-07-07T13:26:54Z</updated>
<author>
<name>gabi-250</name>
<email>gabi@torproject.org</email>
</author>
<published>2025-07-07T13:26:54Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=f2077076c6718b11cce147e1bb1b84a5b63cba58'/>
<id>urn:sha1:f2077076c6718b11cce147e1bb1b84a5b63cba58</id>
<content type='text'>
Run fixup-features, upgrade deps in preparation for release

See merge request tpo/core/arti!3083</content>
</entry>
<entry>
<title>Upgrade to derive-deftly 1.1.0.</title>
<updated>2025-07-07T11:01:51Z</updated>
<author>
<name>Gabriela Moldovan</name>
<email>gabi@torproject.org</email>
</author>
<published>2025-07-07T09:52:35Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=83ec497ba66b48198d7600ec1ecd93cfd59c1cd3'/>
<id>urn:sha1:83ec497ba66b48198d7600ec1ecd93cfd59c1cd3</id>
<content type='text'>
I had to also bump `toml` to `0.8.23`, because `toml 0.8.22` is
incompatible with `serde_spanned 0.6.9` (which is automatically pulled
in because of the d-d upgrade).
</content>
</entry>
<entry>
<title>arti-client: Remove dependency on tor-key-forge.</title>
<updated>2025-07-07T09:41:11Z</updated>
<author>
<name>Gabriela Moldovan</name>
<email>gabi@torproject.org</email>
</author>
<published>2025-07-07T09:41:11Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=dbbff5aa37edc319456ac782b9ccdf67f640d30c'/>
<id>urn:sha1:dbbff5aa37edc319456ac782b9ccdf67f640d30c</id>
<content type='text'>
This was added in error a while ago, but we forgot to remove it.
</content>
</entry>
<entry>
<title>Run fixup-features in preparation for release.</title>
<updated>2025-07-07T09:37:43Z</updated>
<author>
<name>Gabriela Moldovan</name>
<email>gabi@torproject.org</email>
</author>
<published>2025-07-07T09:37:05Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=d44555a0b9885eb776222f31a98c635234e0e206'/>
<id>urn:sha1:d44555a0b9885eb776222f31a98c635234e0e206</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Clippy 1.88 fix: reformat some debug prints.</title>
<updated>2025-07-03T18:49:04Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2025-07-03T18:43:51Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=d74decb143dec2b308ea1609be275444b92b7411'/>
<id>urn:sha1:d74decb143dec2b308ea1609be275444b92b7411</id>
<content type='text'>
</content>
</entry>
<entry>
<title>arti: Add keys list and keys list-keystores</title>
<updated>2025-06-12T11:16:29Z</updated>
<author>
<name>hjrgrn</name>
<email>3874-hjrgrn@gitlab.torproject.org</email>
</author>
<published>2025-06-12T11:16:29Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=d9c4d7cc30d22a80ff4a97bc6588e02774f0062f'/>
<id>urn:sha1:d9c4d7cc30d22a80ff4a97bc6588e02774f0062f</id>
<content type='text'>
</content>
</entry>
</feed>
