Skip to content

Commit

Permalink
Update version for Swoole 4.4.15
Browse files Browse the repository at this point in the history
  • Loading branch information
twose committed Jan 14, 2020
1 parent c4827de commit 32b5b1f
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 13 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.4.14)
SET(SWOOLE_VERSION 4.4.15)
SET(SWOOLE_CLFLAGS pthread rt dl ssl crypt crypto)
set(CMAKE_CXX_STANDARD 11)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -Wall")
Expand Down
6 changes: 3 additions & 3 deletions include/swoole.h
Original file line number Diff line number Diff line change
Expand Up @@ -102,10 +102,10 @@ int clock_gettime(clock_id_t which_clock, struct timespec *t);

#define SWOOLE_MAJOR_VERSION 4
#define SWOOLE_MINOR_VERSION 4
#define SWOOLE_RELEASE_VERSION 14
#define SWOOLE_RELEASE_VERSION 15
#define SWOOLE_EXTRA_VERSION ""
#define SWOOLE_VERSION "4.4.14"
#define SWOOLE_VERSION_ID 40414
#define SWOOLE_VERSION "4.4.15"
#define SWOOLE_VERSION_ID 40415
#define SWOOLE_BUG_REPORT \
"A bug occurred in Swoole-v" SWOOLE_VERSION ", please report it.\n"\
"The Swoole developers probably don't know about it,\n"\
Expand Down
30 changes: 21 additions & 9 deletions package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,10 @@
<email>[email protected]</email>
<active>yes</active>
</developer>
<date>2019-12-25</date>
<time>19:00:00</time>
<date>2020-01-14</date>
<time>21:00:00</time>
<version>
<release>4.4.14</release>
<release>4.4.15</release>
<api>4.0</api>
</version>
<stability>
Expand All @@ -56,15 +56,25 @@
<notes>
Enhancement
---
+ Now cookie parsing on client-side always succeeds (#3035) (378a7fca) (@twose)
+ Bad websocket handshake request will respond 400 (fdc1cb67) (@twose)
+ Disable accept when have too many connections (dd9fbf2f) (@matyhtf)
+ Binary security of package_eof (#3054) (@twose)
+ Support HTTP chunked request (#3055) (@twose)
+ Unified naming style and improve accessibility of Curl\Handler properties (library/curl) (@twose)

Fixed
---
* Fixed Coroutine\HTTP\Server memory leak and can not handle pipeline request (#3025) (#3029) (@twose)
* Fixed compatibility issues with phar (e0558d6e) (4bf483f5) (4f93b793) (@twose)
* Fixed the concurrency capability of the Coroutine HTTP2 Server (daf45b57) (@twose)
* Fixed SIGCHLD listener for manager process (#3017) (@hejingsong)
* Fixed warning in buffer module (161f449c) (@twose)
* Fixed Http\Response->close (d30e3269) (@twose)
* Fixed possible memory overflow (2212e091) (@twose)
* Fixed memory error when MSHUTDOWN (undestroyed reactor) (78d6dd73) (@twose)
* Fixed handler of event HUP (#3046) (@matyhtf) (@twose)
* Fixed exit code 1 (f982b817) (@matyhtf) (@twose) (@qiqizjl)
* Fixed missing "unhook curl_multi_getcontent" (7b2e960e) (@twose)
* Fixed Coroutine HTTP2 Server memory error (d90eebe6) (@twose)
* Fixed http_context_send_data (#3059) (@twose)
* Fixed send_yield in BASE mode (edbb654d) (1b8096e9) (@twose)
* Refactor HTTP2 Server to fix some bugs (#3061) (@twose)
* Fixed behaviour of CURLOPT_POSTFIELDS, CURLOPT_HTTPHEADER, curl_close (library/curl) (@twose)
</notes>
<contents>
<dir name="/">
Expand Down Expand Up @@ -1015,6 +1025,7 @@
<file role="test" name="tests/swoole_http2_server/nghttp2_big_data.phpt" />
<file role="test" name="tests/swoole_http2_server/no_compression.phpt" />
<file role="test" name="tests/swoole_http2_server/ping.phpt" />
<file role="test" name="tests/swoole_http2_server/sendfile.phpt" />
<file role="test" name="tests/swoole_http2_server/trailer.phpt" />
<file role="test" name="tests/swoole_http2_server_coro/cookies.phpt" />
<file role="test" name="tests/swoole_http_client_coro/204.phpt" />
Expand Down Expand Up @@ -1085,6 +1096,7 @@
<file role="test" name="tests/swoole_http_server/callback_with_private.phpt" />
<file role="test" name="tests/swoole_http_server/callback_with_protected.phpt" />
<file role="test" name="tests/swoole_http_server/chunk.phpt" />
<file role="test" name="tests/swoole_http_server/chunked_pipeline_request.phpt" />
<file role="test" name="tests/swoole_http_server/co_switching.phpt" />
<file role="test" name="tests/swoole_http_server/compression.phpt" />
<file role="test" name="tests/swoole_http_server/cookie_delete.phpt" />
Expand Down

0 comments on commit 32b5b1f

Please sign in to comment.