Skip to content

Commit

Permalink
swoole upgrade v5.1.3 (#643)
Browse files Browse the repository at this point in the history
  • Loading branch information
jingjingxyk authored Jun 7, 2024
1 parent 348404c commit 566a62c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ext/swoole
Submodule swoole updated 79 files
+56 −54 .github/workflows/ext.yml
+4 −3 .github/workflows/framework.yml
+1 −1 .github/workflows/lib.yml
+1 −1 CMakeLists.txt
+3 −1 README.md
+63 −50 config.m4
+1 −1 ext-src/php_swoole.cc
+8 −17 ext-src/php_swoole_call_stack.h
+1 −0 ext-src/php_swoole_cxx.h
+2 −1 ext-src/php_swoole_http_server.h
+420 −300 ext-src/php_swoole_library.h
+1 −1 ext-src/swoole_client_coro.cc
+18 −11 ext-src/swoole_event.cc
+26 −38 ext-src/swoole_http_request.cc
+4 −3 ext-src/swoole_http_server.cc
+6 −4 ext-src/swoole_http_server_coro.cc
+2 −2 ext-src/swoole_odbc.cc
+2 −0 ext-src/swoole_pgsql.cc
+15 −13 ext-src/swoole_postgresql_coro.cc
+9 −1 ext-src/swoole_runtime.cc
+9 −0 include/swoole_coroutine_c_api.h
+6 −1 include/swoole_file_hook.h
+1 −0 include/swoole_http.h
+1 −0 include/swoole_reactor.h
+3 −3 include/swoole_version.h
+16 −12 package.xml
+1 −0 scripts/pecl-install.sh
+61 −4 src/coroutine/hook.cc
+1 −2 src/network/socket.cc
+12 −12 src/os/async_thread.cc
+1 −1 src/protocol/base.cc
+2 −0 src/protocol/http.cc
+1 −1 src/server/master.cc
+8 −0 tests/include/config.php
+1 −1 tests/swoole_client_sync/eof.phpt
+1 −1 tests/swoole_client_sync/eof_close.phpt
+1 −1 tests/swoole_curl/guzzle.phpt
+2 −2 tests/swoole_curl/multi/bug4393.phpt
+2 −2 tests/swoole_function/substr_unserialize.phpt
+9 −0 tests/swoole_global/closed_stdout.phpt
+67 −0 tests/swoole_http_server/max_input_vars.phpt
+1 −1 tests/swoole_http_server_coro/close_socket.phpt
+2 −1 tests/swoole_pdo_oracle/bug44301.phpt
+1 −0 tests/swoole_pdo_oracle/bug_33707.phpt
+2 −1 tests/swoole_pdo_oracle/pdo_oci_attr_autocommit_2.phpt
+0 −1 tests/swoole_pdo_sqlite/pdo_sqlite_createaggregate.phpt
+178 −0 tests/swoole_runtime/file_hook/iouring.phpt
+2 −3 tests/swoole_runtime/stream_select/base.phpt
+3 −3 tests/swoole_runtime/stream_select/blocked.phpt
+2 −2 thirdparty/multipart_parser.c
+105 −0 thirdparty/php/main/SAPI.h
+952 −394 thirdparty/php/standard/proc_open.cc
+49 −16 thirdparty/php/standard/proc_open.h
+499 −192 thirdparty/php/streams/plain_wrapper.c
+2 −1 thirdparty/php81/pdo_oci/oci_driver.c
+2 −1 thirdparty/php81/pdo_oci/oci_statement.c
+1 −1 thirdparty/php81/pdo_odbc/odbc_driver.c
+1 −1 thirdparty/php81/pdo_odbc/odbc_stmt.c
+1 −1 thirdparty/php81/pdo_pgsql/pgsql_driver.c
+1 −1 thirdparty/php81/pdo_pgsql/pgsql_statement.c
+660 −702 thirdparty/php81/pdo_sqlite/sqlite_driver.c
+318 −338 thirdparty/php81/pdo_sqlite/sqlite_statement.c
+0 −539 thirdparty/php83/Zend/zend_call_stack.cc
+0 −96 thirdparty/php83/Zend/zend_call_stack.h
+884 −0 thirdparty/php83/pdo_oci/oci_driver.c
+1,067 −0 thirdparty/php83/pdo_oci/oci_statement.c
+118 −0 thirdparty/php83/pdo_oci/php_pdo_oci_int.h
+604 −0 thirdparty/php83/pdo_odbc/odbc_driver.c
+866 −0 thirdparty/php83/pdo_odbc/odbc_stmt.c
+183 −0 thirdparty/php83/pdo_odbc/php_pdo_odbc_int.h
+1,341 −0 thirdparty/php83/pdo_pgsql/pgsql_driver.c
+72 −0 thirdparty/php83/pdo_pgsql/pgsql_driver_arginfo.h
+699 −0 thirdparty/php83/pdo_pgsql/pgsql_statement.c
+112 −0 thirdparty/php83/pdo_pgsql/php_pdo_pgsql_int.h
+80 −0 thirdparty/php83/pdo_sqlite/php_pdo_sqlite_int.h
+802 −0 thirdparty/php83/pdo_sqlite/sqlite_driver.c
+18 −0 thirdparty/php83/pdo_sqlite/sqlite_driver.stub.php
+34 −0 thirdparty/php83/pdo_sqlite/sqlite_driver_arginfo.h
+381 −0 thirdparty/php83/pdo_sqlite/sqlite_statement.c

0 comments on commit 566a62c

Please sign in to comment.