<feed xmlns='http://www.w3.org/2005/Atom'>
<title>mirrors/arti.git/crates/tor-proto/semver.md, branch arti-v1.2.4</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.4</id>
<link rel='self' href='http://git.dilluti0n.com/mirrors/arti.git/atom?h=arti-v1.2.4'/>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/'/>
<updated>2024-05-16T16:24:12Z</updated>
<entry>
<title>Make Channel non-Clone.</title>
<updated>2024-05-16T16:24:12Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2024-05-16T16:03:48Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=ca8d87d6cbeb76833930ae433e18310799e348a9'/>
<id>urn:sha1:ca8d87d6cbeb76833930ae433e18310799e348a9</id>
<content type='text'>
</content>
</entry>
<entry>
<title>proto: Make Channel explicitly Arc&lt;.&gt;</title>
<updated>2024-05-16T16:24:12Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2024-05-16T15:51:41Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=822ff7b1ba21ed59b697aab45fd0b00f88479cef'/>
<id>urn:sha1:822ff7b1ba21ed59b697aab45fd0b00f88479cef</id>
<content type='text'>
Previously, Channel was a type that you could Clone that implicitly
its state.  Now, Channel always appears as an Arc&lt;Channel&gt;.

This change has several benefits:

  * It makes the relationship between Channel struct and the
    underlying channel more clear.
  * It enables Channel to participate in the RPC system,
    where everything has to be an Arc&lt;.&gt;
  * It enables us to have a Weak&lt;Channel&gt;, if we ever want to.
  * It will let us move various members out of ChannelDetails.

We did this change a while ago with ClientCirc.
</content>
</entry>
<entry>
<title>proto: Move Channel send functionality into a separate type.</title>
<updated>2024-05-16T16:24:12Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2024-05-16T15:28:10Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=dc67de47bd716945dbf8114633e5cb6daafb17a3'/>
<id>urn:sha1:dc67de47bd716945dbf8114633e5cb6daafb17a3</id>
<content type='text'>
This serves three purposes:

  * It removes the 'send a cell' method from the channel's public
    API.  Nothing outside of tor-proto should have to use this.
  * It paves the way for giving each circuit a separate handle onto
    the channel's send functionality.  This will eventually let
    the channel multiplex among circuits more intelligently.
  * It prepares for the next commit, which will make Channel itself
    universally Arc&lt;.&gt;ed.
</content>
</entry>
<entry>
<title>Remove semver.md files from arti 1.2.0 release.</title>
<updated>2024-03-04T18:53:50Z</updated>
<author>
<name>Gabriela Moldovan</name>
<email>gabi@torproject.org</email>
</author>
<published>2024-03-04T18:53:50Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=81a330b63ef5e7f3a975965356050a97cc33673a'/>
<id>urn:sha1:81a330b63ef5e7f3a975965356050a97cc33673a</id>
<content type='text'>
</content>
</entry>
<entry>
<title>tor-proto: Note the addition of PendingClientCirc::peek_unique_id in semver.md.</title>
<updated>2024-02-28T13:39:53Z</updated>
<author>
<name>Gabriela Moldovan</name>
<email>gabi@torproject.org</email>
</author>
<published>2024-02-28T13:39:53Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=56124e26c28eca17f373afc5624ab91b3a7dac36'/>
<id>urn:sha1:56124e26c28eca17f373afc5624ab91b3a7dac36</id>
<content type='text'>
</content>
</entry>
<entry>
<title>tor-circmgr: Add a helper for displaying optional UniqIds.</title>
<updated>2024-02-27T16:57:25Z</updated>
<author>
<name>Gabriela Moldovan</name>
<email>gabi@torproject.org</email>
</author>
<published>2024-02-27T15:06:48Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=62923a6758be629b684d67237f7d7207abad33f0'/>
<id>urn:sha1:62923a6758be629b684d67237f7d7207abad33f0</id>
<content type='text'>
Some of the `tor_circmgr::Error` variants will include the `UniqId` of the
corresponding circuit, so we'll need to be able to display it without the
`Circ ` prefix.

Part of #1297
</content>
</entry>
<entry>
<title>Remove semver.md files.</title>
<updated>2023-12-04T17:39:07Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2023-12-04T17:39:07Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=0dc447123f2250d5d1fb5af0a268d59d018c9b64'/>
<id>urn:sha1:0dc447123f2250d5d1fb5af0a268d59d018c9b64</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Add `ClientCirc::extend_ntor_v3`</title>
<updated>2023-11-27T16:48:04Z</updated>
<author>
<name>Jim Newsome</name>
<email>jnewsome@torproject.org</email>
</author>
<published>2023-11-15T21:12:41Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=6149409574b57e919d9fc76cf0c0aa9a33d447ac'/>
<id>urn:sha1:6149409574b57e919d9fc76cf0c0aa9a33d447ac</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Add PendingClientCirc::create_firsthop_ntor_v3</title>
<updated>2023-11-27T16:48:04Z</updated>
<author>
<name>Jim Newsome</name>
<email>jnewsome@torproject.org</email>
</author>
<published>2023-10-30T22:14:54Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=00094c759a06bbf7cc7243339cf6b7b70c4ad867'/>
<id>urn:sha1:00094c759a06bbf7cc7243339cf6b7b70c4ad867</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Send less information in onion service BEGIN messages</title>
<updated>2023-11-15T18:21:11Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2023-11-15T18:19:47Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=23492cc2423f2ab0611a390cfa2ad49a3bd81d6d'/>
<id>urn:sha1:23492cc2423f2ab0611a390cfa2ad49a3bd81d6d</id>
<content type='text'>
While looking for differences, we found that C tor always
omits the flags and the hostname from a BEGIN message sent on an
onion service circuit.  In torspec!179, we specified that behavior.
This patch brings arti into conformance.

Closes #1077.
</content>
</entry>
</feed>
