Release v2.12.10

This commit is contained in:
Nick Wellnhofer 2025-02-18 16:43:30 +01:00
parent 858ca26c06
commit 02d577715e
3 changed files with 35 additions and 1 deletions

View File

@ -1,3 +1,9 @@
include:
- component: "gitlab.gnome.org/GNOME/citemplates/release-service@master"
inputs:
dist-job-name: "dist"
tarball-artifact-path: "libxml2-dist/libxml2-2.12.10.tar.xz"
.test:
image: registry.gitlab.gnome.org/gnome/libxml2
variables:

28
NEWS
View File

@ -1,5 +1,33 @@
NEWS file for libxml2
v2.12.10: Feb 18 2025
### Security
- [CVE-2025-24928] Fix stack-buffer-overflow in xmlSnprintfElements
- [CVE-2024-56171] Fix use-after-free after xmlSchemaItemListAdd
- pattern: Fix compilation of explicit child axis
### Regressions
- parser: Fix detection of duplicate attributes
### Bug fixes
- xpath: Fix parsing of non-ASCII names
### Portability
- python: Declare init func with PyMODINIT_FUNC
- tests: Fix sanitizer version check on old Apple clang
### Build
- autotools: Set AC_CONFIG_AUX_DIR
- cmake: Always build Python module as shared library
- cmake: Fix compatibility in package version file
v2.12.9: Jul 24 2024
### Security

View File

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