<feed xmlns='http://www.w3.org/2005/Atom'>
<title>mirrors/arti.git/crates/tor-keymgr, 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-keymgr: keystore::arti::ssh: Fix typo; simplify comments.</title>
<updated>2025-03-27T11:44:24Z</updated>
<author>
<name>playbahn</name>
<email>plabanroy69@gmail.com</email>
</author>
<published>2025-03-27T11:44:24Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=34c6bf5a81e5432ff397667ad848011cda0371a2'/>
<id>urn:sha1:34c6bf5a81e5432ff397667ad848011cda0371a2</id>
<content type='text'>
Closes #1455
</content>
</entry>
<entry>
<title>tor-keymgr: keystore::arti: Rework tests: ssh-keygen interop</title>
<updated>2025-03-26T18:08:11Z</updated>
<author>
<name>playbahn</name>
<email>plabanroy69@gmail.com</email>
</author>
<published>2025-03-26T18:05:47Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=7429bcb3811db293639bb951f875750cac655861'/>
<id>urn:sha1:7429bcb3811db293639bb951f875750cac655861</id>
<content type='text'>
Closes #1455 [PATCH 4(v3)/4]
</content>
</entry>
<entry>
<title>tor-keymgr: keystore::arti::ssh: Rework tests: ssh-keygen interop</title>
<updated>2025-03-26T18:08:11Z</updated>
<author>
<name>playbahn</name>
<email>plabanroy69@gmail.com</email>
</author>
<published>2025-03-26T18:03:56Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=bf6123604e584d6d2308eb352f20ac92d985136c'/>
<id>urn:sha1:bf6123604e584d6d2308eb352f20ac92d985136c</id>
<content type='text'>
Part of #1455 [PATCH 3(v3)/4]
</content>
</entry>
<entry>
<title>tor-keymgr: test_utils: TestSpecifier::path_prefix: Drop method</title>
<updated>2025-03-26T18:08:11Z</updated>
<author>
<name>playbahn</name>
<email>plabanroy69@gmail.com</email>
</author>
<published>2025-03-26T17:44:57Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=fbfeede629f1b1d326befc77e9cabc8575e86db5'/>
<id>urn:sha1:fbfeede629f1b1d326befc77e9cabc8575e86db5</id>
<content type='text'>
Part of #1455
</content>
</entry>
<entry>
<title>tor-keymgr: Fix clippy errors</title>
<updated>2025-03-26T18:08:11Z</updated>
<author>
<name>playbahn</name>
<email>plabanroy69@gmail.com</email>
</author>
<published>2025-03-22T16:31:27Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=e155cde05e568dceaf36d070bcd7a5489d7fe707'/>
<id>urn:sha1:e155cde05e568dceaf36d070bcd7a5489d7fe707</id>
<content type='text'>
</content>
</entry>
<entry>
<title>tor-keymgr: dep ssh-key feat: -alloc</title>
<updated>2025-03-26T18:08:11Z</updated>
<author>
<name>playbahn</name>
<email>plabanroy69@gmail.com</email>
</author>
<published>2025-03-22T15:44:49Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=2acc49f90473cfbf076f84374576535cd344e6b3'/>
<id>urn:sha1:2acc49f90473cfbf076f84374576535cd344e6b3</id>
<content type='text'>
</content>
</entry>
<entry>
<title>tor-keymgr: test_utils: Fix unresolved import</title>
<updated>2025-03-26T18:08:11Z</updated>
<author>
<name>playbahn</name>
<email>plabanroy69@gmail.com</email>
</author>
<published>2025-03-22T15:38:36Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=bc93e70eae97268f9fc9ca9f6577cba5e537a23e'/>
<id>urn:sha1:bc93e70eae97268f9fc9ca9f6577cba5e537a23e</id>
<content type='text'>
</content>
</entry>
<entry>
<title>tor-keymgr: keystore::arti::tests: More intuitive assert_eq!</title>
<updated>2025-03-26T18:08:11Z</updated>
<author>
<name>playbahn</name>
<email>plabanroy69@gmail.com</email>
</author>
<published>2025-03-22T15:36:28Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=7c38b3187a64d9eab6d4555eb7f8b6a0c09852cf'/>
<id>urn:sha1:7c38b3187a64d9eab6d4555eb7f8b6a0c09852cf</id>
<content type='text'>
</content>
</entry>
</feed>
