Skip to content

Commit 01f77d0

Browse files
author
Git for Windows Build Agent
committed
Update 7 packages
curl (8.14.0-1 -> 8.14.1-1) libcurl (8.14.0-1 -> 8.14.1-1) libsqlite (3.49.2-1 -> 3.50.0-1) mingw-w64-i686-curl-openssl-alternate (8.14.0-1 -> 8.14.1-1) mingw-w64-i686-curl-winssl (8.14.0-1 -> 8.14.1-1) mingw-w64-x86_64-curl-openssl-alternate (8.14.0-1 -> 8.14.1-1) mingw-w64-x86_64-curl-winssl (8.14.0-1 -> 8.14.1-1) Signed-off-by: Git for Windows Build Agent <[email protected]>
1 parent a288137 commit 01f77d0

File tree

1,596 files changed

+71
-71
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,596 files changed

+71
-71
lines changed

mingw32/bin/curl-config

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ while test "$#" -gt 0; do
9595
;;
9696

9797
--version)
98-
echo 'libcurl 8.14.0'
98+
echo 'libcurl 8.14.1'
9999
exit 0
100100
;;
101101

@@ -107,11 +107,11 @@ while test "$#" -gt 0; do
107107
# dash as that's used for things like version 1.2.3-pre1
108108
cpatch=`echo "$checkfor" | cut -d. -f3 | cut -d- -f1`
109109

110-
vmajor=`echo '8.14.0' | cut -d. -f1`
111-
vminor=`echo '8.14.0' | cut -d. -f2`
110+
vmajor=`echo '8.14.1' | cut -d. -f1`
111+
vminor=`echo '8.14.1' | cut -d. -f2`
112112
# when extracting the patch part we strip off everything after a
113113
# dash as that's used for things like version 1.2.3-pre1
114-
vpatch=`echo '8.14.0' | cut -d. -f3 | cut -d- -f1`
114+
vpatch=`echo '8.14.1' | cut -d. -f3 | cut -d- -f1`
115115

116116
if test "$vmajor" -gt "$cmajor"; then
117117
exit 0
@@ -127,12 +127,12 @@ while test "$#" -gt 0; do
127127
fi
128128
fi
129129

130-
echo "requested version $checkfor is newer than existing 8.14.0"
130+
echo "requested version $checkfor is newer than existing 8.14.1"
131131
exit 1
132132
;;
133133

134134
--vernum)
135-
echo '080e00'
135+
echo '080e01'
136136
exit 0
137137
;;
138138

mingw32/bin/curl.exe

1.5 KB
Binary file not shown.

mingw32/bin/libcurl-4.dll

1 KB
Binary file not shown.

mingw32/bin/libcurl-openssl-4.dll

1 KB
Binary file not shown.

