summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorDongHun Kwak <dh0128.kwak@samsung.com>2021-03-05 10:08:16 +0900
committerDongHun Kwak <dh0128.kwak@samsung.com>2021-03-05 10:08:16 +0900
commit0fd98397eab07f1ec3b1fad9890fd751298e1fe0 (patch)
tree2e6a21730db1973ea7b81847dbb181ce9c8cd2ce /ChangeLog
parent24d4e855d95e02a5324c2f3d88cfd5cd19830c2c (diff)
downloadwget-0fd98397eab07f1ec3b1fad9890fd751298e1fe0.tar.gz
wget-0fd98397eab07f1ec3b1fad9890fd751298e1fe0.tar.bz2
wget-0fd98397eab07f1ec3b1fad9890fd751298e1fe0.zip
Imported Upstream version 1.17.1upstream/1.17.1
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog170
1 files changed, 170 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index add6e03..452bc63 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,175 @@
+2015-12-11 Giuseppe Scrivano <gscrivan@redhat.com>
+
+ Tag release 1.17.1
+ * NEWS: Update.
+ * gnulib: sync from upstream.
+
+2015-12-11 Tim Rühsen <tim.ruehsen@gmx.de>
+
+ Remove ABOUT-NLS from git
+ * ABOUT-NLS: Remove from repository, it will be autogenerated.
+ * .gitignore: Add ABOUT-NLS and build-aux/ar-lib
+
+2015-12-11 Jernej Simončič <jernej|s-wget@eternallybored.org>
+
+ * src/metalink.c: Specify 'rb' as mode to open file
+
+2015-12-10 Ángel González <keisial@gmail.com>
+
+ * doc/wget.texi: add hint for self-signed certificates
+
+2015-12-10 Ander Juaristi <ajuaristi@gmx.es>
+
+ Fix Coverity issues
+ * src/ftp.c (getftp): on error, close the file and attempt to remove it
+ before exiting.
+ * src/hsts.c (hsts_store_open): update modification time in the end.
+
+2015-12-10 Darshit Shah <darnir@gmail.com>
+
+ Faster Travis Builds
+ * contrib/travis-ci: Test under different languages only when all the
+ features are enabled. This covers the maximum number of strings. For the
+ other option permutations, test only in the default C locale
+
+ Fix remaining bugs in progress bar implementation
+ * src/progress.c (create_image): Ensure that the entire screen width is
+ drawn everytime to prevent any artefacts from leaking through.
+
+2015-12-09 Darshit Shah <darnir@gmail.com>
+
+ Add bug-wget to list of travis recipients
+ * .travis.yml: Add bug-wget to list of Travis Report Recipients
+
+ Eliminate more compiler warnings
+ * src/options.h (CHECK_CERT_MODES): Remove C99 style comma after last
+ value
+ * src/progress.c (create_image): Do not mix statements and declarations
+ * src/init.c (cmd_boolean_internal): Mark unused parameters
+
+ Re-enable test on multibyte locale in Travis
+ * .travis.yml: Use Russian locale instead of Japanese since it seems to
+ be more complete
+ * contrib/travis-ci: Re-enable testing on a Russian locale
+
+ Fix progress bar assertion with multibyte locales
+ * src/progress.c (bar_create): Define size of progress buffer explicitly
+ (create_image): Clean up progress bar image creation. Use memset
+ instead of for loops to create arrays of the same byte.
+
+2015-12-06 Darshit Shah <darnir@gmail.com>
+
+ Introduce Travis Integration
+ * .travis.yml: Configuration file for Travis-CI
+ * contrib/travis-ci: Script to run on travis. Similar to check-hard but modified
+ for travis.
+ * tests/valgrind-suppressions{-ssl}: Add extra suppressions to prevent a
+ Valgrind False Positive errors in an old version
+
+ Since Travis currently supports only public repositories on GitHub, the support
+ for automated testing through Travis will be done using my Clone of Wget on
+ GitHub at: https://github.com/darnir/wget.git
+ Any commits pushed to this repository will trigger a build on Travis.
+
+2015-12-04 Tim Rühsen <tim.ruehsen@gmx.de>
+
+ SKIP SSL/TLS tests if configured without it
+ * testenv/Makefile.am: Set SSL_TESTS env variable
+ * testenv/Test--https-crl.py, testenv/Test--https.py,
+ testenv/Test-hsts.py: Return 77 (SKIP) if SSL/TLS is not configured
+
+2015-12-03 Tim Rühsen <tim.ruehsen@gmx.de>
+
+ Add Test-hsts.py to SSL_TESTS
+ * testenv/Makefile.am: Add Test-hsts.py to SSL_TESTS
+
+2015-12-03 Ygal Blum <ygal.blum@technicolor.com>
+
+ Fix compilation when without-ssl is selected
+
+2015-12-03 Darshit Shah <darnir@gmail.com>
+
+ Include Metalink and GPG information in version
+ * src/build_info.c.in: Include the presence of Metalink and GPGME features in
+ the output for wget --version
+
+2015-12-03 Giuseppe Scrivano <gscrivan@redhat.com>
+
+ Add --check-certificate=quiet
+ * doc/wget.texi: Add documentation for --check-certificate=quiet.
+ * src/options.h (enum CHECK_CERT_MODES): New enum.
+ * src/init.c (cmd_check_cert): New static function.
+ (cmd_boolean_internal): Likewise.
+ * src/gnutls.c (ssl_check_certificate): Handle CHECK_CERT_QUIET.
+ * src/openssl.c (ssl_check_certificate): Handle CHECK_CERT_QUIET.
+
+2015-11-24 Tim Rühsen <tim.ruehsen@gmx.de>
+
+ Fix regression in HTTP authentication
+ * src/http.c (initialize_request): Fix wrong params to search_netrc()
+
+ Regression introduced in commit 29850e77
+ Reported-by: Axel Reinhold <axel@freakout.de>
+
+2015-11-23 Tim Rühsen <tim.ruehsen@gmx.de>
+
+ Fix SIGSEGV in -N / --content-disposition combination
+ * src/http.c (http_loop): Fix SIGSEGV
+
+ Reported-by: "Schleusener, Jens" <Jens.Schleusener@t-online.de>
+
+2015-11-20 Ander Juaristi <ajuaristi@gmx.es>
+
+ Fix potential NULL pointer dereference
+ * src/gnutls.c (ssl_connect_wget): check for NULL before calls
+
+2015-11-20 Giuseppe Scrivano <gscrivan@redhat.com>
+
+ * configure.ac: change gettext version to 0.18.1
+
+2015-11-19 Ikey Doherty <michael.i.doherty@intel.com>
+
+ configure.ac: Use correct gettext version
+
+2015-11-19 Tim Rühsen <tim.ruehsen@openmediasystem.de>
+
+ Fix HSTS memory issue + test code issue
+ * src/hsts.c (hsts_find_entry): Fix freeing memory
+ (hsts_remove_entry): Remove freeing host member
+ (hsts_match): Free host member here
+ (hsts_store_entry): Free host member here
+ (test_url_rewrite): Fix 'created' value
+ (test_hsts_read_database): Fix 'created' value
+
+ Reported-by: Dagobert Michelsen <dam@opencsw.org>
+
+2015-11-17 Tim Rühsen <tim.ruehsen@gmx.de>
+
+ Include errno.h instead of sys/errno.h (Solaris issue)
+ * src/metalink.c: Include errno.h instead of sys/errno.h
+
+ Reported-by: Dagobert Michelsen <dam@opencsw.org>
+
+2015-11-17 Darshit Shah <darnir@gmail.com>
+
+ Fix compile error when IPv6 is disabled
+ * src/ftp-basic.c: The code for the new FTPS functionality was unintentionally
+ inside a #ifdef IPV6 block. Move the code around so that it is defined even when
+ IPV6 isn't used
+
+ Use gnulib module flock to provide function
+ * bootstrap.conf: Use module flock from gnulib to provide it on other platforms
+ such as Windows.
+
+2015-11-16 Darshit Shah <darnir@gmail.com>
+
+ Eliminate NDEBUG redefined warnings
+ * src/wget.h: Define NDEBUG only if it hasn't been defined before
+
2015-11-15 Giuseppe Scrivano <gscrivan@redhat.com>
+ NEWS: prepare new release cycle
+
Prepare release 1.17
* gnulib: sync with upstream.
* NEWS: Update.