Skip to content

Commit d6ce5b6

Browse files
committed
Release 5.1.3
1 parent aef1e34 commit d6ce5b6

File tree

5 files changed

+21
-17
lines changed

5 files changed

+21
-17
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PROJECT(libswoole)
22

33
ENABLE_LANGUAGE(ASM)
4-
set(SWOOLE_VERSION 5.1.2)
4+
set(SWOOLE_VERSION 5.1.3)
55

66
set(CMAKE_CXX_STANDARD 11)
77
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -Wall -g")

ext-src/php_swoole_library.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
+----------------------------------------------------------------------+
1515
*/
1616

17-
/* $Id: 3bc066dd5d5f3498f7bb2ef8c5a7408d0cd33149 */
17+
/* $Id: b1dfd92c6bcb71413e561d75fe860bfb3ca38434 */
1818

1919
#ifndef SWOOLE_LIBRARY_H
2020
#define SWOOLE_LIBRARY_H

include/swoole_version.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@
2020

2121
#define SWOOLE_MAJOR_VERSION 5
2222
#define SWOOLE_MINOR_VERSION 1
23-
#define SWOOLE_RELEASE_VERSION 2
23+
#define SWOOLE_RELEASE_VERSION 3
2424
#define SWOOLE_EXTRA_VERSION ""
25-
#define SWOOLE_VERSION "5.1.2"
26-
#define SWOOLE_VERSION_ID 50102
25+
#define SWOOLE_VERSION "5.1.3"
26+
#define SWOOLE_VERSION_ID 50103
2727
#define SWOOLE_API_VERSION_ID 0x202208a
2828

2929
#define SWOOLE_BUG_REPORT \

package.xml

Lines changed: 16 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,10 @@
5151
<email>[email protected]</email>
5252
<active>yes</active>
5353
</developer>
54-
<date>2024-01-24</date>
55-
<time>12:00:00</time>
54+
<date>2024-05-24</date>
55+
<time>21:00:00</time>
5656
<version>
57-
<release>5.1.2</release>
57+
<release>5.1.3</release>
5858
<api>5.0</api>
5959
</version>
6060
<stability>
@@ -63,15 +63,11 @@
6363
</stability>
6464
<license uri="http://www.apache.org/licenses/LICENSE-2.0.html">Apache2.0</license>
6565
<notes>
66-
- Added support for embed sapi @matyhtf
67-
- Fixed compatibility with PHP 8.3 ZEND_CHECK_STACK_LIMIT @Yurunsoft
68-
- Fixed no Content-Range response header when the range request returns all the contents of the file @Yurunsoft
69-
- Optimized HTTP server performance @NathanFreeman
70-
- Fixed truncated cookie @stnguyen90
71-
- Fixed native-curl crash on PHP 8.3 @NathanFreeman
72-
- Added CLOSE_SERVICE_RESTART, CLOSE_TRY_AGAIN_LATER, CLOSE_BAD_GATEWAY as valid close reasons for websocket @cjavad
73-
- Fixed invalid errno after Server::Manager::wait() @JacobBrownAustin
74-
- Fixed HTTP2 Typo @leocavalcante
66+
- Fixed crash in pdo_sqlite hook in version 8.3
67+
- Optimized HTTP COOKIE parsing to no longer throw PHP warnings, preventing them from being converted to exceptions
68+
- Fixed issue where OpenSSL would not correctly return an empty string when the peer closed the connection
69+
- Fixed incorrect setting of TCP_NODELAY
70+
- Fixed issue with proc_open hook not supporting pty
7571
</notes>
7672
<contents>
7773
<dir name="/">
@@ -1483,6 +1479,7 @@
14831479
<file role="test" name="tests/swoole_http_server/max-age.phpt" />
14841480
<file role="test" name="tests/swoole_http_server/max_concurrency.phpt" />
14851481
<file role="test" name="tests/swoole_http_server/max_coro_num.phpt" />
1482+
<file role="test" name="tests/swoole_http_server/max_input_vars.phpt" />
14861483
<file role="test" name="tests/swoole_http_server/mixed_server.phpt" />
14871484
<file role="test" name="tests/swoole_http_server/no_compression.phpt" />
14881485
<file role="test" name="tests/swoole_http_server/numeric_header_name.phpt" />
@@ -1895,6 +1892,7 @@
18951892
<file role="test" name="tests/swoole_runtime/file_hook/flock.phpt" />
18961893
<file role="test" name="tests/swoole_runtime/file_hook/include.phpt" />
18971894
<file role="test" name="tests/swoole_runtime/file_hook/include_2.phpt" />
1895+
<file role="test" name="tests/swoole_runtime/file_hook/iouring.phpt" />
18981896
<file role="test" name="tests/swoole_runtime/file_hook/lock_ex.phpt" />
18991897
<file role="test" name="tests/swoole_runtime/file_hook/lock_nb_1.phpt" />
19001898
<file role="test" name="tests/swoole_runtime/file_hook/lock_nb_2.phpt" />
@@ -2481,6 +2479,7 @@
24812479
<file role="src" name="thirdparty/php/curl/interface.cc" />
24822480
<file role="src" name="thirdparty/php/curl/multi.cc" />
24832481
<file role="src" name="thirdparty/php/curl/php_curl.h" />
2482+
<file role="src" name="thirdparty/php/main/SAPI.h" />
24842483
<file role="src" name="thirdparty/php/sockets/conversions.cc" />
24852484
<file role="src" name="thirdparty/php/sockets/conversions.h" />
24862485
<file role="src" name="thirdparty/php/sockets/multicast.cc" />
@@ -2525,6 +2524,11 @@
25252524
<file role="src" name="thirdparty/php81/pdo_sqlite/sqlite_statement.c" />
25262525
<file role="src" name="thirdparty/php83/Zend/zend_call_stack.cc" />
25272526
<file role="src" name="thirdparty/php83/Zend/zend_call_stack.h" />
2527+
<file role="src" name="thirdparty/php83/pdo_sqlite/php_pdo_sqlite_int.h" />
2528+
<file role="src" name="thirdparty/php83/pdo_sqlite/sqlite_driver.c" />
2529+
<file role="src" name="thirdparty/php83/pdo_sqlite/sqlite_driver.stub.php" />
2530+
<file role="src" name="thirdparty/php83/pdo_sqlite/sqlite_driver_arginfo.h" />
2531+
<file role="src" name="thirdparty/php83/pdo_sqlite/sqlite_statement.c" />
25282532
<file role="src" name="thirdparty/swoole_http_parser.c" />
25292533
<file role="src" name="thirdparty/swoole_http_parser.h" />
25302534
<file role="src" name="tools/analysis.php" />

swoole-5.1.3.tgz

2.12 MB
Binary file not shown.

0 commit comments

Comments
 (0)