From 52e6e027c8c893bf9f57aff6cab4369b5a3c1f77 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Mon, 2 Mar 2026 15:47:02 +0100 Subject: [PATCH] fixup mention in documentation --- docs/cmdline-opts/max-filesize.md | 3 +++ docs/libcurl/opts/CURLOPT_MAXFILESIZE_LARGE.md | 3 +++ 2 files changed, 6 insertions(+) diff --git a/docs/cmdline-opts/max-filesize.md b/docs/cmdline-opts/max-filesize.md index e3fd900fe6..02b2293c56 100644 --- a/docs/cmdline-opts/max-filesize.md +++ b/docs/cmdline-opts/max-filesize.md @@ -37,3 +37,6 @@ threshold during transfer. Starting in curl 8.19.0, the maximum size can be specified using a fraction as in `2.5M` for two and a half megabytes. It only works with a period (`.`) delimiter, independent of what your locale might prefer. + +Since 8.20.0, this option also stops ongoing transfers that would reach this +threshold due to automatic decompression using --compressed. diff --git a/docs/libcurl/opts/CURLOPT_MAXFILESIZE_LARGE.md b/docs/libcurl/opts/CURLOPT_MAXFILESIZE_LARGE.md index 3ee91696e4..791b25862f 100644 --- a/docs/libcurl/opts/CURLOPT_MAXFILESIZE_LARGE.md +++ b/docs/libcurl/opts/CURLOPT_MAXFILESIZE_LARGE.md @@ -42,6 +42,9 @@ ends up being larger than this given limit. Since 8.4.0, this option also stops ongoing transfers if they reach this threshold. +Since 8.20.0, this option also stops ongoing transfers that would reach this +threshold due to automatic decompression using CURLOPT_ACCEPT_ENCODING(3). + # DEFAULT 0, meaning disabled.