]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
RELEASE-NOTES: synced
authorDaniel Stenberg <daniel@haxx.se>
Thu, 13 Jan 2022 21:21:16 +0000 (22:21 +0100)
committerDaniel Stenberg <daniel@haxx.se>
Thu, 13 Jan 2022 21:21:16 +0000 (22:21 +0100)
bump next release to become 7.82.0

RELEASE-NOTES
include/curl/curlver.h

index c4057d1a73694a11c49cc290b00da2589de576e7..5182c5540a8c6d161b680bce4703793a850088cf 100644 (file)
@@ -1,35 +1,50 @@
-curl and libcurl 7.81.1
+curl and libcurl 7.82.0
 
  Public curl releases:         206
  Command line options:         244
  curl_easy_setopt() options:   295
  Public functions in libcurl:  86
- Contributors:                 2563
+ Contributors:                 2565
 
 This release includes the following changes:
 
- o
+ o mesalink: remove support [23]
 
 This release includes the following bugfixes:
 
+ o appveyor: update images from VS 2019 to 2022
+ o appveyor: use VS 2017 image for the autotools builds
+ o build: enable -Warith-conversion
+ o build: fix -Wenum-conversion handling
  o CI: move the rustls CI job to GHA from Zuul [8]
  o cmake: fix iOS CMake project generation error [13]
+ o curl tool: erase some more sensitive command line arguments [22]
  o curl-functions.m4: fix LIBRARY_PATH adjustment to avoid eval [5]
+ o curl-functions.m4: revert DYLD_LIBRARY_PATH tricks in CURL_RUN_IFELSE [9]
+ o curl_multi_socket.3: remove callback and typical usage descriptions [7]
  o curl_url_set.3: mention when CURLU_ALLOW_SPACE was added
+ o CURLOPT_RESOLVE.3: change example port to 443
+ o docs/cmdline-opts: add "mutexed" options for more http versions [25]
  o docs: fix mandoc -T lint formatting complaints [2]
  o examples/multi-app.c: call curl_multi_remove_handle as well [19]
  o gen.pl: terminate "example" sections better [4]
+ o ldap: return CURLE_URL_MALFORMAT for bad URL [24]
  o mbedtls: Fix ssl_init error with mbedTLS 3.1.0+ [12]
+ o mbedtls: return CURLcode result instead of a mbedtls error code [1]
  o next.d. remove .fi/.nf as they are handled by gen.pl [3]
  o ngtcp2: fix declaration of ‘result’ shadows a previous local [14]
+ o openldap: implement SASL authentication [16]
  o openssl.h: avoid including OpenSSL headers here [15]
  o openssl: check the return value of BIO_new_mem_buf() [18]
  o remote-header-name.d: clarify [10]
  o runtests.pl: properly print the test if it contains binary zeros
+ o runtests.pl: support the nonewline attribute for the data part [21]
  o runtests: allow client/file to specify multiple directories
  o runtests: make 'rustls' a testable feature
  o runtests: make 'wolfssl' a testable feature [6]
+ o rustls: add CURLOPT_CAINFO_BLOB support [26]
  o scripts/copyright.pl: support many provided file names on the cmdline
+ o test374: gif data without new line at the end [20]
  o tool_findfile: check ~/.config/curlrc too [17]
  o url: given a user in the URL, find pwd for that user in netrc [11]
 
@@ -40,25 +55,38 @@ This release includes the following known bugs:
 This release would not have looked like this without help, code, reports and
 advice from friends like these:
 
-  Daniel Stenberg, Fabian Keil, Filip Lundgren, Jan Ehrhardt, Manfred Schwarb,
-  Melroy van den Berg, Niels Martignène, Ryan Schmidt, Sandro Jaeckel,
-  Satadru Pramanik, Viktor Szakats, Xiaoke Wang,
-  (12 contributors)
+  Cameron Will, Daniel Stenberg, Fabian Keil, Filip Lundgren, Jan Ehrhardt,
+  Manfred Schwarb, Marcel Raad, Melroy van den Berg, Michał Antoniak,
+  Niels Martignène, Patrick Monnerat, Ray Satiro, Ryan Schmidt, Sandro Jaeckel,
+  Satadru Pramanik, Stephen Boost, Stephen M. Coakley, Viktor Szakats,
+  Xiaoke Wang,
+  (19 contributors)
 
 References to bug reports and discussions on issues:
 
+ [1] = https://curl.se/bug/?i=8266
  [2] = https://curl.se/bug/?i=8228
  [3] = https://curl.se/bug/?i=8228
  [4] = https://curl.se/bug/?i=8228
  [5] = https://curl.se/bug/?i=8229
  [6] = https://curl.se/bug/?i=8252
+ [7] = https://curl.se/bug/?i=8262
  [8] = https://curl.se/bug/?i=8251
+ [9] = https://curl.se/bug/?i=8229
  [10] = https://curl.se/bug/?i=8249
  [11] = https://curl.se/bug/?i=8241
  [12] = https://curl.se/bug/?i=8238
  [13] = https://curl.se/bug/?i=8244
  [14] = https://curl.se/bug/?i=8245
  [15] = https://curl.se/bug/?i=8240
+ [16] = https://curl.se/bug/?i=8152
  [17] = https://curl.se/bug/?i=8208
  [18] = https://curl.se/bug/?i=8233
  [19] = https://curl.se/bug/?i=8234
+ [20] = https://curl.se/bug/?i=8239
+ [21] = https://curl.se/bug/?i=8239
+ [22] = https://curl.se/bug/?i=7964
+ [23] = https://curl.se/bug/?i=8188
+ [24] = https://curl.se/bug/?i=8170
+ [25] = https://curl.se/bug/?i=8254
+ [26] = https://curl.se/bug/?i=8255
index 77eeb0a8e4710cb8cb7679e78d411084ad4eb50a..8321fb8cc1881d8e1024aa956fdd2fed11d4b9c0 100644 (file)
 
 /* This is the version number of the libcurl package from which this header
    file origins: */
-#define LIBCURL_VERSION "7.81.1-DEV"
+#define LIBCURL_VERSION "7.82.0-DEV"
 
 /* The numeric version number is also available "in parts" by using these
    defines: */
 #define LIBCURL_VERSION_MAJOR 7
-#define LIBCURL_VERSION_MINOR 81
-#define LIBCURL_VERSION_PATCH 1
+#define LIBCURL_VERSION_MINOR 82
+#define LIBCURL_VERSION_PATCH 0
 
 /* This is the numeric version of the libcurl version number, meant for easier
    parsing and comparisons by programs. The LIBCURL_VERSION_NUM define will
@@ -57,7 +57,7 @@
    CURL_VERSION_BITS() macro since curl's own configure script greps for it
    and needs it to contain the full number.
 */
-#define LIBCURL_VERSION_NUM 0x075101
+#define LIBCURL_VERSION_NUM 0x075200
 
 /*
  * This is the date and time when the full source package was created. The