This is an automated email from the git hooks/post-receive script.
dgoulet pushed a change to branch release-0.4.5 in repository tor.
from 2e0db5c4ad Merge branch 'maint-0.4.5' into release-0.4.5 add 9cde32ffeb Revert "version: Bump version to 0.4.5.13-dev" new 48d5ad1acc version: Bump version to 0.4.5.13-dev new bb88086c72 geoip: Update geoip files with August 9th, 2022 database new a562292130 Merge branch 'maint-0.4.5' into release-0.4.5 new 7b2c67cccd release: ChangeLog and ReleaseNotes for 0.4.5.14 new ecb194b9da version: Bump version to 0.4.5.14 new 2608d24fd5 Merge branch 'maint-0.4.5' into release-0.4.5
The 6 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference.
Summary of changes: ChangeLog | 13 + ReleaseNotes | 13 + changes/geoip-2022-08-12 | 5 + configure.ac | 4 +- contrib/win32build/tor-mingw.nsi.in | 2 +- src/config/geoip | 46473 +++++++++++----------------------- src/config/geoip6 | 15581 ++++++------ src/win32/orconfig.h | 2 +- 8 files changed, 22652 insertions(+), 39441 deletions(-) create mode 100644 changes/geoip-2022-08-12
This is an automated email from the git hooks/post-receive script.
dgoulet pushed a commit to branch release-0.4.5 in repository tor.
commit 48d5ad1acc35934e9b0af2c6f4d0694c9815e939 Author: Tor CI Release no-email@torproject.org AuthorDate: Thu Aug 11 14:37:39 2022 +0000
version: Bump version to 0.4.5.13-dev --- configure.ac | 4 ++-- contrib/win32build/tor-mingw.nsi.in | 2 +- src/win32/orconfig.h | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/configure.ac b/configure.ac index e4cdb3430d..8e4cb80ae7 100644 --- a/configure.ac +++ b/configure.ac @@ -4,7 +4,7 @@ dnl Copyright (c) 2007-2019, The Tor Project, Inc. dnl See LICENSE for licensing information
AC_PREREQ([2.63]) -AC_INIT([tor],[0.4.5.13]) +AC_INIT([tor],[0.4.5.13-dev]) AC_CONFIG_SRCDIR([src/app/main/tor_main.c]) AC_CONFIG_MACRO_DIR([m4])
@@ -16,7 +16,7 @@ configure_flags="$*" # version number changes. Tor uses it to make sure that it # only shuts down for missing "required protocols" when those protocols # are listed as required by a consensus after this date. -AC_DEFINE(APPROX_RELEASE_DATE, ["2022-08-11"], # for 0.4.5.13 +AC_DEFINE(APPROX_RELEASE_DATE, ["2022-08-11"], # for 0.4.5.13-dev [Approximate date when this software was released. (Updated when the version changes.)])
# "foreign" means we don't follow GNU package layout standards diff --git a/contrib/win32build/tor-mingw.nsi.in b/contrib/win32build/tor-mingw.nsi.in index a7c10c9c25..a795ad05af 100644 --- a/contrib/win32build/tor-mingw.nsi.in +++ b/contrib/win32build/tor-mingw.nsi.in @@ -8,7 +8,7 @@ !include "LogicLib.nsh" !include "FileFunc.nsh" !insertmacro GetParameters -!define VERSION "0.4.5.13" +!define VERSION "0.4.5.13-dev" !define INSTALLER "tor-${VERSION}-win32.exe" !define WEBSITE "https://www.torproject.org/" !define LICENSE "LICENSE" diff --git a/src/win32/orconfig.h b/src/win32/orconfig.h index 6b54dba237..4de9237f5c 100644 --- a/src/win32/orconfig.h +++ b/src/win32/orconfig.h @@ -217,7 +217,7 @@ #define USING_TWOS_COMPLEMENT
/* Version number of package */ -#define VERSION "0.4.5.13" +#define VERSION "0.4.5.13-dev"
#define HAVE_STRUCT_SOCKADDR_IN6 #define HAVE_STRUCT_IN6_ADDR
This is an automated email from the git hooks/post-receive script.
dgoulet pushed a commit to branch release-0.4.5 in repository tor.
commit a5622921304dc45ffaceee1b1ecae5efffac4a79 Merge: 48d5ad1acc bb88086c72 Author: David Goulet dgoulet@torproject.org AuthorDate: Fri Aug 12 09:56:53 2022 -0400
Merge branch 'maint-0.4.5' into release-0.4.5
changes/geoip-2022-08-12 | 5 + src/config/geoip | 46473 ++++++++++++++------------------------------- src/config/geoip6 | 15581 ++++++++------- 3 files changed, 22622 insertions(+), 39437 deletions(-)
This is an automated email from the git hooks/post-receive script.
dgoulet pushed a commit to branch release-0.4.5 in repository tor.
commit 7b2c67cccd396860427edf1c09c177e76d92857c Author: David Goulet dgoulet@torproject.org AuthorDate: Fri Aug 12 10:11:56 2022 -0400
release: ChangeLog and ReleaseNotes for 0.4.5.14
Signed-off-by: David Goulet dgoulet@torproject.org --- ChangeLog | 13 +++++++++++++ ReleaseNotes | 13 +++++++++++++ 2 files changed, 26 insertions(+)
diff --git a/ChangeLog b/ChangeLog index c6ab563bcf..c120861a0c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,16 @@ +Changes in version 0.4.5.14 - 2022-08-12 + This version updates the geoip cache that we generate from IPFire location + database to use the August 9th, 2022 one. Everyone MUST update to this + latest release else circuit path selection and relay metrics are badly + affected. + + o Major bugfixes (geoip data): + - IPFire informed us on August 12th that databases generated after + (including) August 10th did not have proper ARIN network allocations. We + are updating the database to use the one generated on August 9th, 2022. + Fixes bug 40658; bugfix on 0.4.5.13. + + Changes in version 0.4.5.13 - 2022-08-11 This version contains two major fixes aimed at reducing memory pressure on relays and possible side-channel. The rest of the fixes were backported for diff --git a/ReleaseNotes b/ReleaseNotes index d3cee9341c..1b9d64cbc2 100644 --- a/ReleaseNotes +++ b/ReleaseNotes @@ -2,6 +2,19 @@ This document summarizes new features and bugfixes in each stable release of Tor. If you want to see more detailed descriptions of the changes in each development snapshot, see the ChangeLog file.
+Changes in version 0.4.5.14 - 2022-08-12 + This version updates the geoip cache that we generate from IPFire location + database to use the August 9th, 2022 one. Everyone MUST update to this + latest release else circuit path selection and relay metrics are badly + affected. + + o Major bugfixes (geoip data): + - IPFire informed us on August 12th that databases generated after + (including) August 10th did not have proper ARIN network allocations. We + are updating the database to use the one generated on August 9th, 2022. + Fixes bug 40658; bugfix on 0.4.5.13. + + Changes in version 0.4.5.13 - 2022-08-11 This version contains two major fixes aimed at reducing memory pressure on relays and possible side-channel. The rest of the fixes were backported for
This is an automated email from the git hooks/post-receive script.
dgoulet pushed a commit to branch release-0.4.5 in repository tor.
commit 2608d24fd556d4b5a3bd7c9d9b47c5f442a86a3e Merge: 7b2c67cccd ecb194b9da Author: David Goulet dgoulet@torproject.org AuthorDate: Fri Aug 12 10:12:23 2022 -0400
Merge branch 'maint-0.4.5' into release-0.4.5
configure.ac | 4 ++-- contrib/win32build/tor-mingw.nsi.in | 2 +- src/win32/orconfig.h | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-)
tor-commits@lists.torproject.org