2024-11-14 23:22:33 by Thomas Klausner | Files touched by this commit (2429) |
Log message:
*: recursive bump for icu 76 shlib major version bump
|
2024-11-01 13:55:19 by Thomas Klausner | Files touched by this commit (2426) |
Log message:
*: revbump for icu downgrade
|
2024-11-01 01:54:33 by Thomas Klausner | Files touched by this commit (2427) |
Log message:
*: recursive bump for icu 76.1 shlib bump
|
2024-08-08 10:51:09 by Adam Ciarcinski | Files touched by this commit (4) | |
Log message:
libxml2 py-libxml2: updated to 2.12.9
2.12.9: Jul 24 2024
Security
- [CVE-2024-40896] Fix XXE protection in downstream code
Improvements
- Undeprecate xmlKeepBlanksDefault
|
2024-08-07 00:40:14 by Taylor R Campbell | Files touched by this commit (2) |
Log message:
textproc/libxml2: Cite upstream bug report of ctype(3) abuse.
No functional change intended -- patch comment only.
|
2024-08-06 20:48:42 by Taylor R Campbell | Files touched by this commit (4) |
Log message:
textproc/libxml2: Avoid ctype(3) abuse.
|
2024-06-17 20:48:25 by Adam Ciarcinski | Files touched by this commit (5) | |
Log message:
libxml2 py-libxml2: updated to 2.12.8
v2.12.8: Jun 12 2024
Regressions
- parser: Fix performance regression when parsing namespaces
v2.12.7: May 13 2024
Security
- [CVE-2024-34459] Fix buffer overread with `xmllint --htmlout`
Regressions
- xmllint: Fix --pedantic option
- save: Handle invalid parent pointers in xhtmlNodeDumpOutput
v2.12.6: Mar 15 2024
Regressions
- parser: Fix detection of duplicate attributes in XML namespace
- xmlreader: Fix xmlTextReaderConstEncoding
- html: Fix htmlCreatePushParserCtxt with encoding
- xmllint: Return error code if XPath returns empty nodeset
v2.12.5: Feb 4 2024
Security
- [CVE-2024-25062] xmlreader: Don't expand XIncludes when backtracking
Regressions
- parser: Fix crash in xmlParseInNodeContext with HTML documents
|
2024-05-29 18:35:19 by Adam Ciarcinski | Files touched by this commit (1929) | |
Log message:
revbump after icu and protobuf updates
|
2024-01-30 01:12:48 by David H. Gutteridge | Files touched by this commit (1) |
Log message:
libxml2: restrict _POSIX_C_SOURCE to Linux
Fix build breakage with FreeBSD, where some definitions were then hidden
by __BSD_VISIBLE not being defined, e.g.:
CC libxml2_la-nanohttp.lo
nanohttp.c:837:20: error: use of undeclared identifier 'PF_INET6'
s = socket(PF_INET6, SOCK_STREAM, IPPROTO_TCP);
^
nanohttp.c:842:20: error: use of undeclared identifier 'PF_INET'
s = socket(PF_INET, SOCK_STREAM, IPPROTO_TCP);
^
2 errors generated.
(Tested on FreeBSD 14 and Fedora Linux 39.)
|
2024-01-27 22:07:16 by Sijmen J. Mulder | Files touched by this commit (1) |
Log message:
textproc/libxml2: Fix undefined addrinfo on glibc
On Fedora 39 (only with IPv6 enabled):
nanoftp.c: In function 'xmlNanoFTPConnect':
nanoftp.c:798:25: error: storage size of 'hints' isn't known
798 | struct addrinfo hints, *tmp, *result;
| ^~~~~
netdb.h and GNU's getaddrinfo(3) show that it's behind a feature macro:
_POSIX_C_SOURCE >= 200112L
Tested on Fedora 39 and NetBSD 9.
|