-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Prepared the 0.5.12 release.
- Loading branch information
Showing
4 changed files
with
41 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
Updated core library to 0.5.12, presenting these changes: | ||
|
||
Fixed | ||
A timing regression which causes a higher level of idle protocol traffic on each peering has been fixed | ||
|
||
Fixes in Android app | ||
Some UI fixes and improvements | ||
Updated some dependencies | ||
|
||
Updates from previous versions: | ||
|
||
Changed | ||
The parent selection algorithm now only chooses a new parent if there is a larger cost benefit to doing so, which should help to stabilise the tree | ||
The bloom filters are now repropagated periodically, to avoid nodes getting stuck with bad state | ||
|
||
Fixed | ||
A memory leak caused by missed cleanup of the peer response map has been fixed | ||
Other bug fixes with bloom filter propagation for off-tree filters and zero vs one bits | ||
TLS-based peering connections now support TLS 1.2 again |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
Обновлена основная библиотека до версии 0.5.12, в которой представлены следующие изменения: | ||
|
||
Исправлено | ||
Исправлена регрессия синхронизации, которая приводит к более высокому уровню служебного трафика в простое | ||
|
||
Исправления в приложении Android | ||
Исправления и улучшения пользовательского интерфейса | ||
Обновлены некоторые зависимости | ||
|
||
Обновления с предыдущих версий: | ||
|
||
Изменено | ||
Алгоритм выбора родителя теперь выбирает нового родителя только в том случае, если это дает большую экономическую выгоду, что должно помочь стабилизировать дерево | ||
Фильтры Блума теперь периодически распространяются повторно, чтобы избежать застревания узлов в плохом состоянии | ||
|
||
Исправлено | ||
Утечка памяти, вызванная пропущенной очисткой карты ответов пиров | ||
Другие исправления ошибок с распространением фильтра Блума для фильтров вне дерева | ||
Пиринг с использованием TLS теперь снова поддерживают TLS 1.2 |
Submodule yggdrasil-go
updated
29 files
+4 −4 | .github/workflows/ci.yml | |
+55 −0 | CHANGELOG.md | |
+1 −1 | README.md | |
+16 −2 | cmd/genkeys/main.go | |
+37 −61 | cmd/yggdrasil/chuser_unix.go | |
+80 −0 | cmd/yggdrasil/chuser_unix_test.go | |
+23 −0 | cmd/yggdrasil/main.go | |
+36 −4 | cmd/yggdrasilctl/main.go | |
+4 −3 | contrib/deb/generate.sh | |
+9 −1 | contrib/mobile/mobile.go | |
+13 −12 | go.mod | |
+40 −61 | go.sum | |
+55 −51 | src/admin/admin.go | |
+5 −1 | src/admin/getpeers.go | |
+8 −8 | src/config/config.go | |
+1 −0 | src/config/defaults_darwin.go | |
+4 −0 | src/core/api.go | |
+1 −0 | src/core/core.go | |
+104 −16 | src/core/link.go | |
+19 −12 | src/core/link_quic.go | |
+30 −15 | src/core/link_socks.go | |
+6 −51 | src/core/link_tcp.go | |
+19 −19 | src/core/link_tls.go | |
+29 −8 | src/core/link_ws.go | |
+38 −9 | src/core/link_wss.go | |
+5 −0 | src/core/options.go | |
+32 −5 | src/multicast/admin.go | |
+10 −8 | src/multicast/multicast.go | |
+1 −0 | src/tun/tun.go |