mirror of
https://github.com/moparisthebest/curl
synced 2024-12-23 16:48:49 -05:00
RELEASE: 7.58.0
This commit is contained in:
parent
a0b5e89445
commit
d6c21c8eec
@ -4,7 +4,7 @@ Curl and libcurl 7.58.0
|
|||||||
Command line options: 211
|
Command line options: 211
|
||||||
curl_easy_setopt() options: 249
|
curl_easy_setopt() options: 249
|
||||||
Public functions in libcurl: 74
|
Public functions in libcurl: 74
|
||||||
Contributors: 1649
|
Contributors: 1685
|
||||||
|
|
||||||
This release includes the following changes:
|
This release includes the following changes:
|
||||||
|
|
||||||
@ -13,6 +13,8 @@ This release includes the following changes:
|
|||||||
|
|
||||||
This release includes the following bugfixes:
|
This release includes the following bugfixes:
|
||||||
|
|
||||||
|
o http2: fix incorrect trailer buffer size [40]
|
||||||
|
o http: prevent custom Authorization headers in redirects [55]
|
||||||
o travis: add boringssl build [1]
|
o travis: add boringssl build [1]
|
||||||
o examples/xmlstream.c: don't switch off CURL_GLOBAL_SSL [2]
|
o examples/xmlstream.c: don't switch off CURL_GLOBAL_SSL [2]
|
||||||
o SSL: Avoid magic allocation of SSL backend specific data [3]
|
o SSL: Avoid magic allocation of SSL backend specific data [3]
|
||||||
@ -74,7 +76,6 @@ This release includes the following bugfixes:
|
|||||||
o progress: calculate transfer speed on milliseconds if possible [38]
|
o progress: calculate transfer speed on milliseconds if possible [38]
|
||||||
o system.h: check __LONG_MAX__ for defining curl_off_t [31]
|
o system.h: check __LONG_MAX__ for defining curl_off_t [31]
|
||||||
o easy: fix connection ownership in curl_easy_pause [39]
|
o easy: fix connection ownership in curl_easy_pause [39]
|
||||||
o http2: fix incorrect trailer buffer size [40]
|
|
||||||
o setopt: reintroduce non-static Curl_vsetopt() for OS400 support [41]
|
o setopt: reintroduce non-static Curl_vsetopt() for OS400 support [41]
|
||||||
o setopt: fix SSLVERSION to allow CURL_SSLVERSION_MAX_ values [42]
|
o setopt: fix SSLVERSION to allow CURL_SSLVERSION_MAX_ values [42]
|
||||||
o configure.ac: append extra linker flags instead of prepending them [43]
|
o configure.ac: append extra linker flags instead of prepending them [43]
|
||||||
@ -92,6 +93,8 @@ This release includes the following bugfixes:
|
|||||||
o examples/url2file.c: add missing curl_global_cleanup() call [52]
|
o examples/url2file.c: add missing curl_global_cleanup() call [52]
|
||||||
o http2: don't close connection when single transfer is stopped [53]
|
o http2: don't close connection when single transfer is stopped [53]
|
||||||
o libcurl-env.3: first version
|
o libcurl-env.3: first version
|
||||||
|
o curl: progress bar refresh, get width using ioctl() [54]
|
||||||
|
o CONNECT_TO: fail attempt to set an IPv6 numerical without IPv6 support [56]
|
||||||
|
|
||||||
This release includes the following known bugs:
|
This release includes the following known bugs:
|
||||||
|
|
||||||
@ -100,19 +103,20 @@ This release includes the following known bugs:
|
|||||||
This release would not have looked like this without help, code, reports and
|
This release would not have looked like this without help, code, reports and
|
||||||
advice from friends like these:
|
advice from friends like these:
|
||||||
|
|
||||||
ahodesuka on github, Basuke Suzuki, Brad Spencer, Chester Liu,
|
ahodesuka on github, Andreas Schneider, Basuke Suzuki, Brad Spencer,
|
||||||
cmfrolick on github, Daniel Stenberg, Dan Johnson, David Benjamin,
|
Chester Liu, cmfrolick on github, Craig de Stigter, Daniel Stenberg,
|
||||||
Dima Tisnek, Dimitrios Apostolou, Dmitry Kostjuchenko, Dominik Hölzl,
|
Dan Johnson, David Benjamin, Dima Tisnek, Dimitrios Apostolou,
|
||||||
Elliot Saba, Frank Gevaerts, Gisle Vanem, guitared on github, Jan Ehrhardt,
|
Dmitry Kostjuchenko, Dominik Hölzl, Elliot Saba, Frank Gevaerts, Gisle Vanem,
|
||||||
Johannes Schindelin, John DeHelian, jonrumsey on github,
|
guitared on github, Jan Ehrhardt, Johannes Schindelin, John DeHelian,
|
||||||
jungle-boogie on github, Kartik Mahajan, Martin Galvan, Matthew Kerwin,
|
John Hascall, jonrumsey on github, jungle-boogie on github, Kartik Mahajan,
|
||||||
Mattias Fornander, Max Dymond, Michael Felt, Michael Gmelin,
|
Martin Galvan, Matthew Kerwin, Mattias Fornander, Max Dymond, Michael Felt,
|
||||||
Michael Kaufmann, Mikalai Ananenka, Nikos Mavrogiannopoulos, Oleg Pudeyev,
|
Michael Gmelin, Michael Kaufmann, Mikalai Ananenka, Nikos Mavrogiannopoulos,
|
||||||
Patrick Dawson, Patrick Monnerat, Per Malmberg, Pete Lomax, Rainer Canavan,
|
Oleg Pudeyev, Patrick Dawson, Patrick Monnerat, Per Malmberg, Pete Lomax,
|
||||||
Randall S. Becker, Ray Satiro, Richard Alcock, Sean MacLennan, Stepan Broz,
|
Rainer Canavan, Randall S. Becker, Ray Satiro, Richard Alcock, Robert Kolcun,
|
||||||
Steve Holme, Thomas van Hesteren, W. Mark Kubacki, XhstormR on github,
|
Sean MacLennan, Stanislav Zidek, Stepan Broz, Steve Holme,
|
||||||
|
Thomas van Hesteren, Tomas Mraz, W. Mark Kubacki, XhstormR on github,
|
||||||
Zachary Seguin, Zhouyihai Ding,
|
Zachary Seguin, Zhouyihai Ding,
|
||||||
(48 contributors)
|
(54 contributors)
|
||||||
|
|
||||||
Thanks! (and sorry if I forgot to mention someone)
|
Thanks! (and sorry if I forgot to mention someone)
|
||||||
|
|
||||||
@ -157,7 +161,7 @@ References to bug reports and discussions on issues:
|
|||||||
[37] = https://curl.haxx.se/bug/?i=2222
|
[37] = https://curl.haxx.se/bug/?i=2222
|
||||||
[38] = https://curl.haxx.se/bug/?i=2200
|
[38] = https://curl.haxx.se/bug/?i=2200
|
||||||
[39] = https://curl.haxx.se/bug/?i=2217
|
[39] = https://curl.haxx.se/bug/?i=2217
|
||||||
[40] = https://curl.haxx.se/bug/?i=2231
|
[40] = https://curl.haxx.se/docs/adv_2018-824a.html
|
||||||
[41] = https://curl.haxx.se/bug/?i=2230
|
[41] = https://curl.haxx.se/bug/?i=2230
|
||||||
[42] = https://curl.haxx.se/bug/?i=2225
|
[42] = https://curl.haxx.se/bug/?i=2225
|
||||||
[43] = https://curl.haxx.se/bug/?i=2234
|
[43] = https://curl.haxx.se/bug/?i=2234
|
||||||
@ -171,5 +175,6 @@ References to bug reports and discussions on issues:
|
|||||||
[51] = https://curl.haxx.se/bug/?i=2248
|
[51] = https://curl.haxx.se/bug/?i=2248
|
||||||
[52] = https://curl.haxx.se/bug/?i=2245
|
[52] = https://curl.haxx.se/bug/?i=2245
|
||||||
[53] = https://curl.haxx.se/bug/?i=2237
|
[53] = https://curl.haxx.se/bug/?i=2237
|
||||||
|
[54] = https://curl.haxx.se/bug/?i=2242
|
||||||
|
[55] = https://curl.haxx.se/docs/adv_2018-b3bf.html
|
||||||
|
[56] = https://curl.haxx.se/mail/lib-2018-01/0087.html
|
||||||
|
22
docs/THANKS
22
docs/THANKS
@ -91,6 +91,7 @@ Andreas Ntaflos
|
|||||||
Andreas Olsson
|
Andreas Olsson
|
||||||
Andreas Rieke
|
Andreas Rieke
|
||||||
Andreas Roth
|
Andreas Roth
|
||||||
|
Andreas Schneider
|
||||||
Andreas Schuldei
|
Andreas Schuldei
|
||||||
Andreas Streichardt
|
Andreas Streichardt
|
||||||
Andreas Wurf
|
Andreas Wurf
|
||||||
@ -153,6 +154,7 @@ Balint Szilakszi
|
|||||||
Barry Abrahamson
|
Barry Abrahamson
|
||||||
Bart Whiteley
|
Bart Whiteley
|
||||||
Bas Mevissen
|
Bas Mevissen
|
||||||
|
Basuke Suzuki
|
||||||
Ben Boeckel
|
Ben Boeckel
|
||||||
Ben Darnell
|
Ben Darnell
|
||||||
Ben Greear
|
Ben Greear
|
||||||
@ -234,6 +236,7 @@ Chandrakant Bagul
|
|||||||
Charles Kerr
|
Charles Kerr
|
||||||
Charles Romestant
|
Charles Romestant
|
||||||
Chen Prog
|
Chen Prog
|
||||||
|
Chester Liu
|
||||||
Chih-Chung Chang
|
Chih-Chung Chang
|
||||||
Chris "Bob Bob"
|
Chris "Bob Bob"
|
||||||
Chris Araman
|
Chris Araman
|
||||||
@ -285,6 +288,7 @@ Cory Nelson
|
|||||||
Craig A West
|
Craig A West
|
||||||
Craig Davison
|
Craig Davison
|
||||||
Craig Markwardt
|
Craig Markwardt
|
||||||
|
Craig de Stigter
|
||||||
Cris Bailiff
|
Cris Bailiff
|
||||||
Cristian Rodríguez
|
Cristian Rodríguez
|
||||||
Curt Bogmine
|
Curt Bogmine
|
||||||
@ -305,6 +309,7 @@ Dan Cristian
|
|||||||
Dan Donahue
|
Dan Donahue
|
||||||
Dan Fandrich
|
Dan Fandrich
|
||||||
Dan Jacobson
|
Dan Jacobson
|
||||||
|
Dan Johnson
|
||||||
Dan Locks
|
Dan Locks
|
||||||
Dan McNulty
|
Dan McNulty
|
||||||
Dan Nelson
|
Dan Nelson
|
||||||
@ -390,6 +395,7 @@ Dima Barsky
|
|||||||
Dima Tisnek
|
Dima Tisnek
|
||||||
Dimitar Boevski
|
Dimitar Boevski
|
||||||
Dimitre Dimitrov
|
Dimitre Dimitrov
|
||||||
|
Dimitrios Apostolou
|
||||||
Dimitrios Siganos
|
Dimitrios Siganos
|
||||||
Dimitris Sarris
|
Dimitris Sarris
|
||||||
Dinar
|
Dinar
|
||||||
@ -748,6 +754,7 @@ John Dennis
|
|||||||
John Dunn
|
John Dunn
|
||||||
John E. Malmberg
|
John E. Malmberg
|
||||||
John Gardiner Myers
|
John Gardiner Myers
|
||||||
|
John Hascall
|
||||||
John Janssen
|
John Janssen
|
||||||
John Joseph Bachir
|
John Joseph Bachir
|
||||||
John Kelly
|
John Kelly
|
||||||
@ -827,6 +834,7 @@ Kang Lin
|
|||||||
Kang-Jin Lee
|
Kang-Jin Lee
|
||||||
Karl Moerder
|
Karl Moerder
|
||||||
Karol Pietrzak
|
Karol Pietrzak
|
||||||
|
Kartik Mahajan
|
||||||
Kaspar Brand
|
Kaspar Brand
|
||||||
Katie Wang
|
Katie Wang
|
||||||
Kazuho Oku
|
Kazuho Oku
|
||||||
@ -979,6 +987,7 @@ Martijn Koster
|
|||||||
Martin C. Martin
|
Martin C. Martin
|
||||||
Martin Drasar
|
Martin Drasar
|
||||||
Martin Frodl
|
Martin Frodl
|
||||||
|
Martin Galvan
|
||||||
Martin Hager
|
Martin Hager
|
||||||
Martin Hedenfalk
|
Martin Hedenfalk
|
||||||
Martin Jansen
|
Martin Jansen
|
||||||
@ -1007,6 +1016,7 @@ Matthew Clarke
|
|||||||
Matthew Hall
|
Matthew Hall
|
||||||
Matthew Kerwin
|
Matthew Kerwin
|
||||||
Matthias Bolte
|
Matthias Bolte
|
||||||
|
Mattias Fornander
|
||||||
Maurice Barnum
|
Maurice Barnum
|
||||||
Mauro Iorio
|
Mauro Iorio
|
||||||
Mauro Rappa
|
Mauro Rappa
|
||||||
@ -1027,6 +1037,7 @@ Michael Cronenworth
|
|||||||
Michael Curtis
|
Michael Curtis
|
||||||
Michael Day
|
Michael Day
|
||||||
Michael Felt
|
Michael Felt
|
||||||
|
Michael Gmelin
|
||||||
Michael Goffioul
|
Michael Goffioul
|
||||||
Michael Jahn
|
Michael Jahn
|
||||||
Michael Jerris
|
Michael Jerris
|
||||||
@ -1054,6 +1065,7 @@ Miguel Diaz
|
|||||||
Mihai Ionescu
|
Mihai Ionescu
|
||||||
Mikael Johansson
|
Mikael Johansson
|
||||||
Mikael Sennerholm
|
Mikael Sennerholm
|
||||||
|
Mikalai Ananenka
|
||||||
Mike Bytnar
|
Mike Bytnar
|
||||||
Mike Crowe
|
Mike Crowe
|
||||||
Mike Dobbs
|
Mike Dobbs
|
||||||
@ -1184,6 +1196,7 @@ Pedro Larroy
|
|||||||
Pedro Neves
|
Pedro Neves
|
||||||
Per Lundberg
|
Per Lundberg
|
||||||
Per Malmberg
|
Per Malmberg
|
||||||
|
Pete Lomax
|
||||||
Peter Bray
|
Peter Bray
|
||||||
Peter Forret
|
Peter Forret
|
||||||
Peter Frühberger
|
Peter Frühberger
|
||||||
@ -1310,6 +1323,7 @@ Robert B. Harris
|
|||||||
Robert D. Young
|
Robert D. Young
|
||||||
Robert Foreman
|
Robert Foreman
|
||||||
Robert Iakobashvili
|
Robert Iakobashvili
|
||||||
|
Robert Kolcun
|
||||||
Robert Olson
|
Robert Olson
|
||||||
Robert Schumann
|
Robert Schumann
|
||||||
Robert Weaver
|
Robert Weaver
|
||||||
@ -1377,6 +1391,7 @@ Scott Davis
|
|||||||
Scott McCreary
|
Scott McCreary
|
||||||
Sean Boudreau
|
Sean Boudreau
|
||||||
Sean Burford
|
Sean Burford
|
||||||
|
Sean MacLennan
|
||||||
Sebastian Mundry
|
Sebastian Mundry
|
||||||
Sebastian Pohlschmidt
|
Sebastian Pohlschmidt
|
||||||
Sebastian Rasmussen
|
Sebastian Rasmussen
|
||||||
@ -1414,6 +1429,7 @@ Spork Schivago
|
|||||||
Stadler Stephan
|
Stadler Stephan
|
||||||
Stan van de Burgt
|
Stan van de Burgt
|
||||||
Stanislav Ivochkin
|
Stanislav Ivochkin
|
||||||
|
Stanislav Zidek
|
||||||
Stefan Bühler
|
Stefan Bühler
|
||||||
Stefan Eissing
|
Stefan Eissing
|
||||||
Stefan Esser
|
Stefan Esser
|
||||||
@ -1478,6 +1494,7 @@ Thomas Petazzoni
|
|||||||
Thomas Ruecker
|
Thomas Ruecker
|
||||||
Thomas Schwinge
|
Thomas Schwinge
|
||||||
Thomas Tonino
|
Thomas Tonino
|
||||||
|
Thomas van Hesteren
|
||||||
Thorsten Schöning
|
Thorsten Schöning
|
||||||
Tiit Pikma
|
Tiit Pikma
|
||||||
Till Maas
|
Till Maas
|
||||||
@ -1521,6 +1538,7 @@ Tom Zerucha
|
|||||||
Tomas Hoger
|
Tomas Hoger
|
||||||
Tomas Jakobsson
|
Tomas Jakobsson
|
||||||
Tomas Mlcoch
|
Tomas Mlcoch
|
||||||
|
Tomas Mraz
|
||||||
Tomas Pospisek
|
Tomas Pospisek
|
||||||
Tomas Szepe
|
Tomas Szepe
|
||||||
Tomas Tomecek
|
Tomas Tomecek
|
||||||
@ -1595,6 +1613,7 @@ Wouter Van Rooy
|
|||||||
Wu Yongzheng
|
Wu Yongzheng
|
||||||
Wyatt O'Day
|
Wyatt O'Day
|
||||||
Xavier Bouchoux
|
Xavier Bouchoux
|
||||||
|
XhstormR on github
|
||||||
Xiangbin Li
|
Xiangbin Li
|
||||||
Yaakov Selkowitz
|
Yaakov Selkowitz
|
||||||
Yamada Yasuharu
|
Yamada Yasuharu
|
||||||
@ -1616,6 +1635,7 @@ Zachary Seguin
|
|||||||
Zdenek Pavlas
|
Zdenek Pavlas
|
||||||
Zekun Ni
|
Zekun Ni
|
||||||
Zenju on github
|
Zenju on github
|
||||||
|
Zhouyihai Ding
|
||||||
Zmey Petroff
|
Zmey Petroff
|
||||||
Zvi Har'El
|
Zvi Har'El
|
||||||
afrind on github
|
afrind on github
|
||||||
@ -1626,6 +1646,7 @@ baumanj on github
|
|||||||
bsammon on github
|
bsammon on github
|
||||||
canavan on github
|
canavan on github
|
||||||
cbartl on github
|
cbartl on github
|
||||||
|
cmfrolick on github
|
||||||
destman on github
|
destman on github
|
||||||
dkjjr89 on github
|
dkjjr89 on github
|
||||||
dpull on github
|
dpull on github
|
||||||
@ -1636,6 +1657,7 @@ hsiao yi
|
|||||||
imilli on github
|
imilli on github
|
||||||
jonrumsey on github
|
jonrumsey on github
|
||||||
joshhe on github
|
joshhe on github
|
||||||
|
jungle-boogie on github
|
||||||
jveazey on github
|
jveazey on github
|
||||||
ka7 on github
|
ka7 on github
|
||||||
kreshano on github
|
kreshano on github
|
||||||
|
Loading…
Reference in New Issue
Block a user