Skip to content

Commit

Permalink
2.53.0
Browse files Browse the repository at this point in the history
  • Loading branch information
orignal committed Jul 17, 2024
1 parent 45221da commit bed5a18
Show file tree
Hide file tree
Showing 5 changed files with 42 additions and 4 deletions.
26 changes: 26 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,6 +1,32 @@
# for this file format description,
# 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
### Added
- Separate threads for persisting RouterInfos and profiles to disk
Expand Down
5 changes: 4 additions & 1 deletion contrib/rpm/i2pd-git.spec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
%define git_hash %(git rev-parse HEAD | cut -c -7)

Name: i2pd-git
Version: 2.52.0
Version: 2.53.0
Release: git%{git_hash}%{?dist}
Summary: I2P router written in C++
Conflicts: i2pd
Expand Down Expand Up @@ -144,6 +144,9 @@ getent passwd i2pd >/dev/null || \


%changelog
* Fri Jul 19 2024 orignal <[email protected]> - 2.53.0
- update to 2.53.0

* Sun May 12 2024 orignal <[email protected]> - 2.52.0
- update to 2.52.0

Expand Down
5 changes: 4 additions & 1 deletion contrib/rpm/i2pd.spec
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Name: i2pd
Version: 2.52.0
Version: 2.53.0
Release: 1%{?dist}
Summary: I2P router written in C++
Conflicts: i2pd-git
Expand Down Expand Up @@ -142,6 +142,9 @@ getent passwd i2pd >/dev/null || \


%changelog
* Fri Jul 19 2024 orignal <[email protected]> - 2.53.0
- update to 2.53.0

* Sun May 12 2024 orignal <[email protected]> - 2.52.0
- update to 2.52.0

Expand Down
6 changes: 6 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
i2pd (2.53.0-1) unstable; urgency=medium

* updated to version 2.53.0/0.9.63

-- orignal <[email protected]> Fri, 19 Jul 2024 16:00:00 +0000

i2pd (2.52.0-1) unstable; urgency=medium

* updated to version 2.52.0
Expand Down
4 changes: 2 additions & 2 deletions libi2pd/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -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 52
#define I2PD_VERSION_MINOR 53
#define I2PD_VERSION_MICRO 0
#define I2PD_VERSION_PATCH 0
#ifdef GITVER
Expand All @@ -33,7 +33,7 @@

#define I2P_VERSION_MAJOR 0
#define I2P_VERSION_MINOR 9
#define I2P_VERSION_MICRO 62
#define I2P_VERSION_MICRO 63
#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)
Expand Down

0 comments on commit bed5a18

Please sign in to comment.