<feed xmlns='http://www.w3.org/2005/Atom'>
<title>mirrors/arti.git/crates/arti, 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-31T18:00:09Z</updated>
<entry>
<title>Bump arti crate to 1.4.2</title>
<updated>2025-03-31T18:00:09Z</updated>
<author>
<name>Gabriela Moldovan</name>
<email>gabi@torproject.org</email>
</author>
<published>2025-03-31T17:35:06Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=494a6911049235e6ed4cf9e595126f7504d06402'/>
<id>urn:sha1:494a6911049235e6ed4cf9e595126f7504d06402</id>
<content type='text'>
Done using:

```
cargo set-version --bump patch -p arti
```
</content>
</entry>
<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>Merge branch 'rpc-configuration' into 'main'</title>
<updated>2025-03-25T18:27:32Z</updated>
<author>
<name>opara</name>
<email>opara@torproject.org</email>
</author>
<published>2025-03-25T18:27:32Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=707de7230ee2a1fbb50b6fab6ef2a6cb038965ca'/>
<id>urn:sha1:707de7230ee2a1fbb50b6fab6ef2a6cb038965ca</id>
<content type='text'>
Cleanups related to rpc configuration

Closes #1309 and #1830

See merge request tpo/core/arti!2887</content>
</entry>
<entry>
<title>Add examples and tests for RPC options.</title>
<updated>2025-03-25T16:49:46Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2025-03-25T16:48:30Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=e61d23f2c15cf93ed8690dae73ee930d5eab9e32'/>
<id>urn:sha1:e61d23f2c15cf93ed8690dae73ee930d5eab9e32</id>
<content type='text'>
Closes #1830.
</content>
</entry>
<entry>
<title>arti: warn when rpc options are set without rpc feature.</title>
<updated>2025-03-25T13:44:42Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2025-03-25T13:38:55Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=8ca3f0dedfd370ef6a8542249a30f19ce9f35302'/>
<id>urn:sha1:8ca3f0dedfd370ef6a8542249a30f19ce9f35302</id>
<content type='text'>
Closes #1309.
</content>
</entry>
<entry>
<title>Mark rpc features as non-experimental.</title>
<updated>2025-03-25T12:53:58Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2025-03-18T20:08:34Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=2e1e19f986fc2bded36e2c5328110bbe01263d9a'/>
<id>urn:sha1:2e1e19f986fc2bded36e2c5328110bbe01263d9a</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Merge branch '1630-scrub-address-from-output' into 'main'</title>
<updated>2025-03-19T12:14:58Z</updated>
<author>
<name>gabi-250</name>
<email>gabi@torproject.org</email>
</author>
<published>2025-03-19T12:14:58Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=73e102d74348c8a24cf9adb6fe6292dac202d17e'/>
<id>urn:sha1:73e102d74348c8a24cf9adb6fe6292dac202d17e</id>
<content type='text'>
hsc: remove onion-address flag in favour of stdin

Closes #1630

See merge request tpo/core/arti!2861</content>
</entry>
<entry>
<title>test: Fix get-key-error testcase for hsc</title>
<updated>2025-03-19T11:33:05Z</updated>
<author>
<name>hjrgrn</name>
<email>3874-hjrgrn@gitlab.torproject.org</email>
</author>
<published>2025-03-19T11:33:05Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=3ca6eae197fb9d101a254697c622f1721dac5215'/>
<id>urn:sha1:3ca6eae197fb9d101a254697c622f1721dac5215</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Merge branch 'hsc-lf' into 'main'</title>
<updated>2025-03-18T14:27:13Z</updated>
<author>
<name>gabi-250</name>
<email>gabi@torproject.org</email>
</author>
<published>2025-03-18T14:27:13Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=c0fdeb578c1e649a270d2a17ad3461dc7bf319b6'/>
<id>urn:sha1:c0fdeb578c1e649a270d2a17ad3461dc7bf319b6</id>
<content type='text'>
arti: hsc-key-get: Print LF after discovery key

See merge request tpo/core/arti!2856</content>
</entry>
</feed>
