Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package dnscrypt-proxy for openSUSE:Factory checked in at 2021-08-18 08:56:26 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/dnscrypt-proxy (Old) and /work/SRC/openSUSE:Factory/.dnscrypt-proxy.new.1899 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "dnscrypt-proxy" Wed Aug 18 08:56:26 2021 rev:11 rq:912712 version:2.1.0 Changes: -------- --- /work/SRC/openSUSE:Factory/dnscrypt-proxy/dnscrypt-proxy.changes 2021-02-03 19:56:46.349750439 +0100 +++ /work/SRC/openSUSE:Factory/.dnscrypt-proxy.new.1899/dnscrypt-proxy.changes 2021-08-18 08:57:17.386877699 +0200 @@ -1,0 +2,16 @@ +Sun Aug 15 12:00:00 UTC 2021 - cu...@mail.de - 2.1.0 + +- Update to version 2.1.0 + * "fallback_resolvers" was renamed to "bootstrap_resolvers" + Please update your configuration file accordingly. + * Support for Oblivious DoH. + * If the proxy is overloaded, cached and synthetic queries now + keep being served, while non-cached queries are delayed. + * Source URLs are now randomized. + * Default "reject_ttl" reduced from 600 to 10 + +- Minimum golang version now at 1.16 + +- Find more "legal" files to include. + +------------------------------------------------------------------- Old: ---- dnscrypt-proxy-2.0.45.tar.gz New: ---- dnscrypt-proxy-2.1.0.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ dnscrypt-proxy.spec ++++++ --- /var/tmp/diff_new_pack.T8W8lw/_old 2021-08-18 08:57:18.002876975 +0200 +++ /var/tmp/diff_new_pack.T8W8lw/_new 2021-08-18 08:57:18.006876970 +0200 @@ -25,7 +25,7 @@ %define vlic_dir vendored Name: dnscrypt-proxy -Version: 2.0.45 +Version: 2.1.0 Release: 0 Summary: A tool for securing communications between a client and a DNS resolver License: ISC @@ -49,7 +49,7 @@ BuildRequires: pkgconfig BuildRequires: shadow BuildRequires: systemd-rpm-macros -BuildRequires: golang(API) >= 1.15 +BuildRequires: golang(API) >= 1.16 BuildRequires: pkgconfig(libsystemd) # For systemd pidfile solution. Requires: bash @@ -65,7 +65,8 @@ %description A flexible DNS proxy, with support for modern encrypted DNS protocols -such as DNSCrypt v2, DNS-over-HTTPS and Anonymized DNSCrypt. +such as DNSCrypt v2, DNS-over-HTTPS, Anonymized DNSCrypt +and ODoH (Oblivious DoH). %prep %setup -q -n %{name}-%{version} ++++++ dnscrypt-proxy-2.0.45.tar.gz -> dnscrypt-proxy-2.1.0.tar.gz ++++++ ++++ 470867 lines of diff (skipped) ++++++ example-dnscrypt-proxy.toml.sed ++++++ --- /var/tmp/diff_new_pack.T8W8lw/_old 2021-08-18 08:57:19.026875771 +0200 +++ /var/tmp/diff_new_pack.T8W8lw/_new 2021-08-18 08:57:19.026875771 +0200 @@ -22,10 +22,12 @@ s/ # log_file = 'allowed-names.log'/ # log_file = '\/var\/log\/dnscrypt-proxy\/allowed-names.log'/ s/ # allowed_ips_file = 'allowed-ips.txt'/ # allowed_ips_file = '\/etc\/dnscrypt-proxy\/allowed-ips.txt'/ s/ # log_file = 'allowed-ips.log'/ # log_file = '\/var\/log\/dnscrypt-proxy\/allowed-ips.log'/ -s/ cache_file = 'public-resolvers.md'/ cache_file = '\/var\/lib\/dnscrypt-proxy\/public-resolvers.md'/ -s/ cache_file = 'relays.md'/ cache_file = '\/var\/lib\/dnscrypt-proxy\/relays.md'/ -s/ # cache_file = 'quad9-resolvers.md'/ # cache_file = '\/var\/lib\/dnscrypt-proxy\/quad9-resolvers.md'/ -s/ # cache_file = 'parental-control.md'/ # cache_file = '\/var\/lib\/dnscrypt-proxy\/parental-control.md'/ +s/ cache_file = 'public-resolvers.md'/ cache_file = '\/var\/lib\/dnscrypt-proxy\/public-resolvers.md'/ +s/ cache_file = 'relays.md'/ cache_file = '\/var\/lib\/dnscrypt-proxy\/relays.md'/ +s/ # cache_file = 'odoh-servers.md'/ # cache_file = '\/var\/lib\/dnscrypt-proxy\/odoh-servers.md'/ +s/ # cache_file = 'odoh-relays.md'/ # cache_file = '\/var\/lib\/dnscrypt-proxy\/odoh-relays.md'/ +s/ # cache_file = 'quad9-resolvers.md'/ # cache_file = '\/var\/lib\/dnscrypt-proxy\/quad9-resolvers.md'/ +s/ # cache_file = 'parental-control.md'/ # cache_file = '\/var\/lib\/dnscrypt-proxy\/parental-control.md'/ # package directory instead of source code directory s/## `utils\/generate-domains-blocklists` directory of the dnscrypt-proxy source code./## '\/usr\/share\/dnscrypt-proxy\/generate-domains-blocklists' directory./ ++++++ find_licenses.sh ++++++ --- /var/tmp/diff_new_pack.T8W8lw/_old 2021-08-18 08:57:19.042875752 +0200 +++ /var/tmp/diff_new_pack.T8W8lw/_new 2021-08-18 08:57:19.042875752 +0200 @@ -16,6 +16,7 @@ goahead=0 hash_list=() filename_list=() +legal_file_names="copying copyright legal licence license notice patents unlicense" if [[ -z "$vendor_licenses_dir" ]] then @@ -35,10 +36,11 @@ then echo Searching for licenses ... rm $licenses_file - find ./*/ -iname "license*" | sort > $licenses_file - find ./*/ -iname "copying*" | sort >> $licenses_file - find ./*/ -iname "notice*" | sort >> $licenses_file - find ./*/ -iname "patents*" | sort >> $licenses_file + for item in $legal_file_names + do + echo searching for file names starting with $item + find ./*/ -iname "$item*" | sort >> $licenses_file + done goahead=1 else echo "$vendor_licenses_dir" is not a directory.