Skip to content

Commit

Permalink
Version 4.8.9
Browse files Browse the repository at this point in the history
  • Loading branch information
matyhtf committed Apr 16, 2022
1 parent 00bad36 commit 65c4a1c
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 22 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 4.8.8)
set(SWOOLE_VERSION 4.8.9)

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

/* $Id: acfe73e33caae4c5d12da7456a261b64b191f588 */
/* $Id: 5a6baee052afc12b2affa070eed0339b1a007a42 */

static const char* swoole_library_source_constants =
"\n"
Expand Down Expand Up @@ -7532,8 +7532,6 @@ static const char* swoole_library_source_core_server_helper =
" 'worker_num' => true,\n"
" 'max_wait_time' => true,\n"
" 'max_queued_bytes' => true,\n"
" 'max_concurrency' => true,\n"
" 'worker_max_concurrency' => true,\n"
" 'enable_coroutine' => true,\n"
" 'send_timeout' => true,\n"
" 'dispatch_mode' => true,\n"
Expand Down Expand Up @@ -7659,7 +7657,6 @@ static const char* swoole_library_source_core_server_helper =
" 'enable_preemptive_scheduler' => true,\n"
" 'c_stack_size' => true,\n"
" 'stack_size' => true,\n"
" 'name_resolver' => true,\n"
" 'dns_cache_expire' => true,\n"
" 'dns_cache_capacity' => true,\n"
" 'max_concurrency' => true,\n"
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 4
#define SWOOLE_MINOR_VERSION 8
#define SWOOLE_RELEASE_VERSION 8
#define SWOOLE_RELEASE_VERSION 9
#define SWOOLE_EXTRA_VERSION ""
#define SWOOLE_VERSION "4.8.8"
#define SWOOLE_VERSION_ID 40808
#define SWOOLE_VERSION "4.8.9"
#define SWOOLE_VERSION_ID 40809
#define SWOOLE_API_VERSION_ID 0x202109a

#define SWOOLE_BUG_REPORT \
Expand Down
29 changes: 15 additions & 14 deletions package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,19 @@
<package xmlns="http://pear.php.net/dtd/package-2.0" xmlns:tasks="http://pear.php.net/dtd/tasks-1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" packagerversion="1.9.4" version="2.0" xsi:schemaLocation="http://pear.php.net/dtd/tasks-1.0 http://pear.php.net/dtd/tasks-1.0.xsd http://pear.php.net/dtd/package-2.0 http://pear.php.net/dtd/package-2.0.xsd">
<name>swoole</name>
<channel>pecl.php.net</channel>
<summary>Event-driven asynchronous and concurrent networking engine with high performance for PHP.</summary>
<summary>Coroutine-based concurrency library for PHP</summary>
<description>
Event-driven asynchronous and concurrent networking engine with high performance for PHP.
Coroutine-based concurrency library for PHP
- event-driven
- coroutine
- coroutines
- asynchronous non-blocking
- multi-thread reactor
- multi-process worker
- multi-protocol
- millisecond timer
- built-in tcp/http/websocket/http2 server
- coroutine tcp/http/websocket client
- coroutine mysql client
- coroutine redis client
- coroutine read/write file system
- coroutine dns lookup
- automatically replace blocking functions to non-blocking
- support IPv4/IPv6/UnixSocket/TCP/UDP
- support SSL/TLS encrypted transmission
</description>
Expand Down Expand Up @@ -51,10 +48,10 @@
<email>[email protected]</email>
<active>yes</active>
</developer>
<date>2022-03-15</date>
<time>14:00:00</time>
<date>2022-04-16</date>
<time>19:00:00</time>
<version>
<release>4.8.8</release>
<release>4.8.9</release>
<api>4.0</api>
</version>
<stability>
Expand All @@ -63,10 +60,10 @@
</stability>
<license uri="http://www.apache.org/licenses/LICENSE-2.0.html">Apache2.0</license>
<notes>
- Reduce SW_IPC_BUFFER_MAX_SIZE to 64k
- Respect SETTINGS_HEADER_TABLE_SIZE http2 setting (#4635)
- Fixed #4639
- Fixed http2 server NPN errors
- Added support http_auto_index for http2 server
- Fixed #4657
- Fixed the stream_select hook function memory leak
- Optimized cookies parser
</notes>
<contents>
<dir name="/">
Expand Down Expand Up @@ -1318,6 +1315,7 @@
<file role="test" name="tests/swoole_http_server/bug_2786.phpt" />
<file role="test" name="tests/swoole_http_server/bug_2947.phpt" />
<file role="test" name="tests/swoole_http_server/bug_2988.phpt" />
<file role="test" name="tests/swoole_http_server/bug_4261.phpt" />
<file role="test" name="tests/swoole_http_server/bug_compression_level.phpt" />
<file role="test" name="tests/swoole_http_server/bug_get_request_data_after_end.phpt" />
<file role="test" name="tests/swoole_http_server/callback_new_obj_method.phpt" />
Expand All @@ -1335,6 +1333,7 @@
<file role="test" name="tests/swoole_http_server/cookie_samesite.phpt" />
<file role="test" name="tests/swoole_http_server/cookie_vs_rawcookie.phpt" />
<file role="test" name="tests/swoole_http_server/cookies.phpt" />
<file role="test" name="tests/swoole_http_server/cookies_parse.phpt" />
<file role="test" name="tests/swoole_http_server/create_request.phpt" />
<file role="test" name="tests/swoole_http_server/data_parse.phpt" />
<file role="test" name="tests/swoole_http_server/disable_coroutine.phpt" />
Expand Down Expand Up @@ -1377,6 +1376,7 @@
<file role="test" name="tests/swoole_http_server/sni/server.phpt" />
<file role="test" name="tests/swoole_http_server/static_handler.phpt" />
<file role="test" name="tests/swoole_http_server/static_handler/locations.phpt" />
<file role="test" name="tests/swoole_http_server/static_handler/mimetype_not_exists.phpt" />
<file role="test" name="tests/swoole_http_server/static_handler/read_link_file.phpt" />
<file role="test" name="tests/swoole_http_server/static_handler/relative_path.phpt" />
<file role="test" name="tests/swoole_http_server/static_handler/urldecode.phpt" />
Expand Down Expand Up @@ -1606,6 +1606,7 @@
<file role="test" name="tests/swoole_runtime/base.phpt" />
<file role="test" name="tests/swoole_runtime/bindto.phpt" />
<file role="test" name="tests/swoole_runtime/block.phpt" />
<file role="test" name="tests/swoole_runtime/bug_4657.phpt" />
<file role="test" name="tests/swoole_runtime/capture_peer_cert.phpt" />
<file role="test" name="tests/swoole_runtime/destruct.phpt" />
<file role="test" name="tests/swoole_runtime/enable_crypto.phpt" />
Expand Down

0 comments on commit 65c4a1c

Please sign in to comment.