Skip to content

Commit

Permalink
2.52.0
Browse files Browse the repository at this point in the history
  • Loading branch information
orignal committed May 11, 2024
1 parent a1be1aa commit 9d38fac
Show file tree
Hide file tree
Showing 5 changed files with 40 additions and 3 deletions.
25 changes: 25 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,6 +1,31 @@
# for this file format description,
# 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
### Added
- Non-blocking mode for UDP sockets
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.51.0
Version: 2.52.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
* Sun May 12 2024 orignal <[email protected]> - 2.52.0
- update to 2.52.0

* Sat Apr 06 2024 orignal <[email protected]> - 2.51.0
- update to 2.51.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.51.0
Version: 2.52.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
* Sun May 12 2024 orignal <[email protected]> - 2.52.0
- update to 2.52.0

* Sat Apr 06 2024 orignal <[email protected]> - 2.51.0
- update to 2.51.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.52.0-1) unstable; urgency=medium

* updated to version 2.52.0

-- orignal <[email protected]> Sun, 12 May 2024 16:00:00 +0000

i2pd (2.51.0-1) unstable; urgency=medium

* updated to version 2.51.0/0.9.62
Expand Down
2 changes: 1 addition & 1 deletion 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 51
#define I2PD_VERSION_MINOR 52
#define I2PD_VERSION_MICRO 0
#define I2PD_VERSION_PATCH 0
#ifdef GITVER
Expand Down

0 comments on commit 9d38fac

Please sign in to comment.