Skip to content

Commit 652beff

Browse files
author
Git for Windows Build Agent
committed
Update 1 package
mingw-w64-clang-aarch64-expat (2.7.0-1 -> 2.7.1-1) Signed-off-by: Git for Windows Build Agent <[email protected]>
1 parent 4a6ff6a commit 652beff

File tree

30 files changed

+58
-20
lines changed

30 files changed

+58
-20
lines changed

clangarm64/bin/libexpat-1.dll

512 Bytes
Binary file not shown.

clangarm64/bin/xmlwf.exe

0 Bytes
Binary file not shown.

clangarm64/include/expat.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1068,7 +1068,7 @@ XML_SetReparseDeferralEnabled(XML_Parser parser, XML_Bool enabled);
10681068
*/
10691069
#define XML_MAJOR_VERSION 2
10701070
#define XML_MINOR_VERSION 7
1071-
#define XML_MICRO_VERSION 0
1071+
#define XML_MICRO_VERSION 1
10721072

10731073
#ifdef __cplusplus
10741074
}

clangarm64/include/expat_config.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@
8383
#define PACKAGE_NAME "expat"
8484

8585
/* Define to the full name and version of this package. */
86-
#define PACKAGE_STRING "expat 2.7.0"
86+
#define PACKAGE_STRING "expat 2.7.1"
8787

8888
/* Define to the one symbol short name of this package. */
8989
#define PACKAGE_TARNAME "expat"
@@ -92,15 +92,15 @@
9292
#define PACKAGE_URL ""
9393

9494
/* Define to the version of this package. */
95-
#define PACKAGE_VERSION "2.7.0"
95+
#define PACKAGE_VERSION "2.7.1"
9696

9797
/* Define to 1 if all of the C90 standard headers exist (not just the ones
9898
required in a freestanding environment). This macro is provided for
9999
backward compatibility; new code need not use it. */
100100
#define STDC_HEADERS 1
101101

102102
/* Version number of package */
103-
#define VERSION "2.7.0"
103+
#define VERSION "2.7.1"
104104

105105
/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
106106
significant byte first (like Motorola and SPARC, unlike Intel). */

clangarm64/lib/cmake/expat-2.7.0/expat-config-version.cmake clangarm64/lib/cmake/expat-2.7.1/expat-config-version.cmake

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,19 @@
99
# The variable CVF_VERSION must be set before calling configure_file().
1010

1111

12-
set(PACKAGE_VERSION "2.7.0")
12+
set(PACKAGE_VERSION "2.7.1")
1313

1414
if(PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION)
1515
set(PACKAGE_VERSION_COMPATIBLE FALSE)
1616
else()
1717

18-
if("2.7.0" MATCHES "^([0-9]+)\\.")
18+
if("2.7.1" MATCHES "^([0-9]+)\\.")
1919
set(CVF_VERSION_MAJOR "${CMAKE_MATCH_1}")
2020
if(NOT CVF_VERSION_MAJOR VERSION_EQUAL 0)
2121
string(REGEX REPLACE "^0+" "" CVF_VERSION_MAJOR "${CVF_VERSION_MAJOR}")
2222
endif()
2323
else()
24-
set(CVF_VERSION_MAJOR "2.7.0")
24+
set(CVF_VERSION_MAJOR "2.7.1")
2525
endif()
2626

2727
if(PACKAGE_FIND_VERSION_RANGE)

clangarm64/lib/libexpat.a

100 Bytes
Binary file not shown.

clangarm64/lib/pkgconfig/expat.pc

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ libdir=${exec_prefix}/lib
44
includedir=${prefix}/include
55

66
Name: expat
7-
Version: 2.7.0
7+
Version: 2.7.1
88
Description: expat XML parser
99
URL: https://libexpat.github.io/
1010
Libs: -L${libdir} -lexpat

clangarm64/share/doc/expat/changelog

+38
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,44 @@
3737
!! THANK YOU! Sebastian Pipping -- Berlin, 2024-03-09 !!
3838
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
3939

40+
Release 2.7.1 Thu March 27 2025
41+
Bug fixes:
42+
#980 #989 Restore event pointer behavior from Expat 2.6.4
43+
(that the fix to CVE-2024-8176 changed in 2.7.0);
44+
affected API functions are:
45+
- XML_GetCurrentByteCount
46+
- XML_GetCurrentByteIndex
47+
- XML_GetCurrentColumnNumber
48+
- XML_GetCurrentLineNumber
49+
- XML_GetInputContext
50+
51+
Other changes:
52+
#976 #977 Autotools: Integrate files "fuzz/xml_lpm_fuzzer.{cpp,proto}"
53+
with Automake that were missing from 2.7.0 release tarballs
54+
#983 #984 Fix printf format specifiers for 32bit Emscripten
55+
#992 docs: Promote OpenSSF Best Practices self-certification
56+
#978 tests/benchmark: Resolve mistaken double close
57+
#986 Address compiler warnings
58+
#990 #993 Version info bumped from 11:1:10 (libexpat*.so.1.10.1)
59+
to 11:2:10 (libexpat*.so.1.10.2); see https://verbump.de/
60+
for what these numbers do
61+
62+
Infrastructure:
63+
#982 CI: Start running Perl XML::Parser integration tests
64+
#987 CI: Enforce Clang Static Analyzer clean code
65+
#991 CI: Re-enable warning clang-analyzer-valist.Uninitialized
66+
for clang-tidy
67+
#981 CI: Cover compilation with musl
68+
#983 #984 CI: Cover compilation with 32bit Emscripten
69+
#976 #977 CI: Protect against fuzzer files missing from future
70+
release archives
71+
72+
Special thanks to:
73+
Berkay Eren Ürün
74+
Matthew Fernandez
75+
and
76+
Perl XML::Parser
77+
4078
Release 2.7.0 Thu March 13 2025
4179
Security fixes:
4280
#893 #973 CVE-2024-8176 -- Fix crash from chaining a large number

