You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by wk...@apache.org on 2022/09/20 13:28:29 UTC

[trafficserver] branch os_pkey_cnf_reload updated (c8e1c937e -> fcd9137ce)

This is an automated email from the ASF dual-hosted git repository.

wkaras pushed a change to branch os_pkey_cnf_reload
in repository https://gitbox.apache.org/repos/asf/trafficserver.git


 discard c8e1c937e Fix an error on SSL config reload (plus some cleanup).
 discard 7411d66ac Hack fix for release asserts in TS_LIFECYCLE_SSL_SECRET_HOOK handling.
 discard fd27ac8a6 General cleanup of the SSLSecret code.
     add 405875ad1 Allow HEAD req to be served from cached GET (#9066)
     add 40ad42513 Add HEAD requests to slice plugin (#9061)
     add c58edbb6b Adds efficient IP range matching to HRW conditions (#9031)
     add a07f66872 coverity 1497452: Uninitialized pointer read (#9075)
     add 676240544 Make README a Markdown Doc, Add Badges (#9077)
     add 79adaf378 dns error logging to diags (#9018)
     add 0b921a157 Fix strerror_r() usage in ts::Strerror class. (#9078)
     add 22d116060 Updating build_h3_tools.sh for OpenSSL 1.1.1q+quic (#9083)
     add 943911844 better logic for checking if a server allows storing (#9092)
     add be7583f8e Update doc max size reloadable/overridable flags (#9082)
     add feb7f1e36 Remove intermediate buffer in PluginVC (#8698)
     add 40e8335c3 Move Cleanup.h from plugins/xdebug to incude/tscpp/api . (#9080)
     add 697593ae1 General cleanup of the SSLSecret code.
     add 610ef8396 Hack fix for release asserts in TS_LIFECYCLE_SSL_SECRET_HOOK handling.
     add fcd9137ce Review changes.

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (c8e1c937e)
            \
             N -- N -- N   refs/heads/os_pkey_cnf_reload (fcd9137ce)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 Makefile.am                                        |   2 +
 README                                             | 251 ------------------
 README.md                                          | 285 +++++++++++++++++++++
 doc/admin-guide/files/records.config.en.rst        |   7 +
 doc/admin-guide/plugins/header_rewrite.en.rst      |  15 ++
 {plugins/xdebug => include/tscpp/api}/Cleanup.h    |   0
 include/tscpp/api/Makefile.am                      |   1 +
 include/tscpp/util/Strerror.h                      |  34 ++-
 iocore/dns/DNS.cc                                  |  41 ++-
 iocore/net/P_SSLConfig.h                           |   2 +-
 plugins/experimental/slice/Config.h                |   1 +
 plugins/experimental/slice/server.cc               |  17 +-
 plugins/experimental/slice/slice.cc                |   7 +-
 plugins/header_rewrite/Makefile.inc                |   2 +
 plugins/header_rewrite/condition.cc                |   4 +
 plugins/header_rewrite/conditions.cc               |  95 +++++--
 plugins/header_rewrite/conditions.h                |   6 +-
 .../ipranges_helper.cc}                            |  40 ++-
 .../{factory.h => ipranges_helper.h}               |  32 ++-
 plugins/header_rewrite/matcher.h                   |  57 ++++-
 plugins/header_rewrite/ruleset.cc                  |   4 +-
 plugins/xdebug/Makefile.inc                        |   1 -
 plugins/xdebug/xdebug.cc                           |   2 +-
 proxy/PluginVC.cc                                  | 240 ++++++-----------
 proxy/PluginVC.h                                   |  10 +-
 proxy/http/HttpTransact.cc                         |   6 +-
 proxy/http/HttpTransactHeaders.cc                  |   9 +-
 src/tscpp/util/Makefile.am                         |   1 +
 .../tscpp/util/unit_tests/test_Strerror.cc         |  18 +-
 tests/gold_tests/cache/cache-control.test.py       |  22 ++
 .../gold_tests/cache/cache-request-method.test.py  |  17 ++
 .../cache/replay/cache-control-pragma.replay.yaml  | 218 ++++++++++++++++
 ...eplay.yaml => head_with_get_cached.replay.yaml} | 197 ++++++--------
 tools/build_h3_tools.sh                            |  38 ++-
 34 files changed, 1036 insertions(+), 646 deletions(-)
 delete mode 100644 README
 create mode 100644 README.md
 rename {plugins/xdebug => include/tscpp/api}/Cleanup.h (100%)
 copy plugins/{lua/ts_lua_io.c => header_rewrite/ipranges_helper.cc} (59%)
 copy plugins/header_rewrite/{factory.h => ipranges_helper.h} (69%)
 copy plugins/background_fetch/headers.h => src/tscpp/util/unit_tests/test_Strerror.cc (68%)
 create mode 100644 tests/gold_tests/cache/replay/cache-control-pragma.replay.yaml
 copy tests/gold_tests/cache/replay/{post_with_post_caching_enabled.replay.yaml => head_with_get_cached.replay.yaml} (60%)