Release v2.13.3

This commit is contained in:
Nick Wellnhofer 2024-07-24 15:16:52 +02:00
parent de28e6ed3a
commit 3b1742b839
3 changed files with 22 additions and 2 deletions

20
NEWS
View File

@ -1,5 +1,25 @@
NEWS file for libxml2 NEWS file for libxml2
v2.13.3: Jul 24 2024
### Security
- [CVE-2024-40896] Fix XXE protection in downstream code
### Regressions
- autotools: Use AC_CHECK_DECL to check for getentropy
- xinclude: Fix fallback for text includes
- io: Don't call getcwd in xmlParserGetDirectory
- io: Fix return value of xmlFileRead
- parser: Fix error return of xmlParseBalancedChunkMemory
### Improvements
- xinclude: Set error handler when parsing text
- Undeprecate xmlKeepBlanksDefault
v2.13.2: Jul 4 2024 v2.13.2: Jul 4 2024
### Regressions ### Regressions

View File

@ -3,7 +3,7 @@ AC_PREREQ([2.63])
m4_define([MAJOR_VERSION], 2) m4_define([MAJOR_VERSION], 2)
m4_define([MINOR_VERSION], 13) m4_define([MINOR_VERSION], 13)
m4_define([MICRO_VERSION], 2) m4_define([MICRO_VERSION], 3)
AC_INIT([libxml2],[MAJOR_VERSION.MINOR_VERSION.MICRO_VERSION]) AC_INIT([libxml2],[MAJOR_VERSION.MINOR_VERSION.MICRO_VERSION])
AC_CONFIG_SRCDIR([entities.c]) AC_CONFIG_SRCDIR([entities.c])

View File

@ -1,7 +1,7 @@
project( project(
'libxml2', 'libxml2',
'c', 'c',
version: '2.13.2', version: '2.13.3',
license: 'MIT', license: 'MIT',
default_options: ['buildtype=debug', 'warning_level=3'], default_options: ['buildtype=debug', 'warning_level=3'],
meson_version: '>= 0.61', meson_version: '>= 0.61',