mirror of
https://github.com/PurpleI2P/i2pd
synced 2024-11-10 00:00:29 +03:00
2.53.0
This commit is contained in:
parent
45221da1dc
commit
bed5a18294
26
ChangeLog
26
ChangeLog
@ -1,6 +1,32 @@
|
|||||||
# 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.53.0] - 2024-07-19
|
||||||
|
### Added
|
||||||
|
- New congestion control algorithm for streaming
|
||||||
|
- Support miniupnp-2.2.8
|
||||||
|
- Limit stream's outbound speed
|
||||||
|
- Flood to next day closest floodfills before UTC midnight
|
||||||
|
- Recognize duplicated routers and bypass them
|
||||||
|
- Random SSU2 resend interval
|
||||||
|
### Changed
|
||||||
|
- Set minimal version to 0.9.69 for floodfills and 0.9.58 for client tunnels
|
||||||
|
- Removed openssl 1.0.2 support
|
||||||
|
- Move unsent I2NP messages to the new session if replaced
|
||||||
|
- Use mt19937 RNG instead rand()
|
||||||
|
- Update router's congestion caps before initial publishing
|
||||||
|
- Don't try introducer with invalid address
|
||||||
|
- Select newest introducers to publish
|
||||||
|
- Don't request relay tag for every session if we have enough introducers
|
||||||
|
- Update timestamp for non-reachable or hidden router
|
||||||
|
- Reset streaming routing path if duplicated SYN received
|
||||||
|
- Update LeaseSet if inbound tunnel failed
|
||||||
|
- Reseeds list
|
||||||
|
### Fixed
|
||||||
|
- Crash when a destination gets terminated
|
||||||
|
- Expired offline signature upon destination creation
|
||||||
|
- Race condition between local RouterInfo buffer creation and sending it through the transports
|
||||||
|
|
||||||
## [2.52.0] - 2024-05-12
|
## [2.52.0] - 2024-05-12
|
||||||
### Added
|
### Added
|
||||||
- Separate threads for persisting RouterInfos and profiles to disk
|
- Separate threads for persisting RouterInfos and profiles to disk
|
||||||
|
@ -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.52.0
|
Version: 2.53.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
|
||||||
|
* Fri Jul 19 2024 orignal <orignal@i2pmail.org> - 2.53.0
|
||||||
|
- update to 2.53.0
|
||||||
|
|
||||||
* Sun May 12 2024 orignal <orignal@i2pmail.org> - 2.52.0
|
* Sun May 12 2024 orignal <orignal@i2pmail.org> - 2.52.0
|
||||||
- update to 2.52.0
|
- update to 2.52.0
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
Name: i2pd
|
Name: i2pd
|
||||||
Version: 2.52.0
|
Version: 2.53.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
|
||||||
|
* Fri Jul 19 2024 orignal <orignal@i2pmail.org> - 2.53.0
|
||||||
|
- update to 2.53.0
|
||||||
|
|
||||||
* Sun May 12 2024 orignal <orignal@i2pmail.org> - 2.52.0
|
* Sun May 12 2024 orignal <orignal@i2pmail.org> - 2.52.0
|
||||||
- update to 2.52.0
|
- update to 2.52.0
|
||||||
|
|
||||||
|
6
debian/changelog
vendored
6
debian/changelog
vendored
@ -1,3 +1,9 @@
|
|||||||
|
i2pd (2.53.0-1) unstable; urgency=medium
|
||||||
|
|
||||||
|
* updated to version 2.53.0/0.9.63
|
||||||
|
|
||||||
|
-- orignal <orignal@i2pmail.org> Fri, 19 Jul 2024 16:00:00 +0000
|
||||||
|
|
||||||
i2pd (2.52.0-1) unstable; urgency=medium
|
i2pd (2.52.0-1) unstable; urgency=medium
|
||||||
|
|
||||||
* updated to version 2.52.0
|
* updated to version 2.52.0
|
||||||
|
@ -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 52
|
#define I2PD_VERSION_MINOR 53
|
||||||
#define I2PD_VERSION_MICRO 0
|
#define I2PD_VERSION_MICRO 0
|
||||||
#define I2PD_VERSION_PATCH 0
|
#define I2PD_VERSION_PATCH 0
|
||||||
#ifdef GITVER
|
#ifdef GITVER
|
||||||
@ -33,7 +33,7 @@
|
|||||||
|
|
||||||
#define I2P_VERSION_MAJOR 0
|
#define I2P_VERSION_MAJOR 0
|
||||||
#define I2P_VERSION_MINOR 9
|
#define I2P_VERSION_MINOR 9
|
||||||
#define I2P_VERSION_MICRO 62
|
#define I2P_VERSION_MICRO 63
|
||||||
#define I2P_VERSION_PATCH 0
|
#define I2P_VERSION_PATCH 0
|
||||||
#define I2P_VERSION MAKE_VERSION(I2P_VERSION_MAJOR, I2P_VERSION_MINOR, I2P_VERSION_MICRO)
|
#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)
|
#define I2P_VERSION_NUMBER MAKE_VERSION_NUMBER(I2P_VERSION_MAJOR, I2P_VERSION_MINOR, I2P_VERSION_MICRO)
|
||||||
|
Loading…
Reference in New Issue
Block a user