From b9a2e8ee965daffe2bc618f58b21f0ddebadeb23 Mon Sep 17 00:00:00 2001 From: Vasil Dimov Date: Wed, 11 Jun 2025 11:07:47 +0200 Subject: [PATCH] doc: add release notes for https://github.com/bitcoin/bitcoin/pull/32425 Co-authored-by: Jan B <608446+janb84@users.noreply.github.com> --- doc/release-notes-32425.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 doc/release-notes-32425.md diff --git a/doc/release-notes-32425.md b/doc/release-notes-32425.md new file mode 100644 index 00000000000..c57653bf67f --- /dev/null +++ b/doc/release-notes-32425.md @@ -0,0 +1,14 @@ +Updated settings +---------------- + +- Previously, `-proxy` specified the proxy for all networks (except I2P which + uses `-i2psam`) and only the Tor proxy could have been specified separately + via `-onion`. Now, the syntax of `-proxy` has been extended and it is possible + to specify separately the proxy for IPv4, IPv6, Tor and CJDNS by appending `=` + followed by the network name, for example `-proxy=127.0.0.1:5555=ipv6` + configures a proxy only for IPv6. The `-proxy` option can be used multiple + times to define different proxies for different networks, such as + `-proxy=127.0.0.1:4444=ipv4 -proxy=10.0.0.1:6666=ipv6`. Later settings + override earlier ones for the same network; this can be used to remove an + earlier all-networks proxy and use direct connections only for a given + network, for example `-proxy=127.0.0.1:5555 -proxy=0=cjdns`. (#32425)