-
Notifications
You must be signed in to change notification settings - Fork 3.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update version for Swoole 4.6.4 (#4083)
- Loading branch information
1 parent
02126e8
commit 295e270
Showing
4 changed files
with
37 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -42,10 +42,10 @@ | |
<email>[email protected]</email> | ||
<active>yes</active> | ||
</developer> | ||
<date>2021-02-08</date> | ||
<time>09:00:00</time> | ||
<date>2021-03-11</date> | ||
<time>20:00:00</time> | ||
<version> | ||
<release>4.6.3</release> | ||
<release>4.6.4</release> | ||
<api>4.0</api> | ||
</version> | ||
<stability> | ||
|
@@ -54,28 +54,24 @@ | |
</stability> | ||
<license uri="http://www.apache.org/licenses/LICENSE-2.0.html">Apache2.0</license> | ||
<notes> | ||
New APIs | ||
--- | ||
+ Added Swoole\Coroutine\go function (swoole/library@92fd0de) (@matyhtf) | ||
|
||
Enhancement | ||
--- | ||
+ Added option compression_min_length for HTTP Server (#4033) (@matyhtf) | ||
+ Allowed setting content-length HTTP header in application layer (#4041) (@doubaokun) | ||
+ Supported ARM 64 build (#4057) (@devnexen) | ||
+ Supported set open_http_protocol in Swoole TCP Server (#4063) (@matyhtf) | ||
+ Supported ssl client only set certificate (swoole/swoole-src@91704ac) (@matyhtf) | ||
+ Supported ssl client only set certificate (swoole/swoole-src@91704ac) (@matyhtf) | ||
* Supported tcp_defer_accept option for FreeBSD (#4049) (@devnexen) | ||
|
||
Fixed | ||
--- | ||
* Fixed coredump when program reach file open limitation (swoole/swoole-src@709813f) (@matyhtf) | ||
* Fixed JIT being disabled (#4029) (@twose) | ||
* Fixed Response::create() bug (swoole/swoole-src@a630b5b) (@matyhtf) | ||
* Fixed task process id false positives (#4040) (@doubaokun) | ||
* Fixed coredump with native curl hook (#4042) (@Yurunsoft) | ||
* Fixed README (#4046) (@asheroto) | ||
* Fixed native-curl crash on PHP8 (#4045) (@matyhtf) | ||
|
||
Kernel | ||
--- | ||
* Optimized ssl_connect/ssl_shutdown (#4030) (@matyhtf) | ||
* Fixed Proxy-Authorization missing when use Coroutine\Http\Client (swoole/swoole-src@edc0552) (@matyhtf) | ||
* Fixed memory allocation issues with Swoole\Table (swoole/swoole-src@3e7770f) (@matyhtf) | ||
* Fixed crash when Coroutine\Http2\Client connects concurrently (swoole/swoole-src@630536d) (@matyhtf) | ||
* Fixed enable_ssl_encrypt with DTLS (swoole/swoole-src@842733b) (@matyhtf) | ||
* Fixed Coroutine\Barrier mem leak (swoole/library#94) (@Appla) (@FMiS) | ||
* Fixed the offset error caused by CURLOPT_PORT and CURLOPT_URL order (swoole/library#96) (@sy-records) | ||
* Fixed Table::get($key, $field) when field type is float (swoole/swoole-src@08ea20c) (@matyhtf) | ||
* Fixed Swoole\Table mem leaks (swoole/swoole-src@d78ca8c) (@matyhtf) | ||
</notes> | ||
<contents> | ||
<dir name="/"> | ||
|
@@ -1077,6 +1073,7 @@ | |
<file role="test" name="tests/swoole_global/unset_property_01.phpt" /> | ||
<file role="test" name="tests/swoole_global/unset_property_02.phpt" /> | ||
<file role="test" name="tests/swoole_global/unset_property_03.phpt" /> | ||
<file role="test" name="tests/swoole_http2_client_coro/connect_twice.phpt" /> | ||
<file role="test" name="tests/swoole_http2_client_coro/cookies.phpt" /> | ||
<file role="test" name="tests/swoole_http2_client_coro/error.phpt" /> | ||
<file role="test" name="tests/swoole_http2_client_coro/goaway.phpt" /> | ||
|
@@ -1543,6 +1540,8 @@ | |
<file role="test" name="tests/swoole_runtime/sockets/tcp_server.phpt" /> | ||
<file role="test" name="tests/swoole_runtime/sockets/timeout.phpt" /> | ||
<file role="test" name="tests/swoole_runtime/sockets/udp.phpt" /> | ||
<file role="test" name="tests/swoole_runtime/ssl/local_cert.phpt" /> | ||
<file role="test" name="tests/swoole_runtime/ssl/without_key.phpt" /> | ||
<file role="test" name="tests/swoole_runtime/ssl_client.phpt" /> | ||
<file role="test" name="tests/swoole_runtime/ssl_server.phpt" /> | ||
<file role="test" name="tests/swoole_runtime/stdin.phpt" /> | ||
|
@@ -1590,6 +1589,7 @@ | |
<file role="test" name="tests/swoole_server/bug_2639.phpt" /> | ||
<file role="test" name="tests/swoole_server/bug_2736.phpt" /> | ||
<file role="test" name="tests/swoole_server/bug_aio.phpt" /> | ||
<file role="test" name="tests/swoole_server/check_callback.phpt" /> | ||
<file role="test" name="tests/swoole_server/check_chunk_total_size.phpt" /> | ||
<file role="test" name="tests/swoole_server/close_force.phpt" /> | ||
<file role="test" name="tests/swoole_server/close_in_connect_callback.phpt" /> | ||
|
@@ -1825,6 +1825,7 @@ | |
<file role="test" name="tests/swoole_table/big_size.phpt" /> | ||
<file role="test" name="tests/swoole_table/bug_2263.phpt" /> | ||
<file role="test" name="tests/swoole_table/bug_2290.phpt" /> | ||
<file role="test" name="tests/swoole_table/create_10k_object.phpt" /> | ||
<file role="test" name="tests/swoole_table/del.phpt" /> | ||
<file role="test" name="tests/swoole_table/foreach.phpt" /> | ||
<file role="test" name="tests/swoole_table/get_after_destroy.phpt" /> | ||
|
@@ -1995,12 +1996,14 @@ | |
<file role="src" name="tools/export.php" /> | ||
<file role="src" name="tools/gen-data.php" /> | ||
<file role="src" name="tools/get-ip-info.php" /> | ||
<file role="src" name="tools/next-version.php" /> | ||
<file role="src" name="tools/option-generator.php" /> | ||
<file role="src" name="tools/pecl-package.php" /> | ||
<file role="src" name="tools/phpt-fixer.php" /> | ||
<file role="src" name="tools/rename.php" /> | ||
<file role="src" name="tools/send-http-data.php" /> | ||
<file role="src" name="tools/show-big-files.php" /> | ||
<file role="src" name="tools/templates/version.tpl.h" /> | ||
<file role="src" name="travis/.gitignore" /> | ||
<file role="doc" name="travis/README.md" /> | ||
<file role="src" name="travis/debug/swoole_info.php" /> | ||
|