Skip to content

Commit 6645324

Browse files
committed
Release 2.13.6
1 parent 055b382 commit 6645324

File tree

4 files changed

+46
-9
lines changed

4 files changed

+46
-9
lines changed

.gitlab-ci.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
include:
2+
- component: "gitlab.gnome.org/GNOME/citemplates/release-service@master"
3+
inputs:
4+
dist-job-name: "dist"
5+
tarball-artifact-path: "libxml2-dist/libxml2-2.13.6.tar.xz"
6+
17
.test:
28
image: registry.gitlab.gnome.org/gnome/libxml2
39
variables:

NEWS

Lines changed: 38 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,50 @@
11
NEWS file for libxml2
22

3+
v2.13.6: Feb 18 2025
4+
5+
### Security
6+
7+
- [CVE-2025-24928] Fix stack-buffer-overflow in xmlSnprintfElements
8+
- [CVE-2024-56171] Fix use-after-free after xmlSchemaItemListAdd
9+
- pattern: Fix compilation of explicit child axis
10+
11+
### Regressions
12+
13+
- xmllint: Support compressed input from stdin
14+
- uri: Fix handling of Windows drive letters
15+
- reader: Fix return value of xmlTextReaderReadString again
16+
- SAX2: Fix xmlSAX2ResolveEntity if systemId is NULL
17+
18+
### Portability
19+
20+
- dict: Handle ENOSYS from getentropy gracefully
21+
- Fix compilation with uclibc (Dario Binacchi)
22+
- python: Declare init func with PyMODINIT_FUNC
23+
- tests: Fix sanitizer version check on old Apple clang
24+
- cmake: Work around broken sys/random.h in old macOS SDKs
25+
26+
### Build
27+
28+
- autotools: Set AC_CONFIG_AUX_DIR
29+
- cmake: Always build Python module as shared library
30+
- cmake: add missing `Bcrypt` link on Windows (Saleem Abdulrasool)
31+
- cmake: Fix compatibility in package version file
32+
33+
334
v2.13.5: Nov 12 2024
435

536
### Regressions
637

7-
- xmlIO: Fix reading from non-regular files like pipes (Nick Wellnhofer)
8-
- xmlreader: Fix return value of xmlTextReaderReadString (Nick Wellnhofer)
9-
- parser: Fix loading of parameter entities in external DTDs (Nick Wellnhofer)
10-
- parser: Fix downstream code that swaps DTDs (Nick Wellnhofer)
11-
- parser: Fix detection of duplicate attributes (Nick Wellnhofer)
12-
- string: Fix va_copy fallback (Nick Wellnhofer)
38+
- xmlIO: Fix reading from non-regular files like pipes
39+
- xmlreader: Fix return value of xmlTextReaderReadString
40+
- parser: Fix loading of parameter entities in external DTDs
41+
- parser: Fix downstream code that swaps DTDs
42+
- parser: Fix detection of duplicate attributes
43+
- string: Fix va_copy fallback
1344

1445
### Bug fixes
1546

16-
- xpath: Fix parsing of non-ASCII names (Nick Wellnhofer)
47+
- xpath: Fix parsing of non-ASCII names
1748

1849

1950
v2.13.4: Sep 18 2024

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ AC_PREREQ([2.63])
33

44
m4_define([MAJOR_VERSION], 2)
55
m4_define([MINOR_VERSION], 13)
6-
m4_define([MICRO_VERSION], 5)
6+
m4_define([MICRO_VERSION], 6)
77

88
AC_INIT([libxml2],[MAJOR_VERSION.MINOR_VERSION.MICRO_VERSION])
99
AC_CONFIG_SRCDIR([entities.c])

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
project(
22
'libxml2',
33
'c',
4-
version: '2.13.5',
4+
version: '2.13.6',
55
license: 'MIT',
66
default_options: ['buildtype=debug', 'warning_level=3'],
77
meson_version: '>= 0.61',

0 commit comments

Comments
 (0)