commit 6e43206ba1f7047dff8fa8b7ac90fb02f096ca7b
parent e34baa3f1a05bdd811f7caa3c71946c5593a8382
Author: Christian Grothoff <christian@grothoff.org>
Date: Tue, 28 Jul 2026 12:40:05 +0200
version bumping, this time correctly
Diffstat:
4 files changed, 17 insertions(+), 3 deletions(-)
diff --git a/ChangeLog b/ChangeLog
@@ -1,3 +1,9 @@
+Tue Jul 28 06:12:03 PM CEST 2026
+ Fixing additional vulnerabilities inspired by reviewing the
+ code for similar issues like the ones reported by A. Ramos;
+ expand the test suite to cover these and other issues.
+ Releasing GNU libmicrohttpd 1.0.8. -CG
+
Mon Jul 27 06:12:03 PM CEST 2026
Fixing various vulnerabilities reported by A. Ramos resulting
in possible crashes or out-of-bounds stack writes for certain
diff --git a/NEWS b/NEWS
@@ -1,3 +1,11 @@
+Tue Jul 28 06:13:26 PM CEST 2026
+Released GNU libmicrohttpd 1.0.8.
+
+ This is a bugfix release, fixing minor security vulnerabilities
+ and expanding the test suite.
+
+ -- Christian Grothoff
+
Mon Jul 27 06:13:26 PM CEST 2026
Released GNU libmicrohttpd 1.0.7.
diff --git a/configure.ac b/configure.ac
@@ -23,7 +23,7 @@
#
AC_PREREQ([2.64])
LT_PREREQ([2.4.0])
-AC_INIT([GNU libmicrohttpd],[1.0.7],[libmicrohttpd@gnu.org])
+AC_INIT([GNU libmicrohttpd],[1.0.8],[libmicrohttpd@gnu.org])
AC_CONFIG_AUX_DIR([build-aux])
MHD_AUX_DIR='build-aux' # Must be set to the same value as in the previous line
AC_CONFIG_HEADERS([MHD_config.h])
@@ -31,7 +31,7 @@ AC_CONFIG_MACRO_DIR([m4])
m4_pattern_forbid([^_?MHD_[A-Z_]+_CC_])dnl
LIB_VERSION_CURRENT=74
-LIB_VERSION_REVISION=5
+LIB_VERSION_REVISION=6
LIB_VERSION_AGE=62
AC_SUBST([LIB_VERSION_CURRENT])
AC_SUBST([LIB_VERSION_REVISION])
diff --git a/src/include/microhttpd.h b/src/include/microhttpd.h
@@ -101,7 +101,7 @@ MHD_C_DECLRATIONS_START_HERE_
* they are parsed as decimal numbers.
* Example: 0x01093001 = 1.9.30-1.
*/
-#define MHD_VERSION 0x01000600
+#define MHD_VERSION 0x01000800
/* If generic headers don't work on your platform, include headers
which define 'va_list', 'size_t', 'ssize_t', 'intptr_t', 'off_t',