Skip to content

Commit

Permalink
Release 5.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
matyhtf committed May 24, 2024
1 parent aef1e34 commit d6ce5b6
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 17 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PROJECT(libswoole)

ENABLE_LANGUAGE(ASM)
set(SWOOLE_VERSION 5.1.2)
set(SWOOLE_VERSION 5.1.3)

set(CMAKE_CXX_STANDARD 11)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -Wall -g")
Expand Down
2 changes: 1 addition & 1 deletion ext-src/php_swoole_library.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
+----------------------------------------------------------------------+
*/

/* $Id: 3bc066dd5d5f3498f7bb2ef8c5a7408d0cd33149 */
/* $Id: b1dfd92c6bcb71413e561d75fe860bfb3ca38434 */

#ifndef SWOOLE_LIBRARY_H
#define SWOOLE_LIBRARY_H
Expand Down
6 changes: 3 additions & 3 deletions include/swoole_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@

#define SWOOLE_MAJOR_VERSION 5
#define SWOOLE_MINOR_VERSION 1
#define SWOOLE_RELEASE_VERSION 2
#define SWOOLE_RELEASE_VERSION 3
#define SWOOLE_EXTRA_VERSION ""
#define SWOOLE_VERSION "5.1.2"
#define SWOOLE_VERSION_ID 50102
#define SWOOLE_VERSION "5.1.3"
#define SWOOLE_VERSION_ID 50103
#define SWOOLE_API_VERSION_ID 0x202208a

#define SWOOLE_BUG_REPORT \
Expand Down
28 changes: 16 additions & 12 deletions package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,10 @@
<email>[email protected]</email>
<active>yes</active>
</developer>
<date>2024-01-24</date>
<time>12:00:00</time>
<date>2024-05-24</date>
<time>21:00:00</time>
<version>
<release>5.1.2</release>
<release>5.1.3</release>
<api>5.0</api>
</version>
<stability>
Expand All @@ -63,15 +63,11 @@
</stability>
<license uri="http://www.apache.org/licenses/LICENSE-2.0.html">Apache2.0</license>
<notes>
- Added support for embed sapi @matyhtf
- Fixed compatibility with PHP 8.3 ZEND_CHECK_STACK_LIMIT @Yurunsoft
- Fixed no Content-Range response header when the range request returns all the contents of the file @Yurunsoft
- Optimized HTTP server performance @NathanFreeman
- Fixed truncated cookie @stnguyen90
- Fixed native-curl crash on PHP 8.3 @NathanFreeman
- Added CLOSE_SERVICE_RESTART, CLOSE_TRY_AGAIN_LATER, CLOSE_BAD_GATEWAY as valid close reasons for websocket @cjavad
- Fixed invalid errno after Server::Manager::wait() @JacobBrownAustin
- Fixed HTTP2 Typo @leocavalcante
- Fixed crash in pdo_sqlite hook in version 8.3
- Optimized HTTP COOKIE parsing to no longer throw PHP warnings, preventing them from being converted to exceptions
- Fixed issue where OpenSSL would not correctly return an empty string when the peer closed the connection
- Fixed incorrect setting of TCP_NODELAY
- Fixed issue with proc_open hook not supporting pty
</notes>
<contents>
<dir name="/">
Expand Down Expand Up @@ -1483,6 +1479,7 @@
<file role="test" name="tests/swoole_http_server/max-age.phpt" />
<file role="test" name="tests/swoole_http_server/max_concurrency.phpt" />
<file role="test" name="tests/swoole_http_server/max_coro_num.phpt" />
<file role="test" name="tests/swoole_http_server/max_input_vars.phpt" />
<file role="test" name="tests/swoole_http_server/mixed_server.phpt" />
<file role="test" name="tests/swoole_http_server/no_compression.phpt" />
<file role="test" name="tests/swoole_http_server/numeric_header_name.phpt" />
Expand Down Expand Up @@ -1895,6 +1892,7 @@
<file role="test" name="tests/swoole_runtime/file_hook/flock.phpt" />
<file role="test" name="tests/swoole_runtime/file_hook/include.phpt" />
<file role="test" name="tests/swoole_runtime/file_hook/include_2.phpt" />
<file role="test" name="tests/swoole_runtime/file_hook/iouring.phpt" />
<file role="test" name="tests/swoole_runtime/file_hook/lock_ex.phpt" />
<file role="test" name="tests/swoole_runtime/file_hook/lock_nb_1.phpt" />
<file role="test" name="tests/swoole_runtime/file_hook/lock_nb_2.phpt" />
Expand Down Expand Up @@ -2481,6 +2479,7 @@
<file role="src" name="thirdparty/php/curl/interface.cc" />
<file role="src" name="thirdparty/php/curl/multi.cc" />
<file role="src" name="thirdparty/php/curl/php_curl.h" />
<file role="src" name="thirdparty/php/main/SAPI.h" />
<file role="src" name="thirdparty/php/sockets/conversions.cc" />
<file role="src" name="thirdparty/php/sockets/conversions.h" />
<file role="src" name="thirdparty/php/sockets/multicast.cc" />
Expand Down Expand Up @@ -2525,6 +2524,11 @@
<file role="src" name="thirdparty/php81/pdo_sqlite/sqlite_statement.c" />
<file role="src" name="thirdparty/php83/Zend/zend_call_stack.cc" />
<file role="src" name="thirdparty/php83/Zend/zend_call_stack.h" />
<file role="src" name="thirdparty/php83/pdo_sqlite/php_pdo_sqlite_int.h" />
<file role="src" name="thirdparty/php83/pdo_sqlite/sqlite_driver.c" />
<file role="src" name="thirdparty/php83/pdo_sqlite/sqlite_driver.stub.php" />
<file role="src" name="thirdparty/php83/pdo_sqlite/sqlite_driver_arginfo.h" />
<file role="src" name="thirdparty/php83/pdo_sqlite/sqlite_statement.c" />
<file role="src" name="thirdparty/swoole_http_parser.c" />
<file role="src" name="thirdparty/swoole_http_parser.h" />
<file role="src" name="tools/analysis.php" />
Expand Down
Binary file added swoole-5.1.3.tgz
Binary file not shown.

0 comments on commit d6ce5b6

Please sign in to comment.