Accepting request 1169685 from home:hillwood:branches:server:proxy
- Update version to 1.18.3 * Support outbound_fwmark in server side to split outbound tunnel * Default build for *-windows-* targets includes sswinservice * local-fakedns: Add a basic implementation of Fake-DNS, which will allocate IPs from pool for DNS queries. This experimental feature could be useful when using local-tun, local-redir or other features that could only receive IP destinations, the domain name that is resolved by the Fake-DNS will be translated from IP back to domain name when connecting to the remote * Add launchd_udp_socket_name, launchd_tcp_socket_name to basic config format * local-tun: Support tun_interface_destination configuration key * Default logging framework changed to tracing-subscriber * local: socks local server will support SOCKS5, SOCKS4a, HTTP proxy protocols when local-http, local-socks4 features are enabled * local: Support setting udp_mtu in configuration file to actively reject packet.size > MTU * Fix bugs - Add fix-boo-1223239.patch, fix CVE-2024-32650 boo#1223239 OBS-URL: https://build.opensuse.org/request/show/1169685 OBS-URL: https://build.opensuse.org/package/show/server:proxy/shadowsocks-rust?expand=0&rev=22
This commit is contained in:
parent
99e0c734ae
commit
84e509704a
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:97a1c8ebf7fd19de94cd6d0dfee398667e1f4e131ec8a37ecb7c3191af7cc75e
|
|
||||||
size 311414
|
|
3
shadowsocks-rust-1.18.3.tar.gz
Normal file
3
shadowsocks-rust-1.18.3.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:0eb817d81e6827e65593c67d4eef6a1136ca84a1c33cf4c97b3a84e98e5a7f60
|
||||||
|
size 444662
|
@ -1,3 +1,25 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Apr 22 14:26:29 UTC 2024 - Hillwood Yang <hillwood@opensuse.org>
|
||||||
|
|
||||||
|
- Update version to 1.18.3
|
||||||
|
* Support outbound_fwmark in server side to split outbound tunnel
|
||||||
|
* Default build for *-windows-* targets includes sswinservice
|
||||||
|
* local-fakedns: Add a basic implementation of Fake-DNS, which will
|
||||||
|
allocate IPs from pool for DNS queries. This experimental feature
|
||||||
|
could be useful when using local-tun, local-redir or other features
|
||||||
|
that could only receive IP destinations, the domain name that is
|
||||||
|
resolved by the Fake-DNS will be translated from IP back to domain
|
||||||
|
name when connecting to the remote
|
||||||
|
* Add launchd_udp_socket_name, launchd_tcp_socket_name to basic config format
|
||||||
|
* local-tun: Support tun_interface_destination configuration key
|
||||||
|
* Default logging framework changed to tracing-subscriber
|
||||||
|
* local: socks local server will support SOCKS5, SOCKS4a, HTTP proxy
|
||||||
|
protocols when local-http, local-socks4 features are enabled
|
||||||
|
* local: Support setting udp_mtu in configuration file to actively reject
|
||||||
|
packet.size > MTU
|
||||||
|
* Fix bugs
|
||||||
|
- Add fix-boo-1223239.patch, fix CVE-2024-32650 boo#1223239
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Dec 13 13:55:57 UTC 2023 - Hillwood Yang <hillwood@opensuse.org>
|
Wed Dec 13 13:55:57 UTC 2023 - Hillwood Yang <hillwood@opensuse.org>
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package shadowsocks-rust
|
# spec file for package shadowsocks-rust
|
||||||
#
|
#
|
||||||
# Copyright (c) 2023 SUSE LLC
|
# Copyright (c) 2024 SUSE LLC
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -17,13 +17,16 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: shadowsocks-rust
|
Name: shadowsocks-rust
|
||||||
Version: 1.17.1
|
Version: 1.18.3
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Rust port of Shadowsocks
|
Summary: Rust port of Shadowsocks
|
||||||
License: MIT
|
License: MIT
|
||||||
Group: Productivity/Networking/Web/Proxy
|
Group: Productivity/Networking/Web/Proxy
|
||||||
URL: https://github.com/shadowsocks/shadowsocks-rust
|
URL: https://github.com/shadowsocks/shadowsocks-rust
|
||||||
Source0: https://github.com/shadowsocks/shadowsocks-rust/archive/v%{version}/%{name}-%{version}.tar.gz
|
Source0: https://github.com/shadowsocks/shadowsocks-rust/archive/v%{version}/%{name}-%{version}.tar.gz
|
||||||
|
# PATCH-FIX-UPSTREAM fix-boo-1223239.patch hillwood@opensuse.org - Fix CVE-2024-32650 boo#1223239
|
||||||
|
# https://github.com/shadowsocks/shadowsocks-rust/pull/1513
|
||||||
|
Patch0: fix-boo-1223239.patch
|
||||||
Source1: vendor.tar.gz
|
Source1: vendor.tar.gz
|
||||||
Source2: %{name}.json
|
Source2: %{name}.json
|
||||||
Source3: %{name}-client.service
|
Source3: %{name}-client.service
|
||||||
@ -45,7 +48,7 @@ shadowsocks is a lightweight secured SOCKS5 proxy for embedded devices and
|
|||||||
low-end boxes.
|
low-end boxes.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -a1 -n %{name}-%{version}
|
%autosetup -p1 -a1 -n %{name}-%{version}
|
||||||
mkdir .cargo
|
mkdir .cargo
|
||||||
cat >>.cargo/config.toml <<EOF
|
cat >>.cargo/config.toml <<EOF
|
||||||
[source.crates-io]
|
[source.crates-io]
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
version https://git-lfs.github.com/spec/v1
|
||||||
oid sha256:11c5b7ad0fedcf2a81c5580d8f1b1f0bc81cc291c3041b84717948eccd2a17a7
|
oid sha256:9fcb5166eb269d62b6c74208bf8e40386ae0cce8f221f8f32190fb42600c897b
|
||||||
size 98663166
|
size 99269719
|
||||||
|
Loading…
Reference in New Issue
Block a user