|
48 | 48 |
|
49 | 49 | <active>yes</active>
|
50 | 50 | </developer>
|
51 |
| - <date>2021-04-22</date> |
52 |
| - <time>17:00:00</time> |
| 51 | + <date>2021-05-14</date> |
| 52 | + <time>16:00:00</time> |
53 | 53 | <version>
|
54 |
| - <release>4.6.6</release> |
| 54 | + <release>4.6.7</release> |
55 | 55 | <api>4.0</api>
|
56 | 56 | </version>
|
57 | 57 | <stability>
|
|
62 | 62 | <notes>
|
63 | 63 | Enhancement
|
64 | 64 | ---
|
65 |
| - * Sent SIGTERM to the manager process on FreeBSD when master process is dead (#4150) (@devnexen) |
66 |
| - * Supported static compilation with PHP (#4153) (@matyhtf) |
67 |
| - * Supported SNI for File Wrapper over HTTP proxy (#4158) (@matyhtf) |
| 65 | + * Supported call Process::signal() in Manager process and Worker process (#4190) (@matyhtf) |
68 | 66 |
|
69 | 67 | Fixed
|
70 | 68 | ---
|
71 |
| - * Fixed sync-client async connect bugs (#4152) (@matyhtf) |
72 |
| - * Fixed native curl multi mem leak (swoole/swoole-src@91bf243) (@matyhtf) |
| 69 | + * Fixed signal cannot be registered repeatedly (#4170) (@matyhtf) |
| 70 | + * Fixed build on OpenBSD/NetBSD (#4188) (#4194) (@devnexen) |
| 71 | + * Fixed Lost onclose event (#4204) (@matyhtf) |
| 72 | + * Fixed native curl with Symfony HttpClient (#4208) (@matyhtf) |
| 73 | + * Fixed Http\Response::end() always return true (swoole/swoole-src@66fcc35) (@matyhtf) |
| 74 | + * Fixed PDOException generated by PDOStatementProxy (swoole/library#104) (@twose) |
| 75 | + |
| 76 | + Kernel |
| 77 | + --- |
| 78 | + * Refactored worker buffer, add msg id for the event data (#4163) (@matyhtf) |
| 79 | + * Changed the log level of "Request Entity Too Large" to warning (#4175) (@sy-records) |
| 80 | + * Deleted inet_ntoa and inet_aton calls (#4199) (@remicollet) |
| 81 | + * Adjusted output_buffer_size value to UINT_MAX (swoole/swoole-src@46ab345) (@matyhtf) |
73 | 82 | </notes>
|
74 | 83 | <contents>
|
75 | 84 | <dir name="/">
|
|
137 | 146 | <file role="src" name="core-tests/src/os/async.cpp" />
|
138 | 147 | <file role="src" name="core-tests/src/os/msg_queue.cpp" />
|
139 | 148 | <file role="src" name="core-tests/src/os/pipe.cpp" />
|
| 149 | + <file role="src" name="core-tests/src/os/process_pool.cpp" /> |
140 | 150 | <file role="src" name="core-tests/src/os/signal.cpp" />
|
141 | 151 | <file role="src" name="core-tests/src/os/timer.cpp" />
|
142 | 152 | <file role="src" name="core-tests/src/os/wait.cpp" />
|
|
1101 | 1111 | <file role="test" name="tests/swoole_curl/setopt/nobody.phpt" />
|
1102 | 1112 | <file role="test" name="tests/swoole_curl/sleep.phpt" />
|
1103 | 1113 | <file role="test" name="tests/swoole_curl/ssl/version.phpt" />
|
| 1114 | + <file role="test" name="tests/swoole_curl/symfony.phpt" /> |
1104 | 1115 | <file role="test" name="tests/swoole_curl/template" />
|
1105 | 1116 | <file role="test" name="tests/swoole_curl/timer_coredump.phpt" />
|
1106 | 1117 | <file role="test" name="tests/swoole_curl/upload/1.phpt" />
|
|
1285 | 1296 | <file role="test" name="tests/swoole_http_server/dispatch_mode_7.phpt" />
|
1286 | 1297 | <file role="test" name="tests/swoole_http_server/duplicate_header.phpt" />
|
1287 | 1298 | <file role="test" name="tests/swoole_http_server/enable_coroutine.phpt" />
|
| 1299 | + <file role="test" name="tests/swoole_http_server/error_1203.phpt" /> |
1288 | 1300 | <file role="test" name="tests/swoole_http_server/error_413.phpt" />
|
1289 | 1301 | <file role="test" name="tests/swoole_http_server/form_data_with_charset.phpt" />
|
1290 | 1302 | <file role="test" name="tests/swoole_http_server/head_method.phpt" />
|
|
1445 | 1457 | <file role="test" name="tests/swoole_process/process_push.phpt" />
|
1446 | 1458 | <file role="test" name="tests/swoole_process/process_select.phpt" />
|
1447 | 1459 | <file role="test" name="tests/swoole_process/signal.phpt" />
|
| 1460 | + <file role="test" name="tests/swoole_process/signal_in_manager.phpt" /> |
| 1461 | + <file role="test" name="tests/swoole_process/signal_in_task_worker.phpt" /> |
| 1462 | + <file role="test" name="tests/swoole_process/signal_twice.phpt" /> |
1448 | 1463 | <file role="test" name="tests/swoole_process/swoole_process_close.phpt" />
|
1449 | 1464 | <file role="test" name="tests/swoole_process/swoole_process_ctor.phpt" />
|
1450 | 1465 | <file role="test" name="tests/swoole_process/swoole_process_deamon.phpt" />
|
|
1634 | 1649 | <file role="test" name="tests/swoole_server/bug_aio.phpt" />
|
1635 | 1650 | <file role="test" name="tests/swoole_server/check_callback.phpt" />
|
1636 | 1651 | <file role="test" name="tests/swoole_server/check_chunk_total_size.phpt" />
|
| 1652 | + <file role="test" name="tests/swoole_server/client_close_in_writable_event.phpt" /> |
1637 | 1653 | <file role="test" name="tests/swoole_server/close_force.phpt" />
|
1638 | 1654 | <file role="test" name="tests/swoole_server/close_in_connect_callback.phpt" />
|
1639 | 1655 | <file role="test" name="tests/swoole_server/close_in_master.phpt" />
|
|
0 commit comments