<feed xmlns='http://www.w3.org/2005/Atom'>
<title>mirrors/arti.git/crates/tor-circmgr, 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-circmgr: Explicit type annotation</title>
<updated>2025-03-26T09:51:19Z</updated>
<author>
<name>Clara Engler</name>
<email>cve@cve.cx</email>
</author>
<published>2025-03-25T14:52:23Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=b5c44d2be580ea73fd71aad01b19dbf4d88d8b72'/>
<id>urn:sha1:b5c44d2be580ea73fd71aad01b19dbf4d88d8b72</id>
<content type='text'>
This commit adds an explicit type annotation to the learning_timeouts()
function, as leaving it out yielded an error while trying to compile
tor-circmgr in a project that had this crate deep down in its supply
chain.
</content>
</entry>
<entry>
<title>circmgr: test behavior of IteratorRandom::choose_multiple</title>
<updated>2025-03-25T12:05:56Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2025-03-24T12:09:12Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=295deff2a416870b5af9d6cbd3246a991cd10652'/>
<id>urn:sha1:295deff2a416870b5af9d6cbd3246a991cd10652</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Merge branch 'named_protovers' into 'main'</title>
<updated>2025-03-20T17:10:03Z</updated>
<author>
<name>David Goulet</name>
<email>dgoulet@torproject.org</email>
</author>
<published>2025-03-20T17:10:03Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=4727e71c790f96bb84723bbf5afc4bc3aa35136e'/>
<id>urn:sha1:4727e71c790f96bb84723bbf5afc4bc3aa35136e</id>
<content type='text'>
protover: Add support for subprotocol version mnemonics.

Closes #1891

See merge request tpo/core/arti!2854</content>
</entry>
<entry>
<title>Merge branch 'timeout_est_overflow' into 'main'</title>
<updated>2025-03-19T17:52:22Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2025-03-19T17:52:22Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=ab18f0ee711834b836f2613e3cdc46ecd5e9f125'/>
<id>urn:sha1:ab18f0ee711834b836f2613e3cdc46ecd5e9f125</id>
<content type='text'>
Impose a maximum on our fallback estimated timeout

Closes #1693

See merge request tpo/core/arti!2842</content>
</entry>
<entry>
<title>squash! Upgrade rand dependency to 0.9.</title>
<updated>2025-03-18T16:09:44Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2025-03-18T14:26:16Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=0805d27122b929f2eaa75f56761cb0da210d5b13'/>
<id>urn:sha1:0805d27122b929f2eaa75f56761cb0da210d5b13</id>
<content type='text'>
- Several methods have been moved out of SliceRandom.
</content>
</entry>
<entry>
<title>squash! Upgrade rand dependency to 0.9.</title>
<updated>2025-03-18T16:09:44Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2025-03-18T13:01:31Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=2f8993c22c2b86010e4fd8b5169ef0ab83f8c754'/>
<id>urn:sha1:2f8993c22c2b86010e4fd8b5169ef0ab83f8c754</id>
<content type='text'>
- `rand::thread_rng()` has been deprecated and renamed to `rand::rng()`
</content>
</entry>
<entry>
<title>Upgrade rand dependency to 0.9.</title>
<updated>2025-03-18T16:09:44Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2025-03-17T17:56:27Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=e806f007efb84e40bf17ac1444b35ddab9abc83f'/>
<id>urn:sha1:e806f007efb84e40bf17ac1444b35ddab9abc83f</id>
<content type='text'>
(Per discussion at #1774, we think the changes are acceptable.)

This commit won't compile on its own; subsequent commits will fix it.
</content>
</entry>
<entry>
<title>Use named subprotocol versions throughout arti.</title>
<updated>2025-03-12T14:47:05Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2025-03-12T14:47:05Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=90b09cd03ca50ba2aced0f89b5adc5c59d582808'/>
<id>urn:sha1:90b09cd03ca50ba2aced0f89b5adc5c59d582808</id>
<content type='text'>
</content>
</entry>
</feed>
