Skip to content

Commit d23a949

Browse files
committed
Updated libxml to 2.13.5
1 parent 286a59e commit d23a949

22 files changed

+216
-387
lines changed

.ImageMagick/ImageMagick.version.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
#define DELEGATE_VERSION_NUM 2,13,4
2-
#define DELEGATE_VERSION_STRING "2.13.4 (2024-09-18)"
1+
#define DELEGATE_VERSION_NUM 2,13,5
2+
#define DELEGATE_VERSION_STRING "2.13.5 (2024-11-12)"

NEWS

+16
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
NEWS file for libxml2
22

3+
v2.13.5: Nov 12 2024
4+
5+
### Regressions
6+
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)
13+
14+
### Bug fixes
15+
16+
- xpath: Fix parsing of non-ASCII names (Nick Wellnhofer)
17+
18+
319
v2.13.4: Sep 18 2024
420

521
### Regressions

config.h

-22
This file was deleted.

configure.ac

+1-1
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], 4)
6+
m4_define([MICRO_VERSION], 5)
77

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

dict.c

-1
Original file line numberDiff line numberDiff line change
@@ -928,7 +928,6 @@ xmlDictQLookup(xmlDictPtr dict, const xmlChar *prefix, const xmlChar *name) {
928928
#define WIN32_LEAN_AND_MEAN
929929
#include <windows.h>
930930
#include <bcrypt.h>
931-
#pragma comment(lib, "bcrypt.lib")
932931
#elif defined(HAVE_GETENTROPY)
933932
#ifdef HAVE_UNISTD_H
934933
#include <unistd.h>

include/libxml/xmlexports.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*/
1616

1717
#if defined(_WIN32) || defined(__CYGWIN__)
18-
#if defined(LIBXML_STATIC) || defined(_LIB)
18+
#ifdef LIBXML_STATIC
1919
#define XMLPUBLIC
2020
#elif defined(IN_LIBXML)
2121
#define XMLPUBLIC __declspec(dllexport)

0 commit comments

Comments
 (0)