Skip to content

Commit 32b5b1f

Browse files
committed
Update version for Swoole 4.4.15
1 parent c4827de commit 32b5b1f

File tree

3 files changed

+25
-13
lines changed

3 files changed

+25
-13
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PROJECT(libswoole)
22

33
ENABLE_LANGUAGE(ASM)
4-
SET(SWOOLE_VERSION 4.4.14)
4+
SET(SWOOLE_VERSION 4.4.15)
55
SET(SWOOLE_CLFLAGS pthread rt dl ssl crypt crypto)
66
set(CMAKE_CXX_STANDARD 11)
77
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -Wall")

include/swoole.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -102,10 +102,10 @@ int clock_gettime(clock_id_t which_clock, struct timespec *t);
102102

103103
#define SWOOLE_MAJOR_VERSION 4
104104
#define SWOOLE_MINOR_VERSION 4
105-
#define SWOOLE_RELEASE_VERSION 14
105+
#define SWOOLE_RELEASE_VERSION 15
106106
#define SWOOLE_EXTRA_VERSION ""
107-
#define SWOOLE_VERSION "4.4.14"
108-
#define SWOOLE_VERSION_ID 40414
107+
#define SWOOLE_VERSION "4.4.15"
108+
#define SWOOLE_VERSION_ID 40415
109109
#define SWOOLE_BUG_REPORT \
110110
"A bug occurred in Swoole-v" SWOOLE_VERSION ", please report it.\n"\
111111
"The Swoole developers probably don't know about it,\n"\

package.xml

Lines changed: 21 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,10 @@
4242
<email>[email protected]</email>
4343
<active>yes</active>
4444
</developer>
45-
<date>2019-12-25</date>
46-
<time>19:00:00</time>
45+
<date>2020-01-14</date>
46+
<time>21:00:00</time>
4747
<version>
48-
<release>4.4.14</release>
48+
<release>4.4.15</release>
4949
<api>4.0</api>
5050
</version>
5151
<stability>
@@ -56,15 +56,25 @@
5656
<notes>
5757
Enhancement
5858
---
59-
+ Now cookie parsing on client-side always succeeds (#3035) (378a7fca) (@twose)
59+
+ Bad websocket handshake request will respond 400 (fdc1cb67) (@twose)
60+
+ Disable accept when have too many connections (dd9fbf2f) (@matyhtf)
61+
+ Binary security of package_eof (#3054) (@twose)
62+
+ Support HTTP chunked request (#3055) (@twose)
63+
+ Unified naming style and improve accessibility of Curl\Handler properties (library/curl) (@twose)
6064

6165
Fixed
6266
---
63-
* Fixed Coroutine\HTTP\Server memory leak and can not handle pipeline request (#3025) (#3029) (@twose)
64-
* Fixed compatibility issues with phar (e0558d6e) (4bf483f5) (4f93b793) (@twose)
65-
* Fixed the concurrency capability of the Coroutine HTTP2 Server (daf45b57) (@twose)
66-
* Fixed SIGCHLD listener for manager process (#3017) (@hejingsong)
67-
* Fixed warning in buffer module (161f449c) (@twose)
67+
* Fixed Http\Response->close (d30e3269) (@twose)
68+
* Fixed possible memory overflow (2212e091) (@twose)
69+
* Fixed memory error when MSHUTDOWN (undestroyed reactor) (78d6dd73) (@twose)
70+
* Fixed handler of event HUP (#3046) (@matyhtf) (@twose)
71+
* Fixed exit code 1 (f982b817) (@matyhtf) (@twose) (@qiqizjl)
72+
* Fixed missing "unhook curl_multi_getcontent" (7b2e960e) (@twose)
73+
* Fixed Coroutine HTTP2 Server memory error (d90eebe6) (@twose)
74+
* Fixed http_context_send_data (#3059) (@twose)
75+
* Fixed send_yield in BASE mode (edbb654d) (1b8096e9) (@twose)
76+
* Refactor HTTP2 Server to fix some bugs (#3061) (@twose)
77+
* Fixed behaviour of CURLOPT_POSTFIELDS, CURLOPT_HTTPHEADER, curl_close (library/curl) (@twose)
6878
</notes>
6979
<contents>
7080
<dir name="/">
@@ -1015,6 +1025,7 @@
10151025
<file role="test" name="tests/swoole_http2_server/nghttp2_big_data.phpt" />
10161026
<file role="test" name="tests/swoole_http2_server/no_compression.phpt" />
10171027
<file role="test" name="tests/swoole_http2_server/ping.phpt" />
1028+
<file role="test" name="tests/swoole_http2_server/sendfile.phpt" />
10181029
<file role="test" name="tests/swoole_http2_server/trailer.phpt" />
10191030
<file role="test" name="tests/swoole_http2_server_coro/cookies.phpt" />
10201031
<file role="test" name="tests/swoole_http_client_coro/204.phpt" />
@@ -1085,6 +1096,7 @@
10851096
<file role="test" name="tests/swoole_http_server/callback_with_private.phpt" />
10861097
<file role="test" name="tests/swoole_http_server/callback_with_protected.phpt" />
10871098
<file role="test" name="tests/swoole_http_server/chunk.phpt" />
1099+
<file role="test" name="tests/swoole_http_server/chunked_pipeline_request.phpt" />
10881100
<file role="test" name="tests/swoole_http_server/co_switching.phpt" />
10891101
<file role="test" name="tests/swoole_http_server/compression.phpt" />
10901102
<file role="test" name="tests/swoole_http_server/cookie_delete.phpt" />

0 commit comments

Comments
 (0)