clangarm64/share/licenses/expat/COPYING

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Copyright (c) 1998-2000 Thai Open Source Software Center Ltd and Clark Cooper
2-
Copyright (c) 2001-2022 Expat maintainers
2+
Copyright (c) 2001-2025 Expat maintainers
33

44
Permission is hereby granted, free of charge, to any person obtaining
55
a copy of this software and associated documentation files (the

clangarm64/share/man/man1/xmlwf.1.gz

-1 Bytes
Binary file not shown.
Binary file not shown.

var/lib/pacman/local/mingw-w64-clang-aarch64-expat-2.7.0-1/desc var/lib/pacman/local/mingw-w64-clang-aarch64-expat-2.7.1-1/desc

+5-5
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
mingw-w64-clang-aarch64-expat
33

44
%VERSION%
5-
2.7.0-1
5+
2.7.1-1
66

77
%BASE%
88
mingw-w64-expat
@@ -17,16 +17,16 @@ https://libexpat.github.io/
1717
any
1818

1919
%BUILDDATE%
20-
1741942197
20+
1743282794
2121

2222
%INSTALLDATE%
23-
1742009243
23+
1743306020
2424

2525
%PACKAGER%
26-
CI (msys2-arm/msys2-autobuild/e9e823c2/13852969716)
26+
CI (msys2-arm/msys2-autobuild/e9e823c2/14149447497)
2727

2828
%SIZE%
29-
602051
29+
604388
3030

3131
%REASON%
3232
1

var/lib/pacman/local/mingw-w64-clang-aarch64-expat-2.7.0-1/files var/lib/pacman/local/mingw-w64-clang-aarch64-expat-2.7.1-1/files

+5-5
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ clangarm64/include/expat_config.h
99
clangarm64/include/expat_external.h
1010
clangarm64/lib/
1111
clangarm64/lib/cmake/
12-
clangarm64/lib/cmake/expat-2.7.0/
13-
clangarm64/lib/cmake/expat-2.7.0/expat-config-version.cmake
14-
clangarm64/lib/cmake/expat-2.7.0/expat-config.cmake
15-
clangarm64/lib/cmake/expat-2.7.0/expat-noconfig.cmake
16-
clangarm64/lib/cmake/expat-2.7.0/expat.cmake
12+
clangarm64/lib/cmake/expat-2.7.1/
13+
clangarm64/lib/cmake/expat-2.7.1/expat-config-version.cmake
14+
clangarm64/lib/cmake/expat-2.7.1/expat-config.cmake
15+
clangarm64/lib/cmake/expat-2.7.1/expat-noconfig.cmake
16+
clangarm64/lib/cmake/expat-2.7.1/expat.cmake
1717
clangarm64/lib/libexpat.a
1818
clangarm64/lib/libexpat.dll.a
1919
clangarm64/lib/pkgconfig/
Binary file not shown.

var/lib/pacman/local/mingw-w64-clang-aarch64-git-extra-1.1.653.48e2403b3-1/desc

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ any
2020
1741196023
2121

2222
%INSTALLDATE%
23-
1743132978
23+
1743306028
2424

2525
%PACKAGER%
2626
Johannes Schindelin <[email protected]>

var/lib/pacman/sync/clang64.db

-116 Bytes
Binary file not shown.

var/lib/pacman/sync/clang64.db.sig

0 Bytes
Binary file not shown.

var/lib/pacman/sync/clangarm64.db

214 Bytes
Binary file not shown.

var/lib/pacman/sync/clangarm64.db.sig

0 Bytes
Binary file not shown.

var/lib/pacman/sync/mingw32.db

-115 Bytes
Binary file not shown.

var/lib/pacman/sync/mingw32.db.sig

0 Bytes
Binary file not shown.

var/lib/pacman/sync/mingw64.db

-1.31 KB
Binary file not shown.

var/lib/pacman/sync/mingw64.db.sig

0 Bytes
Binary file not shown.

var/lib/pacman/sync/msys.db

0 Bytes
Binary file not shown.

var/lib/pacman/sync/msys.db.sig

0 Bytes
Binary file not shown.

var/lib/pacman/sync/ucrt64.db

-159 Bytes
Binary file not shown.

var/lib/pacman/sync/ucrt64.db.sig

0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)