mirror of
https://github.com/PurpleI2P/i2pd
synced 2024-11-10 00:00:29 +03:00
2.52.0
This commit is contained in:
parent
a1be1aa9ec
commit
9d38facf3b
25
ChangeLog
25
ChangeLog
@ -1,6 +1,31 @@
|
|||||||
# for this file format description,
|
# for this file format description,
|
||||||
# see https://github.com/olivierlacan/keep-a-changelog
|
# see https://github.com/olivierlacan/keep-a-changelog
|
||||||
|
|
||||||
|
## [2.52.0] - 2024-05-12
|
||||||
|
### Added
|
||||||
|
- Separate threads for persisting RouterInfos and profiles to disk
|
||||||
|
- Give preference to address with direct connection
|
||||||
|
- Exclude addresses with incorrect static or intro key
|
||||||
|
- Avoid two firewalled routers in the row in tunnel
|
||||||
|
- Drop unsolicited database search replies
|
||||||
|
### Changed
|
||||||
|
- Increase number of hashes to 16 in exploratory lookup reply
|
||||||
|
- Reduce number of a RouterInfo lookup attempts to 5
|
||||||
|
- Reset stream RTO if outbound tunnel was changed
|
||||||
|
- Insert previously excluded floodfill back when successfully connected
|
||||||
|
- Increase maximum stream resend attempts to 9
|
||||||
|
- Reply to exploratory lookups with only confirmed routers if low tunnel build rate
|
||||||
|
- Don't accept too old RouterInfo
|
||||||
|
- Build client tunnels through confirmed routers only if low tunnel build rate
|
||||||
|
- Manage netDb requests more frequently
|
||||||
|
- Don't reply with closer than us only floodfills for lookup
|
||||||
|
### Fixed
|
||||||
|
- Crash on router lookup if exploratory pool is not ready
|
||||||
|
- Race condition in excluded peers for next lookup
|
||||||
|
- Excessive number of lookups for same destination
|
||||||
|
- Race condition with transport peers during shutdown
|
||||||
|
- Corrupted RouterInfo files
|
||||||
|
|
||||||
## [2.51.0] - 2024-04-06
|
## [2.51.0] - 2024-04-06
|
||||||
### Added
|
### Added
|
||||||
- Non-blocking mode for UDP sockets
|
- Non-blocking mode for UDP sockets
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
%define git_hash %(git rev-parse HEAD | cut -c -7)
|
%define git_hash %(git rev-parse HEAD | cut -c -7)
|
||||||
|
|
||||||
Name: i2pd-git
|
Name: i2pd-git
|
||||||
Version: 2.51.0
|
Version: 2.52.0
|
||||||
Release: git%{git_hash}%{?dist}
|
Release: git%{git_hash}%{?dist}
|
||||||
Summary: I2P router written in C++
|
Summary: I2P router written in C++
|
||||||
Conflicts: i2pd
|
Conflicts: i2pd
|
||||||
@ -144,6 +144,9 @@ getent passwd i2pd >/dev/null || \
|
|||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Sun May 12 2024 orignal <orignal@i2pmail.org> - 2.52.0
|
||||||
|
- update to 2.52.0
|
||||||
|
|
||||||
* Sat Apr 06 2024 orignal <orignal@i2pmail.org> - 2.51.0
|
* Sat Apr 06 2024 orignal <orignal@i2pmail.org> - 2.51.0
|
||||||
- update to 2.51.0
|
- update to 2.51.0
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
Name: i2pd
|
Name: i2pd
|
||||||
Version: 2.51.0
|
Version: 2.52.0
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: I2P router written in C++
|
Summary: I2P router written in C++
|
||||||
Conflicts: i2pd-git
|
Conflicts: i2pd-git
|
||||||
@ -142,6 +142,9 @@ getent passwd i2pd >/dev/null || \
|
|||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Sun May 12 2024 orignal <orignal@i2pmail.org> - 2.52.0
|
||||||
|
- update to 2.52.0
|
||||||
|
|
||||||
* Sat Apr 06 2024 orignal <orignal@i2pmail.org> - 2.51.0
|
* Sat Apr 06 2024 orignal <orignal@i2pmail.org> - 2.51.0
|
||||||
- update to 2.51.0
|
- update to 2.51.0
|
||||||
|
|
||||||
|
6
debian/changelog
vendored
6
debian/changelog
vendored
@ -1,3 +1,9 @@
|
|||||||
|
i2pd (2.52.0-1) unstable; urgency=medium
|
||||||
|
|
||||||
|
* updated to version 2.52.0
|
||||||
|
|
||||||
|
-- orignal <orignal@i2pmail.org> Sun, 12 May 2024 16:00:00 +0000
|
||||||
|
|
||||||
i2pd (2.51.0-1) unstable; urgency=medium
|
i2pd (2.51.0-1) unstable; urgency=medium
|
||||||
|
|
||||||
* updated to version 2.51.0/0.9.62
|
* updated to version 2.51.0/0.9.62
|
||||||
|
@ -18,7 +18,7 @@
|
|||||||
#define MAKE_VERSION_NUMBER(a,b,c) ((a*100+b)*100+c)
|
#define MAKE_VERSION_NUMBER(a,b,c) ((a*100+b)*100+c)
|
||||||
|
|
||||||
#define I2PD_VERSION_MAJOR 2
|
#define I2PD_VERSION_MAJOR 2
|
||||||
#define I2PD_VERSION_MINOR 51
|
#define I2PD_VERSION_MINOR 52
|
||||||
#define I2PD_VERSION_MICRO 0
|
#define I2PD_VERSION_MICRO 0
|
||||||
#define I2PD_VERSION_PATCH 0
|
#define I2PD_VERSION_PATCH 0
|
||||||
#ifdef GITVER
|
#ifdef GITVER
|
||||||
|
Loading…
Reference in New Issue
Block a user