aboutsummaryrefslogtreecommitdiff
path: root/docs/THANKS
AgeCommit message (Collapse)Author
2020-04-29THANKS: synced with the 7.70.0 releaseDaniel Stenberg
2020-03-11THANKS: from the 7.69.1 releaseDaniel Stenberg
2020-03-04THANKS: from 7.69.0Daniel Stenberg
Now sorted case insensitive
2020-01-07THANKS: updated with names from the 7.68.0 releaseDaniel Stenberg
2019-11-05THANKS: add new names from 7.67.0Daniel Stenberg
2019-09-10THANKS: from the 7.66.0 releaseDaniel Stenberg
2019-08-31THANKS: remove duplicateDaniel Stenberg
2019-07-19THANKS: 7.65.3 statusDaniel Stenberg
2019-07-17THANKS: add contributors from 7.65.2Daniel Stenberg
2019-06-04THANKS: new contributors from 7.65.1Daniel Stenberg
2019-05-22THANKS: from the 7.65.0 release-notesDaniel Stenberg
2019-03-27RELEASE: 7.64.1Daniel Stenberg
2019-02-06THANKS: 7.64.0 statusDaniel Stenberg
2019-01-09THANKS: fixups and a dedupeDaniel Stenberg
[skip ci]
2019-01-02THANKS: add more missing namesDaniel Gustafsson
Add Adrian Burcea who made the artwork for the curl://up 2018 event which was held in Stockholm, Sweden.
2019-01-01THANKS: dedupe more namesDaniel Stenberg
Researched-by: Tae Wong
2018-12-31THANKS: added missing names from year <= 2000Daniel Stenberg
Due to a report of a missing name in THANKS I manually went through an old CHANGES.0 file and added many previously missing names here.
2018-12-30THANKS: dedupe Guenter KnaufDaniel Stenberg
Reported-by: Tae Wong
2018-12-30THANKS: missing name from the 6.3.1 release!Daniel Stenberg
2018-12-12THANKS: from the curl 7.62.0 cycleDaniel Stenberg
2018-10-30THANKS: 7.62.0 statusDaniel Stenberg
2018-09-04THANKS: 7.61.1 statusDaniel Stenberg
2018-07-11release: 7.61.0Daniel Stenberg
2018-05-15THANKS: added people from the curl 7.60.0 releaseDaniel Stenberg
2018-03-13release: 7.59.0Daniel Stenberg
2018-03-05THANKS + mailmap: remove duplicates, fixup full namesDaniel Stenberg
2018-03-04RELEASE-NOTES/THANKS: synced with cc1d4c505Daniel Stenberg
2018-01-23RELEASE: 7.58.0Daniel Stenberg
2017-12-12THANKS: added missing namesDaniel Stenberg
... as I reran the contrithanks script after the mailmap name fixups.
2017-12-12mailmap: added/clarified several namesDaniel Stenberg
2017-11-29THANKS: added contributors from 7.57.0 releaseDaniel Stenberg
2017-10-23THANKS: update at 7.56.1 release timeDaniel Stenberg
2017-10-04THANKS: added new 7.56.0 contributorsDaniel Stenberg
2017-08-13RELEASE-NOTES/THANKS: curl 7.55.1 release timeDaniel Stenberg
2017-08-09THANKS: 20 new contributors in 7.55.0Daniel Stenberg
2017-06-14release: 7.54.1Daniel Stenberg
2017-05-13THANKS: add a few missing namesDaniel Stenberg
... I found them in the commit logs from the early years
2017-04-19THANKS: add contributors from 7.54.0 release notesDaniel Stenberg
2017-02-24release: 7.53.1Daniel Stenberg
2017-02-22release: 7.53.0Daniel Stenberg
2016-12-20THANKS: 13 new contributors from 7.52.0Daniel Stenberg
2016-11-02THANKS: synced with 7.51.0Daniel Stenberg
2016-09-14THANKS: updated with curl 7.50.3 contributorsDaniel Stenberg
2016-09-07THANKS: updated for 7.50.2Daniel Stenberg
2016-08-03THANKS: 7 new contributors from the 7.50.1 releaseDaniel Stenberg
2016-07-21THANKS: 13 new contributors from the 7.50.0 releaseDaniel Stenberg
2016-05-23THANKS: updated after script fixesDaniel Stenberg
Now giving credit properly to github user names, fixed some UTF-8 issues and added names discovered when contrithanks was improved.
2016-05-17THANKS: 24 new names from 7.49.0 release notesDaniel Stenberg
2016-03-23THANKS: 15 new contributors from 7.48.0 releaseDaniel Stenberg
2016-02-09openssl: remove most BoringSSL #ifdefs.David Benjamin
As of https://boringssl-review.googlesource.com/#/c/6980/, almost all of BoringSSL #ifdefs in cURL should be unnecessary: - BoringSSL provides no-op stubs for compatibility which replaces most #ifdefs. - DES_set_odd_parity has been in BoringSSL for nearly a year now. Remove the compatibility codepath. - With a small tweak to an extend_key_56_to_64 call, the NTLM code builds fine. - Switch OCSP-related #ifdefs to the more generally useful OPENSSL_NO_OCSP. The only #ifdefs which remain are Curl_ossl_version and the #undefs to work around OpenSSL and wincrypt.h name conflicts. (BoringSSL leaves that to the consumer. The in-header workaround makes things sensitive to include order.) This change errs on the side of removing conditionals despite many of the restored codepaths being no-ops. (BoringSSL generally adds no-op compatibility stubs when possible. OPENSSL_VERSION_NUMBER #ifdefs are bad enough!) Closes #640