- Update to version 1.1.10:
OBS-URL: https://build.opensuse.org/package/show/network/arti?expand=0&rev=6
This commit is contained in:
parent
c7dc21ccc4
commit
9682325036
4
_service
4
_service
@ -3,7 +3,7 @@
|
|||||||
<param name="url">https://gitlab.torproject.org/tpo/core/arti.git</param>
|
<param name="url">https://gitlab.torproject.org/tpo/core/arti.git</param>
|
||||||
<param name="versionformat">@PARENT_TAG@~@TAG_OFFSET@</param>
|
<param name="versionformat">@PARENT_TAG@~@TAG_OFFSET@</param>
|
||||||
<param name="scm">git</param>
|
<param name="scm">git</param>
|
||||||
<param name="revision">arti-v1.1.9</param>
|
<param name="revision">arti-v1.1.10</param>
|
||||||
<param name="match-tag">*</param>
|
<param name="match-tag">*</param>
|
||||||
<param name="versionrewrite-pattern">arti-v(\d+\.\d+\.\d+)</param>
|
<param name="versionrewrite-pattern">arti-v(\d+\.\d+\.\d+)</param>
|
||||||
<param name="versionrewrite-replacement">\1</param>
|
<param name="versionrewrite-replacement">\1</param>
|
||||||
@ -13,7 +13,7 @@
|
|||||||
<service name="set_version" mode="manual" />
|
<service name="set_version" mode="manual" />
|
||||||
<service name="cargo_vendor" mode="manual">
|
<service name="cargo_vendor" mode="manual">
|
||||||
<param name="srcdir">arti</param>
|
<param name="srcdir">arti</param>
|
||||||
<param name="compression">zstd</param>
|
<param name="compression">zst</param>
|
||||||
<param name="update">true</param>
|
<param name="update">true</param>
|
||||||
</service>
|
</service>
|
||||||
<service name="cargo_audit" mode="manual">
|
<service name="cargo_audit" mode="manual">
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
<servicedata>
|
<servicedata>
|
||||||
<service name="tar_scm">
|
<service name="tar_scm">
|
||||||
<param name="url">https://gitlab.torproject.org/tpo/core/arti.git</param>
|
<param name="url">https://gitlab.torproject.org/tpo/core/arti.git</param>
|
||||||
<param name="changesrevision">9a7eeb27440d1a55e3b7052d5347be6fc54bedfb</param></service></servicedata>
|
<param name="changesrevision">3d8ac346c6044d9455944aa7a3c10fcc0baf814e</param></service></servicedata>
|
3
arti-1.1.10~0.obscpio
Normal file
3
arti-1.1.10~0.obscpio
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:38da75494a60fa93f21dc1dfb0e524539dd27067382d63babc9538a75902bf52
|
||||||
|
size 59505166
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:c6a41a3865fed98931b7b1444371733c69bcff54871f020638c15c2aa4ee2248
|
|
||||||
size 59273230
|
|
46
arti.changes
46
arti.changes
@ -1,4 +1,50 @@
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
|
Mon Nov 13 17:17:23 UTC 2023 - eyadlorenzo@gmail.com
|
||||||
|
|
||||||
|
- Update to version 1.1.10:
|
||||||
|
|
||||||
|
Arti 1.1.10 continues work on support for onion services in
|
||||||
|
Arti. At last, we can (technically) run as an onion service...
|
||||||
|
though not yet in a useful way. (Onion services don't yet recover
|
||||||
|
correctly after a restart, outdated keys are not removed, and we
|
||||||
|
are missing other important security features.)
|
||||||
|
|
||||||
|
### Breaking changes in lower-level crates
|
||||||
|
|
||||||
|
- The [`IoErrorExt`] trait in [`tor-basic-utils`] is now
|
||||||
|
sealed. ([!1654])
|
||||||
|
- The [`Requestable`] trait in [`tor-dirclient`] is now sealed,
|
||||||
|
and most of its members are now private. ([!1679])
|
||||||
|
- In [`tor-cell`], stream and circuit IDs are now inherently
|
||||||
|
non-zero. To represent an ID that might be zero on the wire, we
|
||||||
|
now use
|
||||||
|
`Option<StreamId>` or `Option<CircId>`. ([#1080], [!1697])
|
||||||
|
- In [`tor-cell`], `CREATE2` handshake types are no longer raw
|
||||||
|
`u16` values. ([!1703])
|
||||||
|
- In [`tor-cert`], `encode_and_sign` now returns an
|
||||||
|
`Ed25519EncodedCert` rather than a raw `Vec<u8>`. ([!1702])
|
||||||
|
|
||||||
|
|
||||||
|
### Client features
|
||||||
|
|
||||||
|
- Arti can now be configured to listen for connections on
|
||||||
|
multiple arbitrary addresses—not just `localhost`. ([!1613])
|
||||||
|
|
||||||
|
### Key manager
|
||||||
|
|
||||||
|
- The key manager code now has improved support for generating
|
||||||
|
keypairs, keys with derived data, and other structures needed for
|
||||||
|
onion services. ([!1653])
|
||||||
|
- The key manager now encodes whether a key is private or public in its
|
||||||
|
file extension. ([!1672])
|
||||||
|
- The key manager now disallows path components that could lead
|
||||||
|
(under some programming errors) to directory traversal. ([!1661])
|
||||||
|
- We can now list keys by path and type; this is important so that
|
||||||
|
we can identify disused keys and eventually expire them. ([!1677])
|
||||||
|
|
||||||
|
See https://gitlab.torproject.org/tpo/core/arti/-/blob/c39857a8a63200ed5ed539d1f9231b05d7da7e0d/CHANGELOG.md
|
||||||
|
for more info
|
||||||
|
-------------------------------------------------------------------
|
||||||
Mon Oct 30 12:37:00 UTC 2023 - Guillaume GARDET <guillaume.gardet@opensuse.org>
|
Mon Oct 30 12:37:00 UTC 2023 - Guillaume GARDET <guillaume.gardet@opensuse.org>
|
||||||
|
|
||||||
- Add _constraints file to avoid build failures
|
- Add _constraints file to avoid build failures
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
name: arti
|
name: arti
|
||||||
version: 1.1.9~0
|
version: 1.1.10~0
|
||||||
mtime: 1696280645
|
mtime: 1698768032
|
||||||
commit: 9a7eeb27440d1a55e3b7052d5347be6fc54bedfb
|
commit: 3d8ac346c6044d9455944aa7a3c10fcc0baf814e
|
||||||
|
@ -18,7 +18,7 @@
|
|||||||
|
|
||||||
Name: arti
|
Name: arti
|
||||||
# This will be set by osc services, that will run after this.
|
# This will be set by osc services, that will run after this.
|
||||||
Version: 1.1.9~0
|
Version: 1.1.10~0
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: An implementation of Tor, in Rust.
|
Summary: An implementation of Tor, in Rust.
|
||||||
# If you know the license, put it's SPDX string here.
|
# If you know the license, put it's SPDX string here.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user