2024-03-31 17:52:28 +08:00
|
|
|
<!--
|
|
|
|
Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
|
|
|
|
|
|
|
|
SPDX-License-Identifier: curl
|
|
|
|
-->
|
|
|
|
|
2018-07-01 19:22:53 +08:00
|
|
|
# Items to be removed from future curl releases
|
|
|
|
|
2018-07-02 14:14:53 +08:00
|
|
|
If any of these deprecated features is a cause for concern for you, please
|
2021-08-12 20:44:26 +08:00
|
|
|
email the
|
2021-08-30 15:51:07 +08:00
|
|
|
[curl-library mailing list](https://lists.haxx.se/listinfo/curl-library)
|
2021-08-12 20:44:26 +08:00
|
|
|
as soon as possible and explain to us why this is a problem for you and
|
2021-10-31 23:34:44 +08:00
|
|
|
how your use case cannot be satisfied properly using a workaround.
|
2018-09-05 06:05:46 +08:00
|
|
|
|
2024-05-07 05:27:41 +08:00
|
|
|
## TLS libraries without 1.3 support
|
|
|
|
|
|
|
|
curl drops support for TLS libraries without TLS 1.3 capability after May
|
|
|
|
2025.
|
|
|
|
|
|
|
|
It requires that a curl build using the library should be able to negotiate
|
|
|
|
and use TLS 1.3, or else it is not good enough.
|
|
|
|
|
|
|
|
As of May 2024, the libraries that need to get fixed to remain supported after
|
|
|
|
May 2025 are: BearSSL and Secure Transport.
|
|
|
|
|
2023-01-03 21:58:37 +08:00
|
|
|
## space-separated `NOPROXY` patterns
|
|
|
|
|
|
|
|
When specifying patterns/domain names for curl that should *not* go through a
|
|
|
|
proxy, the curl tool features the `--noproxy` command line option and the
|
|
|
|
library supports the `NO_PROXY` environment variable and the `CURLOPT_NOPROXY`
|
|
|
|
libcurl option.
|
|
|
|
|
|
|
|
They all set the same list of patterns. This list is documented to be a set of
|
|
|
|
**comma-separated** names, but can also be provided separated with just
|
|
|
|
space. The ability to just use spaces for this has never been documented but
|
|
|
|
some users may still have come to rely on this.
|
|
|
|
|
|
|
|
Several other tools and utilities also parse the `NO_PROXY` environment
|
|
|
|
variable but do not consider a space to be a valid separator. Using spaces for
|
|
|
|
separator is probably less portable and might cause more friction than commas
|
|
|
|
do. Users should use commas for this for greater portability.
|
|
|
|
|
2024-02-27 14:48:10 +08:00
|
|
|
curl removes the support for space-separated names in July 2024.
|
2023-01-03 21:58:37 +08:00
|
|
|
|
2022-02-07 21:20:03 +08:00
|
|
|
## past removals
|
2019-05-15 19:57:16 +08:00
|
|
|
|
2020-01-16 15:17:04 +08:00
|
|
|
- Pipelining
|
|
|
|
- axTLS
|
|
|
|
- PolarSSL
|
2022-09-01 15:23:22 +08:00
|
|
|
- NPN
|
2023-02-24 07:45:16 +08:00
|
|
|
- Support for systems without 64 bit data types
|
2023-07-30 05:44:28 +08:00
|
|
|
- NSS
|
2023-08-07 19:02:32 +08:00
|
|
|
- gskit
|
2023-08-08 19:00:36 +08:00
|
|
|
- mingw v1
|
2024-03-31 22:54:28 +08:00
|
|
|
- NTLM_WB
|