Skip to content

Commit

Permalink
upgrade civetweb & prometheus-cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
mpromonet committed Apr 30, 2023
1 parent 5afad8d commit 53f6e00
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion civetweb
Submodule civetweb updated 99 files
+25 −0 .github/workflows/cifuzz.yml
+42 −69 .travis.yml
+41 −2 CMakeLists.txt
+25 −2 CREDITS.md
+4 −0 LICENSE.md
+8 −12 Makefile
+43 −59 README.md
+33 −3 RELEASE_NOTES.md
+10 −1 SECURITY.md
+4 −2 VisualStudio/civetweb_lua/civetweb_lua.vcxproj
+3 −1 VisualStudio/civetweb_lua/civetweb_lua.vcxproj.filters
+2 −0 VisualStudio/lua_lib/lua_lib.vcxproj
+7 −1 VisualStudio/lua_lib/lua_lib.vcxproj.filters
+1 −1 VisualStudio/unit_test/unit_test.vcxproj
+1 −22 appveyor.yml
+1 −1 build
+3 −3 build.cmd
+5 −4 cmake/AddCCompilerFlag.cmake
+4 −4 cmake/AddCXXCompilerFlag.cmake
+11 −1 cmake/FindWinSock.cmake
+0 −31 cmake/check/c82fe8888aacfe784476112edd3878256d2e30bc.patch
+0 −27 cmake/check/check_run.patch
+0 −12 cmake/check/patch.cmake
+7 −0 cmake/civetweb-config.cmake.in
+12 −0 cmake/civetweb-cpp.pc.in
+13 −0 cmake/civetweb.pc.in
+0 −82 conan/build.py
+0 −11 conan/test_package/CMakeLists.txt
+0 −19 conan/test_package/conanfile.py
+0 −102 conan/test_package/test_package.cpp
+0 −14 conan/travis/build.sh
+0 −22 conan/travis/install.sh
+0 −89 conanfile.py
+3 −1 docs/Building.md
+1 −1 docs/Contribution.md
+10 −3 docs/Embedding.md
+1 −1 docs/Installing.md
+1 −1 docs/README.md
+33 −12 docs/UserManual.md
+36 −0 docs/api/mg_base64_X.md
+23 −36 docs/api/mg_callbacks.md
+1 −1 docs/api/mg_check_feature.md
+13 −2 docs/api/mg_error_data.md
+2 −1 docs/api/mg_exit_library.md
+1 −1 docs/api/mg_get_user_connection_data.md
+19 −13 docs/api/mg_init_library.md
+63 −0 docs/api/mg_match.md
+1 −1 docs/api/mg_md5.md
+1 −1 docs/api/mg_modify_passwords_file.md
+9 −0 docs/api/mg_set_auth_handler.md
+1 −1 docs/yaSSL.md
+5 −0 examples/README.md
+32 −0 examples/client/Makefile
+116 −0 examples/client/client.c
+10 −0 examples/embed_certificate/build.sh
+368 −0 examples/embed_certificate/ec_example.c
+2 −3 examples/embedded_c/embedded_c.c
+24 −0 examples/linux_ws_server_cpp/CMakeLists.txt
+17 −0 examples/linux_ws_server_cpp/README.md
+150 −0 examples/linux_ws_server_cpp/main.cc
+6 −6 examples/rest/Makefile
+3 −3 examples/rest/cJSON/cJSON.c
+2 −2 examples/rest/cJSON/cJSON.h
+99 −65 examples/rest/rest.c
+4 −0 examples/ws_server/build.sh
+192 −0 examples/ws_server/ws_server.c
+6 −1 format.bat
+7 −7 include/CivetServer.h
+129 −8 include/civetweb.h
+1 −1 resources/Makefile.in-duktape
+13 −2 resources/Makefile.in-lua
+9 −5 resources/cert/make_certs.sh
+1 −1 resources/check_defines.lua
+2 −1 resources/coverity_check.sh
+39 −10 src/CivetServer.cpp
+1,839 −795 src/civetweb.c
+1 −1 src/handle_form.inl
+52 −20 src/http2.inl
+70 −180 src/main.c
+262 −0 src/match.inl
+2 −1 src/md5.inl
+59 −29 src/mod_lua.inl
+19 −1 src/mod_mbedtls.inl
+1 −1 src/mod_zlib.inl
+22 −6 src/response.inl
+48 −0 src/sort.inl
+427 −0 src/third_party/lua_struct.c
+1 −0 test/access/.htpasswd
+16 −0 test/flush.php
+1 −1 test/lua_backbround_script_logging.lua
+1 −1 test/page.lp
+1 −1 test/page.lua
+2 −0 test/page2.lua
+7 −20 unittest/CMakeLists.txt
+1 −3 unittest/civetweb_check.h
+0 −3 unittest/main.c
+399 −84 unittest/private.c
+95 −1 unittest/public_func.c
+49 −157 unittest/public_server.c
2 changes: 1 addition & 1 deletion prometheus-cpp
Submodule prometheus-cpp updated 59 files
+2 −0 .bazelrc
+1 −0 .clang-format
+18 −4 .github/workflows/bazel-ci.yml
+1 −1 .github/workflows/cmake-ci.yml
+1 −1 .github/workflows/coverage.yml
+3 −3 CMakeLists.txt
+4 −5 README.md
+36 −17 bazel/civetweb.BUILD
+28 −15 bazel/repositories.bzl
+1 −0 cmake/googletest.imp
+0 −2 cmake/project-import-cmake/CMakeLists.txt
+1 −1 cmake/project-import-pkgconfig/CMakeLists.txt
+6 −0 core/CMakeLists.txt
+1 −0 core/benchmarks/CMakeLists.txt
+20 −0 core/benchmarks/info_bench.cc
+3 −1 core/include/prometheus/check_names.h
+7 −0 core/include/prometheus/client_metric.h
+0 −16 core/include/prometheus/detail/future_std.h
+4 −4 core/include/prometheus/family.h
+2 −2 core/include/prometheus/gauge.h
+7 −4 core/include/prometheus/histogram.h
+68 −0 core/include/prometheus/info.h
+1 −0 core/include/prometheus/metric_type.h
+3 −1 core/include/prometheus/registry.h
+11 −6 core/include/prometheus/summary.h
+7 −1 core/src/check_names.cc
+3 −0 core/src/detail/builder.cc
+5 −16 core/src/detail/hash.h
+5 −3 core/src/family.cc
+9 −1 core/src/histogram.cc
+11 −0 core/src/info.cc
+25 −6 core/src/registry.cc
+1 −1 core/src/serializer.cc
+5 −2 core/src/summary.cc
+15 −0 core/src/text_serializer.cc
+2 −1 core/tests/CMakeLists.txt
+10 −1 core/tests/builder_test.cc
+50 −0 core/tests/check_label_name_test.cc
+22 −0 core/tests/check_metric_name_test.cc
+0 −34 core/tests/check_names_test.cc
+30 −7 core/tests/family_test.cc
+2 −2 core/tests/raii_locale.h
+16 −0 core/tests/registry_test.cc
+1 −2 core/tests/serializer_test.cc
+9 −0 core/tests/text_serializer_test.cc
+1 −1 core/tests/utils_test.cc
+5 −0 pull/CMakeLists.txt
+1 −2 pull/include/prometheus/exposer.h
+3 −4 pull/src/endpoint.cc
+3 −4 pull/src/exposer.cc
+6 −7 pull/tests/integration/integration_test.cc
+7 −1 pull/tests/integration/sample_server.cc
+3 −5 pull/tests/internal/base64_test.cc
+5 −0 push/CMakeLists.txt
+6 −0 push/include/prometheus/gateway.h
+18 −5 push/src/curl_wrapper.cc
+2 −0 push/src/curl_wrapper.h
+6 −3 push/src/gateway.cc
+3 −0 push/tests/integration/sample_client.cc

0 comments on commit 53f6e00

Please sign in to comment.