Skip to content

Commit dd4cd56

Browse files
release 6.2.0 rc2 (#6016)
1 parent 5fbf231 commit dd4cd56

3 files changed

Lines changed: 10 additions & 5 deletions

File tree

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.10)
22
project(libswoole)
33

44
enable_language(ASM)
5-
set(SWOOLE_VERSION 6.2.0RC1)
5+
set(SWOOLE_VERSION 6.2.0RC2)
66

77
set(CMAKE_CXX_STANDARD 14)
88
set(CMAKE_CXX_STANDARD_REQUIRED ON)

include/swoole_version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
#define SWOOLE_MINOR_VERSION 2
2323
#define SWOOLE_RELEASE_VERSION 0
2424
#define SWOOLE_EXTRA_VERSION ""
25-
#define SWOOLE_VERSION "6.2.0RC1"
25+
#define SWOOLE_VERSION "6.2.0RC2"
2626
#define SWOOLE_VERSION_ID 60200
2727
#define SWOOLE_API_VERSION_ID 0x202208a
2828

package.xml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,10 @@
4949
<email>doubaokun@php.net</email>
5050
<active>yes</active>
5151
</developer>
52-
<date>2026-02-16</date>
53-
<time>09:00:00</time>
52+
<date>2026-03-02</date>
53+
<time>22:00:00</time>
5454
<version>
55-
<release>6.2.0RC1</release>
55+
<release>6.2.0RC2</release>
5656
<api>6.0</api>
5757
</version>
5858
<stability>
@@ -70,6 +70,7 @@
7070
- Added coroutine support for `pdo_firebird`.
7171
- Added support for `PHP 8.5`.
7272
- Added coroutine support for the `gethostbyname` function.
73+
- Swoole\Coroutine::cancel now supports canceling iouring operations.
7374
- Optimized the implementation of `Server::shutdown()`, replacing signal communication with pipe communication in `Process` mode.
7475
- In the callback functions of Swoole's HTTP servers (including Swoole\Http\Server, Swoole\Http2\Server, and Swoole\Coroutine\Http\Server), the `server` property of the `Swoole\Http\Request` object now includes a new `server_addr` field, which identifies the server's IP address.
7576
- `SSH` and `FTP` coroutine clients cannot coexist with PHP's `ext-ssh` and `ext-ftp`. To enable these features, the PHP `ssh` and `ftp` extensions must be disabled.
@@ -81,6 +82,8 @@
8182
- Fixed a memory leak issue when function hooking failed.
8283
- Fixed thread safety issues during the coroutinization process of `pdo_sqlite` and `pdo_oci`.
8384
- Fixed the `sw_php_print_backtrace` function to ensure its output format matches the backtrace information format of PHP's built-in functions.
85+
- Fixed compilation failures caused by enabling --enable-uring-socket, --enable-trace-log, and --enable-error-log.
86+
- Fixed an issue where pdo_firebird could not be compiled in a coroutine environment.
8487
- Executing `php --ri swoole` now outputs version information for `libpq`.
8588
- Optimized logic related to `io_uring` in file coroutine operations.
8689
- Added PHP call stack information output when event addition fails.
@@ -1714,6 +1717,7 @@
17141717
<file role="test" name="tests/swoole_http_server/bug_5114.phpt" />
17151718
<file role="test" name="tests/swoole_http_server/bug_5146.phpt" />
17161719
<file role="test" name="tests/swoole_http_server/bug_5186.phpt" />
1720+
<file role="test" name="tests/swoole_http_server/bug_6007.phpt" />
17171721
<file role="test" name="tests/swoole_http_server/bug_compression_level.phpt" />
17181722
<file role="test" name="tests/swoole_http_server/bug_get_request_data_after_end.phpt" />
17191723
<file role="test" name="tests/swoole_http_server/callback_new_obj_method.phpt" />
@@ -2106,6 +2110,7 @@
21062110
<file role="test" name="tests/swoole_runtime/block.phpt" />
21072111
<file role="test" name="tests/swoole_runtime/bug_4657.phpt" />
21082112
<file role="test" name="tests/swoole_runtime/bug_5104.phpt" />
2113+
<file role="test" name="tests/swoole_runtime/cancel_sleep.phpt" />
21092114
<file role="test" name="tests/swoole_runtime/destruct.phpt" />
21102115
<file role="test" name="tests/swoole_runtime/enable_crypto.phpt" />
21112116
<file role="test" name="tests/swoole_runtime/exec/exec.phpt" />

0 commit comments

Comments
 (0)