<feed xmlns='http://www.w3.org/2005/Atom'>
<title>mirrors/arti.git/crates/tor-hsservice, branch arti-v1.2.7</title>
<subtitle>mirror of https://gitlab.torproject.org/tpo/core/arti
</subtitle>
<id>http://git.dilluti0n.com/mirrors/arti.git/atom?h=arti-v1.2.7</id>
<link rel='self' href='http://git.dilluti0n.com/mirrors/arti.git/atom?h=arti-v1.2.7'/>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/'/>
<updated>2024-09-03T17:57:12Z</updated>
<entry>
<title>Bump all the unstable tor- and arti- crates to 0.22.0.</title>
<updated>2024-09-03T17:57:12Z</updated>
<author>
<name>Gabriela Moldovan</name>
<email>gabi@torproject.org</email>
</author>
<published>2024-09-03T17:25:54Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=c3c266707f2fd361a447d922c5acfbb3938d88f2'/>
<id>urn:sha1:c3c266707f2fd361a447d922c5acfbb3938d88f2</id>
<content type='text'>
Done using:

```
for crate in $(./maint/list_crates  | rg '^(tor|arti-)'); do
    cargo set-version -p $crate 0.22.0
done
```
</content>
</entry>
<entry>
<title>oneshot-fused-workaround: Set the initial version to 0.1.0.</title>
<updated>2024-09-03T15:22:43Z</updated>
<author>
<name>Gabriela Moldovan</name>
<email>gabi@torproject.org</email>
</author>
<published>2024-09-03T14:55:25Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=a88af5e93762a8cd95321a3adc31b2bc2ae3bd4d'/>
<id>urn:sha1:a88af5e93762a8cd95321a3adc31b2bc2ae3bd4d</id>
<content type='text'>
This is the first time we're publishing this, so let's start at 0.1.0.
</content>
</entry>
<entry>
<title>Fix formatting issues introduced by fixup-features.</title>
<updated>2024-09-03T10:00:30Z</updated>
<author>
<name>Gabriela Moldovan</name>
<email>gabi@torproject.org</email>
</author>
<published>2024-09-03T09:21:55Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=dfe02110114be3f17e439bf99f776521fd044e15'/>
<id>urn:sha1:dfe02110114be3f17e439bf99f776521fd044e15</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Run fixup-features in preparation for release.</title>
<updated>2024-09-03T10:00:30Z</updated>
<author>
<name>Gabriela Moldovan</name>
<email>gabi@torproject.org</email>
</author>
<published>2024-09-03T09:10:10Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=1eea611d14630c2901962e5cba408f2b7cf456fc'/>
<id>urn:sha1:1eea611d14630c2901962e5cba408f2b7cf456fc</id>
<content type='text'>
</content>
</entry>
<entry>
<title>extract tor_async_utils::oneshot into ::oneshot-fused-workaround</title>
<updated>2024-08-28T14:27:46Z</updated>
<author>
<name>Jim Newsome</name>
<email>jnewsome@torproject.org</email>
</author>
<published>2024-08-22T19:20:36Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=46f7f01092e6ac55e3e958dc3a2228b1d36e26a1'/>
<id>urn:sha1:46f7f01092e6ac55e3e958dc3a2228b1d36e26a1</id>
<content type='text'>
Having this in the `tor-async-utils` crate prevents us from doing both
of the following without introducing a circular dependency:

* using it in `tor-rtmock` (which we currently do, particularly in
  tests).
* using `tor-rtmock` to test things in `tor-async-utils`. We don't do
  this yet, but it is generally sensible to do so. In particular we
  want to move the `stream_peak` module there, which is currently tested
  with `tor-rtmock`.

Moving this into its own crate avoids this circular dependency.
</content>
</entry>
<entry>
<title>tor-hsservice: Recreate the file watcher on every key_dir change event.</title>
<updated>2024-08-27T13:35:30Z</updated>
<author>
<name>Gabriela Moldovan</name>
<email>gabi@torproject.org</email>
</author>
<published>2024-08-27T10:48:02Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=59bd96ddcc073880655bd9ee18c60c85df01ae82'/>
<id>urn:sha1:59bd96ddcc073880655bd9ee18c60c85df01ae82</id>
<content type='text'>
This ensures that if a directory used as a `key_dir` is moved (e.g.
renamed), and then moved back to its original location (the one
specified in `key_dirs`), our watcher continues watching the `key_dirs`
contents.
</content>
</entry>
<entry>
<title>tor-config: Rename watch_file to watch_path.</title>
<updated>2024-08-27T13:35:30Z</updated>
<author>
<name>Gabriela Moldovan</name>
<email>gabi@torproject.org</email>
</author>
<published>2024-08-27T11:30:19Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=5619aa0ed22a2421defa53189564baea24a0bf16'/>
<id>urn:sha1:5619aa0ed22a2421defa53189564baea24a0bf16</id>
<content type='text'>
`FileWatcher::watch_file` can be used with arbitrary paths.
</content>
</entry>
<entry>
<title>tor-hsservice: Make sure we always watch the parents of the key_dirs.</title>
<updated>2024-08-27T13:35:11Z</updated>
<author>
<name>Gabriela Moldovan</name>
<email>gabi@torproject.org</email>
</author>
<published>2024-08-27T11:24:48Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=6de13a8b96892e40041f773b5e937e323a087b2e'/>
<id>urn:sha1:6de13a8b96892e40041f773b5e937e323a087b2e</id>
<content type='text'>
This ensures that if a `key_dir` is created after we start watching it
(or if it's moved), we are still able to detect changes.
</content>
</entry>
<entry>
<title>tor-hsservice: Always recreate the file watcher if the config changes.</title>
<updated>2024-08-27T13:08:38Z</updated>
<author>
<name>Gabriela Moldovan</name>
<email>gabi@torproject.org</email>
</author>
<published>2024-08-22T14:59:35Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=973a1c171475cf1a79e8fa13e2eb80f25914324c'/>
<id>urn:sha1:973a1c171475cf1a79e8fa13e2eb80f25914324c</id>
<content type='text'>
While this means we will be recreating the watcher slightly more often
than necessary, this new approach is less error-prone than what we had
before.
</content>
</entry>
<entry>
<title>Merge branch 'ci' into 'main'</title>
<updated>2024-08-27T11:21:42Z</updated>
<author>
<name>Ian Jackson</name>
<email>iwj@torproject.org</email>
</author>
<published>2024-08-27T11:21:42Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=c030cb301698ebfb001f618ab7b40ee0834b980d'/>
<id>urn:sha1:c030cb301698ebfb001f618ab7b40ee0834b980d</id>
<content type='text'>
Run tests of every crate, with all features disabled

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