mirror of
https://gitlab.com/gnuwget/wget2.git
synced 2026-01-14 02:01:39 +00:00
Release v2.2.1
This commit is contained in:
21
NEWS
21
NEWS
@ -6,6 +6,27 @@ See the end for copying conditions.
|
||||
|
||||
Please send GNU Wget2 bug reports to <bug-wget@gnu.org>.
|
||||
|
||||
30.12.2025 Release v2.2.1
|
||||
* Fix file overwrite issue with metalink
|
||||
* Fix remote buffer overflow in get_local_filename_real()
|
||||
* Fix a redirect/mirror regression from 400713ca
|
||||
* Use the local system timestamp when requested via --no-use-server-timestamps
|
||||
* Prevent file truncation with --no-clobber
|
||||
* Improve messages about why URLs are not being followed
|
||||
* Fix metalink with -O/--output-document
|
||||
* Fix sorting of metalink mirrors by priority
|
||||
* Add --show-progress to improve backwards compatibility to wget
|
||||
* Fix buffer overflow in wget_iri_clone() after wget_iri_set_scheme()
|
||||
* Allow 'no_' prefix in config options
|
||||
* Use libnghttp2 for HTTP/2 testing
|
||||
* Fix WolfSSL build issue if SSLv2 isn't built into the library
|
||||
* Set exit status to 8 on 403 response code
|
||||
* Fix convert-links
|
||||
* Fix --server-response for HTTP/1.1
|
||||
* Fix anchor links in README.md for Gitlab
|
||||
* Fix html examples in the documentation
|
||||
* Improvements on code, docs and CI/testing
|
||||
|
||||
24.11.2024 Release v2.2.0
|
||||
* Don't truncate file when -c and -O are combined
|
||||
* Don't log URI userinfo to logs
|
||||
|
||||
@ -25,7 +25,7 @@ CFLAGS=$CFLAGS
|
||||
LDFLAGS=$LDFLAGS
|
||||
|
||||
AC_PREREQ([2.69])
|
||||
AC_INIT([wget2],[2.2.0],[bug-wget@gnu.org],[wget2],[https://savannah.gnu.org/projects/wget])
|
||||
AC_INIT([wget2],[2.2.1],[bug-wget@gnu.org],[wget2],[https://savannah.gnu.org/projects/wget])
|
||||
|
||||
AC_CONFIG_MACRO_DIR([m4])
|
||||
AC_CONFIG_AUX_DIR([build-aux])
|
||||
@ -77,8 +77,8 @@ LT_INIT([dlopen])
|
||||
# 4. If any interfaces have been added, removed, or changed since the last update, increment current, and set revision to 0.
|
||||
# 5. If any interfaces have been added since the last public release, then increment age.
|
||||
# 6. If any existing interfaces have been removed or changed since the last public release, then set age to 0.
|
||||
AC_SUBST([LIBWGET_SO_VERSION], [3:0:0])
|
||||
AC_SUBST([LIBWGET_VERSION], [2.2.0])
|
||||
AC_SUBST([LIBWGET_SO_VERSION], [4:0:0])
|
||||
AC_SUBST([LIBWGET_VERSION], [2.2.1])
|
||||
|
||||
#
|
||||
# Generate version defines for include file
|
||||
|
||||
Reference in New Issue
Block a user