Skip to content

Commit

Permalink
Update version for Swoole 4.5.9 (#3889)
Browse files Browse the repository at this point in the history
  • Loading branch information
huanghantao authored Nov 27, 2020
1 parent a42f955 commit d7a7ec0
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 31 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.5.8)
SET(SWOOLE_VERSION 4.5.9)

set(CMAKE_CXX_STANDARD 11)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -Wall -g")
Expand Down
7 changes: 5 additions & 2 deletions ext-src/php_swoole_library.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Generated by build-library.php, Please DO NOT modify!
*/

/* $Id: 7952a7b69374058b888e279d996b8b8a4e286b44 */
/* $Id: 715c851e14c6db497c509fc781153df5e00e96c0 */

static const char* swoole_library_source_constants =
"\n"
Expand All @@ -16,7 +16,10 @@ static const char* swoole_library_source_constants =
"\n"
"declare(strict_types=1);\n"
"\n"
"define('SWOOLE_LIBRARY', true);\n";
"define('SWOOLE_LIBRARY', true);\n"
"\n"
"!defined('CURLOPT_HEADEROPT') && define('CURLOPT_HEADEROPT', 229);\n"
"!defined('CURLOPT_PROXYHEADER') && define('CURLOPT_PROXYHEADER', 10228);\n";

static const char* swoole_library_source_std_exec =
"\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 5
#define SWOOLE_RELEASE_VERSION 8
#define SWOOLE_RELEASE_VERSION 9
#define SWOOLE_EXTRA_VERSION ""
#define SWOOLE_VERSION "4.5.8"
#define SWOOLE_VERSION_ID 40508
#define SWOOLE_VERSION "4.5.9"
#define SWOOLE_VERSION_ID 40509
#define SWOOLE_API_VERSION_ID 0x202011a

#define SWOOLE_BUG_REPORT \
Expand Down
30 changes: 5 additions & 25 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>2020-11-20</date>
<time>15:00:00</time>
<date>2020-11-26</date>
<time>00:00:00</time>
<version>
<release>4.5.8</release>
<release>4.5.9</release>
<api>4.0</api>
</version>
<stability>
Expand All @@ -54,33 +54,13 @@
</stability>
<license uri="http://www.apache.org/licenses/LICENSE-2.0.html">Apache2.0</license>
<notes>
New APIs
---
+ Added swoole_error_log function (swoole/swoole-src@67d2bff) (@matyhtf)
+ Supported SSL for readVector and writeVector (#3857) (@huanghantao)

Enhancement
---
+ Did not wait when the child process does not exist (#3832) (@matyhtf)
+ Supported DTLS 16k record (#3849) (@matyhtf)
+ Supported priority for cookie (#3854) (@matyhtf)
+ Supported more CURL options (swoole/library#71) (@sy-records)
+ Handled CURL header names in case insensitive manner (swoole/library#76) (@filakhtov) (@twose) (@sy-records)
+ Added SWOOLE_HTTP_CLIENT_ESTATUS_SEND_FAILED constant for Coroutine\\Http\\Client (#3873) (@sy-records)

Fixed
---
* Fixed readv_all and writev_all when trigger EAGAIN errno (#3830) (@huanghantao)
* Fixed warning for PHP8 (swoole/swoole-src@03f3fb0) (@matyhtf)
* Fixed binary security of swoole table keys (#3842) (@twose)
* Fixed System::writeFile append file issue when using FILE_APPEND (swoole/swoole-src@a71956d) (@matyhtf)
* Fixed CURLOPT_WRITEFUNCTION (swoole/library#74) (@sy-records)
* Fixed memory overread when parse form-data boundary (#3858) (@twose)
* Fixed is_callable() can not access internal private callable on PHP8 (#3859) (@twose)

Kernel
---
* Refactored memory allocation function, replace macro with SwooleG.std_allocator (#3853) (@matyhtf)
* Refactored pipe (#3841) (@matyhtf)
* Fixed PHP8 compatibility (#3868) (#3869) (#3872) (@twose) (@huanghantao) (@doubaokun)
</notes>
<contents>
<dir name="/">
Expand Down

0 comments on commit d7a7ec0

Please sign in to comment.