release 4.2.1 v4.2.1
authorMichael Wallner <mike@php.net>
Mon, 13 Sep 2021 10:51:06 +0000 (12:51 +0200)
committerMichael Wallner <mike@php.net>
Mon, 13 Sep 2021 10:51:06 +0000 (12:51 +0200)
* Fixed failing tests with PHP-8.1 (see gh issue #120)
* Fixed configure reliably finding the right libcurl features available
* Fixed cookie handling with libcurl 7.77+ and consistently across all
  supported libcurl versions (follow-up to gh issue #116)

CHANGELOG.md
package.xml
php_http.h

index 4851d4f1f1410eb1890624c0ef185efa16bd753e..37af2aad504c262da80ed45211ce39294567244b 100644 (file)
@@ -1,5 +1,12 @@
 # ChangeLog v4
 
 # ChangeLog v4
 
+## 4.2.1, 2021-09-13
+
+* Fixed failing tests with PHP-8.1 (see gh issue #120)
+* Fixed configure reliably finding the right libcurl features available
+* Fixed cookie handling with libcurl 7.77+ and consistently across all 
+  supported libcurl versions (follow-up to gh issue #116)
+
 ## 4.2.0, 2021-08-30
 
 * Fixed PHP-8.1 compatibility (see gh issues #114, #115 and #118)
 ## 4.2.0, 2021-08-30
 
 * Fixed PHP-8.1 compatibility (see gh issues #114, #115 and #118)
index a751c7933133738a63628c0075543ca1be61f549..60aa0b69f02dc3ca0fa968b561fb3a3bf3f3fdc6 100644 (file)
@@ -31,9 +31,9 @@ https://mdref.m6w6.name/http
   <email>mike@php.net</email>
   <active>yes</active>
  </lead>
   <email>mike@php.net</email>
   <active>yes</active>
  </lead>
- <date>2021-08-30</date>
+ <date>2021-09-13</date>
  <version>
  <version>
-  <release>4.2.0</release>
+  <release>4.2.1</release>
   <api>4.2.0</api>
  </version>
  <stability>
   <api>4.2.0</api>
  </version>
  <stability>
@@ -42,10 +42,10 @@ https://mdref.m6w6.name/http
  </stability>
  <license uri="http://copyfree.org/content/standard/licenses/2bsd/license.txt">BSD-2-Clause</license>
  <notes><![CDATA[
  </stability>
  <license uri="http://copyfree.org/content/standard/licenses/2bsd/license.txt">BSD-2-Clause</license>
  <notes><![CDATA[
-* Fixed PHP-8.1 compatibility (see gh issues #114, #115 and #118)
-* Fixed cookies failing with libcurl >= 7.77 (see gh issue #116)
-* Fixed tests using $_ENV instead of getenv() to find executables in PATH (see gh issue #113)
-* Added http\Env::reset(): resets internal HTTP request cache (see gh issue #90)
+* Fixed failing tests with PHP-8.1 (see gh issue #120)
+* Fixed configure reliably finding the right libcurl features available
+* Fixed cookie handling with libcurl 7.77+ and consistently across all 
+  supported libcurl versions (follow-up to gh issue #116)
 ]]></notes>
  <contents>
   <dir name="/">
 ]]></notes>
  <contents>
   <dir name="/">
@@ -378,9 +378,11 @@ https://mdref.m6w6.name/http
    <dir name="scripts">
     <file role="src" name="bench_select_vs_event.php"/>
     <file role="src" name="check_package-xml.php"/>
    <dir name="scripts">
     <file role="src" name="bench_select_vs_event.php"/>
     <file role="src" name="check_package-xml.php"/>
+    <file role="src" name="curlver.dist"/>
     <file role="src" name="gen_curlinfo.php"/>
     <file role="src" name="gen_stubs.php"/>
     <file role="src" name="gen_github_workflow_ci.php"/>
     <file role="src" name="gen_curlinfo.php"/>
     <file role="src" name="gen_stubs.php"/>
     <file role="src" name="gen_github_workflow_ci.php"/>
+    <file role="src" name="gen_github_workflow_curl-matrix.php"/>
     <file role="src" name="gen_utf8.php"/>
    </dir>
   </dir>
     <file role="src" name="gen_utf8.php"/>
    </dir>
   </dir>
index 0fbb15550f4bd15e25cf0c2893f8b95a23f582a2..e5034907367dc52051cc199488626e29b0b810f7 100644 (file)
@@ -13,7 +13,7 @@
 #ifndef PHP_EXT_HTTP_H
 #define PHP_EXT_HTTP_H
 
 #ifndef PHP_EXT_HTTP_H
 #define PHP_EXT_HTTP_H
 
-#define PHP_PECL_HTTP_VERSION "4.2.0"
+#define PHP_PECL_HTTP_VERSION "4.2.1"
 
 extern zend_module_entry http_module_entry;
 #define phpext_http_ptr &http_module_entry
 
 extern zend_module_entry http_module_entry;
 #define phpext_http_ptr &http_module_entry