This commit is contained in:
orignal
2026-04-20 11:07:02 -04:00
parent c353d71afc
commit 336e41f00f
5 changed files with 49 additions and 4 deletions
+33
View File
@@ -1,6 +1,39 @@
# for this file format description,
# see https://github.com/olivierlacan/keep-a-changelog
## [2.60.0] - 2026-04-20
### Added
- "i2cp.closeIdleTime" and "i2cp.newDestOnResume" client tunnel and proxy params
- Sequence reset flag for UDP tunnels
- Post-quantum SSU2 crypto(ML-KEM-512, ML-KEM-768) support if openssl >= 3.5.0
- Forward ipv4 and ipv6 connections to usptream SOCK5 proxy
- "persist.netdbinterval" param to specify NetDb persist interval
- Don't select peer for new tunnel if too many connections from that subnet
- More I2PControl RouterInfo metrics
### Changed
- Generate ECIESx25519 session tags faster
- Set NTCP2 default crypto type to ML-KEM-768 when applicable
- Set default bandwidth=O for x86_64 and bandwidth=P for x86_64 with more than 4 cores
- Replaced boost::asio::deadline_timer by boost::asio::steady_timer
- Set hidden mode only if trust is enabled
- Publish crypto keys from in high to low order in LeaseSet
- Case-insensitive HTTP header matching per RFC 7230
- Max padding size for NTCP2 SessionRequest and SessionCreated messages
- Routers profiling algorithm
- Don't publish mtu=1500
- Limit streaming receive queue size
- Recreate zero and one hop tunnels after being offline
- Reseeds list
### Fixed
- Incorrect Poly1305 tag of chiper text block in next new session reply message for ML-KEM crypto type
- Stuck UDP client tunnel after network glitch
- Private signing key size for offline signatures
- Forever hanging I2P stream if socket got closed right after connect
- Inverted value of "i2cp.dontPublishLeaseSet"
- Failed to bind to ipv6 ULA address
- Reseed failure if malformed response
- Multiple race conditions
## [2.59.0] - 2026-02-09
### Added
- Post-quantum NTCP2 crypto(ML-KEM-512, ML-KEM-768, ML-KEM-1024) support if openssl >= 3.5.0
+4 -1
View File
@@ -1,7 +1,7 @@
%define git_hash %(git rev-parse HEAD | cut -c -7)
Name: i2pd-git
Version: 2.59.0
Version: 2.60.0
Release: git%{git_hash}%{?dist}
Summary: C++ daemon for accessing the I2P network
Conflicts: i2pd
@@ -139,6 +139,9 @@ getent passwd i2pd >/dev/null || \
%changelog
* Mon Apr 20 2026 orignal <orignal@i2pmail.org> - 2.60.0
- update to 2.60.0
* Mon Feb 09 2026 orignal <orignal@i2pmail.org> - 2.59.0
- update to 2.59.0
+4 -1
View File
@@ -1,5 +1,5 @@
Name: i2pd
Version: 2.59.0
Version: 2.60.0
Release: 1%{?dist}
Summary: C++ daemon for accessing the I2P network
Conflicts: i2pd-git
@@ -137,6 +137,9 @@ getent passwd i2pd >/dev/null || \
%changelog
* Mon Apr 20 2026 orignal <orignal@i2pmail.org> - 2.60.0
- update to 2.60.0
* Mon Feb 09 2026 orignal <orignal@i2pmail.org> - 2.59.0
- update to 2.59.0
+6
View File
@@ -1,3 +1,9 @@
i2pd (2.60.0-1) unstable; urgency=medium
* updated to version 2.60.0/0.9.69
-- orignal <orignal@i2pmail.org> Mon, 20 Apr 2026 16:00:00 +0000
i2pd (2.59.0-1) unstable; urgency=medium
* updated to version 2.59.0/0.9.68
+2 -2
View File
@@ -18,7 +18,7 @@
#define MAKE_VERSION_NUMBER(a,b,c) ((a*100+b)*100+c)
#define I2PD_VERSION_MAJOR 2
#define I2PD_VERSION_MINOR 59
#define I2PD_VERSION_MINOR 60
#define I2PD_VERSION_MICRO 0
#define I2PD_VERSION_PATCH 0
#ifdef GITVER
@@ -33,7 +33,7 @@
#define I2P_VERSION_MAJOR 0
#define I2P_VERSION_MINOR 9
#define I2P_VERSION_MICRO 68
#define I2P_VERSION_MICRO 69
#define I2P_VERSION_PATCH 0
#define I2P_VERSION MAKE_VERSION(I2P_VERSION_MAJOR, I2P_VERSION_MINOR, I2P_VERSION_MICRO)
#define I2P_VERSION_NUMBER MAKE_VERSION_NUMBER(I2P_VERSION_MAJOR, I2P_VERSION_MINOR, I2P_VERSION_MICRO)