Skip to content

Commit 3074add

Browse files
release v5.1.8 (#5837)
1 parent 659566e commit 3074add

File tree

3 files changed

+16
-10
lines changed

3 files changed

+16
-10
lines changed

CMakeLists.txt

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

44
ENABLE_LANGUAGE(ASM)
5-
set(SWOOLE_VERSION 5.1.7)
5+
set(SWOOLE_VERSION 5.1.8)
66

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

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 7
23+
#define SWOOLE_RELEASE_VERSION 8
2424
#define SWOOLE_EXTRA_VERSION ""
25-
#define SWOOLE_VERSION "5.1.7"
26-
#define SWOOLE_VERSION_ID 50107
25+
#define SWOOLE_VERSION "5.1.8"
26+
#define SWOOLE_VERSION_ID 50108
2727
#define SWOOLE_API_VERSION_ID 0x202208a
2828

2929
#define SWOOLE_BUG_REPORT \

package.xml

Lines changed: 12 additions & 6 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>2025-02-15</date>
55-
<time>11:00:00</time>
54+
<date>2025-08-02</date>
55+
<time>13:00:00</time>
5656
<version>
57-
<release>5.1.7</release>
57+
<release>5.1.8</release>
5858
<api>5.0</api>
5959
</version>
6060
<stability>
@@ -63,9 +63,12 @@
6363
</stability>
6464
<license uri="http://www.apache.org/licenses/LICENSE-2.0.html">Apache2.0</license>
6565
<notes>
66-
- Fixed an issue where PostgreSQL would revert to synchronous mode under coroutine when receiving large amounts of data. @NathanFreeman
67-
- Fixed an issue where dynamically creating properties in `Swoole\Http2\Request` would throw an exception. @xuanyanwow @guandeng
68-
- Fixed a memory error caused by fatal errors occurring in one-click coroutine. @matyhtf
66+
- Fixed missing symbol references during compilation.
67+
- Fixed CPU affinity configuration failure.
68+
- Fixed signal handling exceptions.
69+
- Added missing HTTP/2 coroutine client properties.
70+
- Added missing HTTP Server compression type hints.
71+
- Added missing `id` property to `Swoole\Process`.
6972
</notes>
7073
<contents>
7174
<dir name="/">
@@ -1422,6 +1425,7 @@
14221425
<file role="test" name="tests/swoole_http_client_coro/write_func_2.phpt" />
14231426
<file role="test" name="tests/swoole_http_server/0.phpt" />
14241427
<file role="test" name="tests/swoole_http_server/If_Modified_Since.phpt" />
1428+
<file role="test" name="tests/swoole_http_server/accept_encoding.phpt" />
14251429
<file role="test" name="tests/swoole_http_server/buffer_output_size.phpt" />
14261430
<file role="test" name="tests/swoole_http_server/bug_2368.phpt" />
14271431
<file role="test" name="tests/swoole_http_server/bug_2444.phpt" />
@@ -1781,11 +1785,13 @@
17811785
<file role="test" name="tests/swoole_process/priority.phpt" />
17821786
<file role="test" name="tests/swoole_process/priority_error.phpt" />
17831787
<file role="test" name="tests/swoole_process/process_exec.phpt" />
1788+
<file role="test" name="tests/swoole_process/process_id.phpt" />
17841789
<file role="test" name="tests/swoole_process/process_msgqueue.phpt" />
17851790
<file role="test" name="tests/swoole_process/process_push.phpt" />
17861791
<file role="test" name="tests/swoole_process/process_select.phpt" />
17871792
<file role="test" name="tests/swoole_process/signal.phpt" />
17881793
<file role="test" name="tests/swoole_process/signal_in_manager.phpt" />
1794+
<file role="test" name="tests/swoole_process/signal_in_manager_2.phpt" />
17891795
<file role="test" name="tests/swoole_process/signal_in_task_worker.phpt" />
17901796
<file role="test" name="tests/swoole_process/signal_twice.phpt" />
17911797
<file role="test" name="tests/swoole_process/swoole_process_close.phpt" />

0 commit comments

Comments
 (0)