diff options
-rwxr-xr-x | configure | 2 | ||||
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | debian/changelog | 8 | ||||
-rwxr-xr-x | debian/rules | 3 | ||||
-rw-r--r-- | history.txt | 6 | ||||
-rw-r--r-- | src/htsglobal.h | 2 |
6 files changed, 17 insertions, 6 deletions
@@ -2891,7 +2891,7 @@ fi # Define the identity of the package. PACKAGE=httrack - VERSION=3.47.10 + VERSION=3.47.11 cat >>confdefs.h <<_ACEOF diff --git a/configure.ac b/configure.ac index 15bbb40..0e11c91 100644 --- a/configure.ac +++ b/configure.ac @@ -1,7 +1,7 @@ AC_INIT(src/httrack.c) AC_CONFIG_MACRO_DIR([m4]) AC_CONFIG_HEADERS(config.h) -AM_INIT_AUTOMAKE(httrack, 3.47.10) +AM_INIT_AUTOMAKE(httrack, 3.47.11) VERSION_INFO="2:47:0" AM_MAINTAINER_MODE diff --git a/debian/changelog b/debian/changelog index f9afcc4..d084fe4 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +httrack (3.47.11-1) unstable; urgency=low + + * Updated to 3.47.11 (3.47-11) + closes:#706755 + closes:#706757 + + -- Xavier Roche <xavier@debian.org> Sat, 04 May 2013 13:09:32 +0200 + httrack (3.47.10-1) unstable; urgency=low * Updated to 3.47.10 (3.47-10) diff --git a/debian/rules b/debian/rules index 8464541..fef17d9 100755 --- a/debian/rules +++ b/debian/rules @@ -121,7 +121,8 @@ binary-arch: build install dh_fixperms -a dh_makeshlibs -a -X/usr/lib/httrack/libtest dh_installdeb -a - dh_shlibdeps -a -ldebian/libhttrack2/usr/lib + # we depend on the current version (ABI may change) + dh_shlibdeps -a -ldebian/libhttrack2/usr/lib --version-info dh_gencontrol -a dh_md5sums -a dh_builddeb -a diff --git a/history.txt b/history.txt index ae91d12..6c21fdc 100644 --- a/history.txt +++ b/history.txt @@ -4,7 +4,7 @@ HTTrack Website Copier release history: This file lists all changes and fixes that have been made for HTTrack. -3.47-7 +3.47-11 + Fixed: random closing of files/sockets, leading to "zip_zipWriteInFileInZip_failed" assertion, "bogus state" messages, or random garbage in downloaded files + Fixed: libssl.dylib is now in the search list for libssl on OSX (Nils Breunese) + Fixed: bogus charset because the meta http-equiv tag is placed too far in the html page @@ -17,6 +17,8 @@ This file lists all changes and fixes that have been made for HTTrack. + Fixed: memory leak in hashtable, that may lead to excessive memory consumption + Fixed: on Windows, fixed possible DLL local injection (CVE-2010-5252) + Fixed: UTF-8 conversion bug on Linux that may lead to buggy filenames ++ Fixed: zero-length files not being properly handled (not saved on disk, not updated) (lugusto) ++ Fixed: serious bug that may lead to download several times the same file, and "Unexpected 412/416 error" errors 3.46-1 * New: Unicode filenames handling @@ -124,7 +126,7 @@ This file lists all changes and fixes that have been made for HTTrack. + Fixed: minor argument size validation error for "-O" option (Joan CALVET) 3.42-3 -+ Fixed: Bad URL length validation in the commandline (Joan CALVET) ++ Fixed: Bad URL length validation in the commandline (CVE-2008-3429) (Joan CALVET) 3.42-2 + Fixed: Random crashes at the end of the mirror due to a dangling file pointer (Carlos, angus at quovadis.com.ar) diff --git a/src/htsglobal.h b/src/htsglobal.h index 79b79b1..6512f42 100644 --- a/src/htsglobal.h +++ b/src/htsglobal.h @@ -41,7 +41,7 @@ Please visit our Website: http://www.httrack.com // Version (also check external version information) #define HTTRACK_VERSION "3.47" -#define HTTRACK_VERSIONID "3.47.10" +#define HTTRACK_VERSIONID "3.47.11" #define HTTRACK_AFF_VERSION "3.x" #define HTTRACK_LIB_VERSION "2.0" |