mingw32/include/curl/curl.h

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2813,17 +2813,17 @@ struct curl_slist {
28132813
* *before* curl_global_init().
28142814
*
28152815
* The backend can be identified by the id (e.g. CURLSSLBACKEND_OPENSSL). The
2816-
* backend can also be specified via the name parameter (passing -1 as id).
2817-
* If both id and name are specified, the name will be ignored. If neither id
2818-
* nor name are specified, the function will fail with
2819-
* CURLSSLSET_UNKNOWN_BACKEND and set the "avail" pointer to the
2820-
* NULL-terminated list of available backends.
2816+
* backend can also be specified via the name parameter (passing -1 as id). If
2817+
* both id and name are specified, the name will be ignored. If neither id nor
2818+
* name are specified, the function will fail with CURLSSLSET_UNKNOWN_BACKEND
2819+
* and set the "avail" pointer to the NULL-terminated list of available
2820+
* backends.
28212821
*
28222822
* Upon success, the function returns CURLSSLSET_OK.
28232823
*
28242824
* If the specified SSL backend is not available, the function returns
2825-
* CURLSSLSET_UNKNOWN_BACKEND and sets the "avail" pointer to a NULL-terminated
2826-
* list of available SSL backends.
2825+
* CURLSSLSET_UNKNOWN_BACKEND and sets the "avail" pointer to a
2826+
* NULL-terminated list of available SSL backends.
28272827
*
28282828
* The SSL backend can be set only once. If it has already been set, a
28292829
* subsequent attempt to change it will result in a CURLSSLSET_TOO_LATE.

mingw32/include/curl/curlver.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,13 @@
3232

3333
/* This is the version number of the libcurl package from which this header
3434
file origins: */
35-
#define LIBCURL_VERSION "8.14.0"
35+
#define LIBCURL_VERSION "8.14.1"
3636

3737
/* The numeric version number is also available "in parts" by using these
3838
defines: */
3939
#define LIBCURL_VERSION_MAJOR 8
4040
#define LIBCURL_VERSION_MINOR 14
41-
#define LIBCURL_VERSION_PATCH 0
41+
#define LIBCURL_VERSION_PATCH 1
4242

4343
/* This is the numeric version of the libcurl version number, meant for easier
4444
parsing and comparisons by programs. The LIBCURL_VERSION_NUM define will
@@ -59,7 +59,7 @@
5959
CURL_VERSION_BITS() macro since curl's own configure script greps for it
6060
and needs it to contain the full number.
6161
*/
62-
#define LIBCURL_VERSION_NUM 0x080e00
62+
#define LIBCURL_VERSION_NUM 0x080e01
6363

6464
/*
6565
* This is the date and time when the full source package was created. The
@@ -70,7 +70,7 @@
7070
*
7171
* "2007-11-23"
7272
*/
73-
#define LIBCURL_TIMESTAMP "2025-05-28"
73+
#define LIBCURL_TIMESTAMP "2025-06-04"
7474

7575
#define CURL_VERSION_BITS(x,y,z) ((x)<<16|(y)<<8|(z))
7676
#define CURL_AT_LEAST_VERSION(x,y,z) \

mingw32/include/curl/typecheck-gcc.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@
178178
_curl_easy_getinfo_err_curl_slist(); \
179179
if(curlcheck_tlssessioninfo_info(info)) \
180180
if(!curlcheck_arr((arg), struct curl_tlssessioninfo *)) \
181-
_curl_easy_getinfo_err_curl_tlssesssioninfo(); \
181+
_curl_easy_getinfo_err_curl_tlssessioninfo(); \
182182
if(curlcheck_certinfo_info(info)) \
183183
if(!curlcheck_arr((arg), struct curl_certinfo *)) \
184184
_curl_easy_getinfo_err_curl_certinfo(); \
@@ -295,7 +295,7 @@ CURLWARNING(_curl_easy_getinfo_err_double,
295295
"curl_easy_getinfo expects a pointer to double")
296296
CURLWARNING(_curl_easy_getinfo_err_curl_slist,
297297
"curl_easy_getinfo expects a pointer to 'struct curl_slist *'")
298-
CURLWARNING(_curl_easy_getinfo_err_curl_tlssesssioninfo,
298+
CURLWARNING(_curl_easy_getinfo_err_curl_tlssessioninfo,
299299
"curl_easy_getinfo expects a pointer to "
300300
"'struct curl_tlssessioninfo *'")
301301
CURLWARNING(_curl_easy_getinfo_err_curl_certinfo,

mingw32/lib/pkgconfig/libcurl.pc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ supported_features="alt-svc AsynchDNS brotli HSTS HTTPS-proxy IDN IPv6 Kerberos
3232
Name: libcurl
3333
URL: https://curl.se/
3434
Description: Library to transfer files with HTTP, FTP, etc.
35-
Version: 8.14.0
35+
Version: 8.14.1
3636
Requires:
3737
Requires.private: libidn2,zlib,libbrotlidec,libbrotlicommon,libzstd,libpsl,libssh2
3838
Libs: -L${libdir} -lcurl
0 Bytes
Binary file not shown.

mingw32/share/man/man1/curl.1.gz

197 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)