update for 4.1.0
[mdref/mdref-http] / http.md
diff --git a/http.md b/http.md
index 63095d51cbbab4963deb131f4b3164e50b4f04f2..443b75f5ee678d30d35029a167c688c15743ff5a 100644 (file)
--- a/http.md
+++ b/http.md
@@ -40,6 +40,12 @@ The following system libraries are optional and provide additional features:
        Minimum version: 7.18.2  
        Install on Debian: `apt-get install libcurl4-openssl-dev`  
 
+=libbrotli=
+       Provides brotli encoding.  
+       Configure: `--with-http-libbrotli-dir`  
+       Minimum version: 1.0  
+       Install on Debian: `apt-get install libbrotli-dev`  
 =libevent=
        Internal event loop support for the HTTP client.  
        Configure: `--with-http-libevent-dir`  
@@ -89,7 +95,7 @@ There are usually different styles of SSL support for libcurl available, so you
 This extension unconditionally depends on the pre-loaded presence of the following PHP extensions:
 
 * raphf
-* propro
+* propro (only until < 4.0.0, resp. PHP 8)
 * spl
 
 
@@ -103,7 +109,7 @@ Please ensure that all extension on which pecl/http depends, are loaded before i
 
        ; obligatory deps
        extension = raphf.so
-       extension = propro.so
+       extension = propro.so (PHP < 8.0, ext-http < 3.0 only)
 
        ; if shared deps were enabled
        extension = hash.so
@@ -113,12 +119,6 @@ Please ensure that all extension on which pecl/http depends, are loaded before i
        ; finally load pecl/http
        extension = http.so
 
-## Conflicts:
-
-pecl/http-v2 conflicts with the following extensions:
-
-* http-v1
-* event (only until <= 2.0.3)
 
 ## INI Directives:
 
@@ -151,3 +151,5 @@ The http extension registers the ```http.*``` namespace for its stream filters.
        * Added idnkit-2 IDNA2008 support.
        * Added ICU IDNA2008 support.
        * Added explicit configuration options for each IDNA library.
+0. v3.2.0
+       * Added brotli encoding support.