File tree Expand file tree Collapse file tree 3 files changed +29
-2
lines changed Expand file tree Collapse file tree 3 files changed +29
-2
lines changed Original file line number Diff line number Diff line change 1
1
NEWS file for libxml2
2
2
3
+ v2.13.4: Sep 18 2024
4
+
5
+ ### Regressions
6
+
7
+ - parser: Make unsupported encodings an error in declarations
8
+ - io: don't set the executable bit when creating files (triallax)
9
+ - xmlcatalog: Improved fix for #699
10
+ - Revert "catalog: Fetch XML catalog before dumping"
11
+ - io: Add missing calls to xmlInitParser
12
+ - tree: Restore return value of xmlNodeListGetString with NULL list
13
+ - parser: Fix error handling after reaching limit
14
+ - parser: Make xmlParseChunk return an error if parser was stopped
15
+
16
+ ### Bug fixes
17
+
18
+ - python: Fix SAX driver with character streams
19
+
20
+ ### Improvements
21
+
22
+ - xpath: Make recursion check work with xmlXPathCompile
23
+ - parser: Report at least one fatal error
24
+
25
+ ### Portability
26
+
27
+ - include: Check whether _MSC_VER is defined
28
+
29
+
3
30
v2.13.3: Jul 24 2024
4
31
5
32
### Security
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ AC_PREREQ([2.63])
3
3
4
4
m4_define ( [ MAJOR_VERSION] , 2 )
5
5
m4_define ( [ MINOR_VERSION] , 13 )
6
- m4_define ( [ MICRO_VERSION] , 3 )
6
+ m4_define ( [ MICRO_VERSION] , 4 )
7
7
8
8
AC_INIT ( [ libxml2] ,[ MAJOR_VERSION.MINOR_VERSION.MICRO_VERSION] )
9
9
AC_CONFIG_SRCDIR ( [ entities.c] )
Original file line number Diff line number Diff line change 1
1
project (
2
2
' libxml2' ,
3
3
' c' ,
4
- version : ' 2.13.3 ' ,
4
+ version : ' 2.13.4 ' ,
5
5
license : ' MIT' ,
6
6
default_options : [' buildtype=debug' , ' warning_level=3' ],
7
7
meson_version : ' >= 0.61' ,
You can’t perform that action at this time.
0 commit comments