Skip to content

Commit

Permalink
v4.11.1
Browse files Browse the repository at this point in the history
  • Loading branch information
doubaokun committed Apr 28, 2022
1 parent ad2e29a commit d9573bd
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 34 deletions.
1 change: 1 addition & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
. Fix cookie parsing bug causing cookie errors
. Fix memory leak in swoole_stream_select
. Fix compatible issues with old libcurl on centos 7
. Fix compatible issues for PHP 8.0 and Fedora, Centos 7

# 4.11.0

Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PROJECT(libopenswoole)

ENABLE_LANGUAGE(ASM)
set(SWOOLE_VERSION 4.11.1-dev)
set(SWOOLE_VERSION 4.11.1)

set(CMAKE_CXX_STANDARD 11)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -Wall -g")
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ Download the source packages from [Releases](https://github.com/openswoole/swool
```shell
git clone https://github.com/openswoole/swoole-src.git && \
cd swoole-src
git checkout v4.11.0
git checkout v4.11.1
phpize && \
./configure && \
make && make install
Expand Down
13 changes: 4 additions & 9 deletions include/swoole_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,13 @@
#define SWOOLE_MAJOR_VERSION 4
#define SWOOLE_MINOR_VERSION 11
#define SWOOLE_RELEASE_VERSION 1
#define SWOOLE_EXTRA_VERSION "dev"
#define SWOOLE_VERSION "4.11.1-dev"
#define SWOOLE_EXTRA_VERSION ""
#define SWOOLE_VERSION "4.11.1"
#define SWOOLE_VERSION_ID 41101
#define SWOOLE_API_VERSION_ID 0x202012a

#define SWOOLE_BUG_REPORT \
"A bug occurred in OpenSwoole-v" SWOOLE_VERSION ", please report it.\n" \
"The Swoole developers probably don't know about it,\n" \
"and unless you report it, chances are it won't be fixed.\n" \
"You can read How to report a bug doc before submitting any bug reports:\n" \
">> https://github.com/openswoole/swoole-src/blob/master/.github/ISSUE.md \n" \
"Please do not send bug reports in the mailing list or personal letters.\n" \
"The issue page is also suitable to submit feature requests.\n"

"Please submit bug report at:\n" \
">> https://github.com/openswoole/swoole-src/issues \n"
#endif
32 changes: 10 additions & 22 deletions package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@
<email>[email protected]</email>
<active>yes</active>
</lead>
<date>2022-04-24</date>
<time>20:00:00</time>
<date>2022-04-28</date>
<time>16:00:00</time>
<version>
<release>4.11.0</release>
<release>4.11.1</release>
<api>4.0</api>
</version>
<stability>
Expand All @@ -24,25 +24,11 @@
</stability>
<license uri="http://www.apache.org/licenses/LICENSE-2.0.html">Apache 2.0</license>
<notes>
. HTTP2 server: allow HTTP2 client and server to set custom HTTP2 settings
. Support static compile with PHP CLI
. New feature: support http_index_files at HTTP2 server
. CI: Remove PHP7.2/7.3 support as they are not supported by the PHP team
. Bug fixed: Fix HTTP2 client and respect max_concurrent_streams settings
. HTTP2: Update HTTP2 default max concurrent streams per connection to be 1280
. Bug fixed: Respect server side settings at HTTP2 client
. Optimize signal-driven timer code (@hauptmedia)
. Bug fixed: $server->getWorkerPid does not return the correct worker pid when being called from another worker context
. Bug fixed: init window size in http2 server
. Deprecated: redis server
. Bug fixed: close HTTP2 connection when there are errors
. Close connection when a process is stopped and it is managing http2 sessions
. Bug fixed: fix user land timer is not stopping when the server is shutting down
. Postgres client: return empty array if the result set is empty
. Postgres client: provide constant enums for $connection->resultStatus
. Postgres client: added new API $pg->reset() and $pg->status() (@RedChops)
. CI and tests: fixed many bugs in tests and improved the CI and testing (@hauptmedia)
. Build fix for gcc version lower than 4.9 (@dmz-uk)
. Fix postgres client metaData api bugs
. Fix cookie parsing bug causing cookie errors
. Fix memory leak in swoole_stream_select
. Fix compatible issues with old libcurl on centos 7
. Fix compatible issues for PHP 8.0 and Fedora, Centos 7
</notes>
<contents>
<dir name="/">
Expand Down Expand Up @@ -2141,10 +2127,12 @@
<file role="src" name="tools/arginfo-check.php" />
<file role="src" name="tools/bootstrap.php" />
<file role="src" name="tools/build-library.php" />
<file role="doc" name="tools/centos7-Dockerfile" />
<file role="src" name="tools/code-generator.php" />
<file role="src" name="tools/config-generator.php" />
<file role="src" name="tools/constant-generator.php" />
<file role="src" name="tools/export.php" />
<file role="doc" name="tools/fedora-Dockerfile" />
<file role="src" name="tools/gen-data.php" />
<file role="src" name="tools/gen_func_stub.php" />
<file role="src" name="tools/gen_stub.php" />
Expand Down
2 changes: 1 addition & 1 deletion tools/templates/version.tpl.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,5 @@
#define SWOOLE_BUG_REPORT \
"A bug occurred in OpenSwoole-v" SWOOLE_VERSION ", please report it.\n" \
"Please submit bug report at:\n" \
">> https://github.com/openswoole/swoole-src/issues \n" \
">> https://github.com/openswoole/swoole-src/issues \n"
#endif

0 comments on commit d9573bd

Please sign in to comment.