From: Daiki Ueno Date: Tue, 18 Nov 2025 00:05:29 +0000 (+0900) Subject: Release 3.8.11 X-Git-Tag: 3.8.11~1^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=bf9a42d3bd25bab48b68f0edac5165ca8a034f02;p=thirdparty%2Fgnutls.git Release 3.8.11 Signed-off-by: Daiki Ueno --- diff --git a/NEWS b/NEWS index d6df70ee65..de18888af1 100644 --- a/NEWS +++ b/NEWS @@ -5,7 +5,7 @@ Copyright (C) 2000-2016 Free Software Foundation, Inc. Copyright (C) 2013-2019 Nikos Mavrogiannopoulos See the end for copying conditions. -* Version 3.8.11 (unreleased) +* Version 3.8.11 (released 2025-11-18) ** libgnutls: Fix stack overwrite in gnutls_pkcs11_token_init Reported by Luigino Camastra from Aisle Research. [GNUTLS-SA-2025-11-18, @@ -43,6 +43,11 @@ See the end for copying conditions. security relevant fixes, the library's minimum requirement of Nettle is updated to 3.10. +** build: The default priority file path is now constructed from sysconfdir + Previously, the location of the default priority file was + hard-coded to be /etc/gnutls/config. Now it takes into account of + the --sysconfdir option given to the configure script. + ** API and ABI modifications: gnutls_psk_allocate_client_credentials2: New function gnutls_psk_allocate_server_credentials2: New function diff --git a/configure.ac b/configure.ac index 5cee87dd36..4650d541fa 100644 --- a/configure.ac +++ b/configure.ac @@ -21,7 +21,7 @@ dnl Process this file with autoconf to produce a configure script. AC_PREREQ([2.71]) dnl when updating version also update LT_REVISION in m4/hooks.m4 -AC_INIT([GnuTLS],[3.8.10],[bugs@gnutls.org]) +AC_INIT([GnuTLS],[3.8.11],[bugs@gnutls.org]) AC_CONFIG_AUX_DIR([build-aux]) AC_CONFIG_MACRO_DIRS([m4 src/gl/m4 lib/unistring/m4]) AC_CANONICAL_HOST diff --git a/m4/hooks.m4 b/m4/hooks.m4 index f52113553c..f58c8a4364 100644 --- a/m4/hooks.m4 +++ b/m4/hooks.m4 @@ -40,9 +40,9 @@ AC_DEFUN([LIBGNUTLS_HOOKS], # in CONTRIBUTION.md for more info. # # Interfaces removed: AGE=0 (+bump all symbol versions in .map) - AC_SUBST(LT_CURRENT, 70) - AC_SUBST(LT_REVISION, 4) - AC_SUBST(LT_AGE, 40) + AC_SUBST(LT_CURRENT, 71) + AC_SUBST(LT_REVISION, 0) + AC_SUBST(LT_AGE, 41) AC_SUBST(LT_SSL_CURRENT, 27) AC_SUBST(LT_SSL_REVISION, 2)