Skip to content

Commit

Permalink
Merge branch 'master' into quic-latest
Browse files Browse the repository at this point in the history
* master:
  Fix the connection limit crash while using parents (#7604)
  Remove inline for detail::cache::CacheData::idAddr (#7592)
  Remove UnixNetVConnection::startEvent - not actually called. (#7596)
  Use return values to fix ubuntu release build error (#7591)
  Fix double destuct on Http2Stream termination (#7600)
  Add pointer/reference upcast function that is checked in debug builds. (#7582)
  Call constructors and destructors for H1/2 Session/Transaction via ClassAllocator (#7584)
  Add gold test for remap config .include directive. (#7589)
  Change the default value for verify.server.policy (#7587)
  Build the test library for tls_engine consistently (#7588)
  Generalize ALPN logic (#7555)
  Fix the final consumer write size from unchunked to chunked tunnel (#7577)
  Reactivate accept_no_activity_timeout (#7408)
  Tidy up session/transaction destruction process (#7571)
  Remove ProxyTransaction::set_proxy_ssn (#7567)
  Introduce TLSBasicSupport interface (#7556)
  Cleanup: Rename IOBufferReader of Http2ClientSession (#7569)
  Add a check for compress response, if from server and 304, then check cache for headers instead of the 304 response (#7564)
  Updates the STATUS file with all recent releases (#7566)
  Make Allocator.h less silly (no creepy "proto" object). (#6241)
  Cleanup: Remove unused member of Http2ClientSession (#7570)
  enable origin server session cache by default (#7537)
  Add tscontdestroy when transaction is closed and pacing rate is reset (#7572)
  Remove reference to CoreUtils (#7557)
  Remove unused enums from YamlSNIConfig struct. (#7565)
  Removes deprecated sni.yaml option: disable_h2 (#7547)
  This PR updates parent selection to limit the number of simultaneous (#7485)
  Fix KA header not checking strategy (#7483)
  Get rid of kruft LogObject copy constructor. (#7553)
  For TSHttpHdrEffectiveUrlBufGet(), include scheme for request to server URL. (#7545)
  Adding lower_ support to stats and bonding_slave data points for port status (#7560)
  Change cookie_remap plugin to allow use of pre-remap URL (and components). (#7519)
  check verify policy and properties (#7559)
  Fix parent.config to 504 not 502 on timeout (#7558)
  use SSL_CTX address as part of the lookup key (#7552)
  Add ALPN support on TLS Partial Blind Tunnel (#7511)
  Add server_name option to proxy.config.ssl.client.sni_policy (#7533)
  Fix a crash on origin session reuse (#7543)
  Removes the test plugins from the .spec file / RPM (#7551)
  Convert the inactive_client_timeout test to use Proxy Verifier (#7535)
  Fix ja3_fingerprint configure syntax (#7550)
  Fix asserts in multiplexer plugin. (#7532)
  parse expiration time and reload config at time out (#7281)
  Fix origin_session_reuse test (#7542)
  Fix tls_session_reuse test (#7541)
  Split SSL_CTX initialization logic into small functions (#7434)
  Remove dependency for SSL stuff from P_Net.h (#7531)
  Unify all the connect timeouts into one (#7335)
  Fix lua_states_stats Au test. (#7232)
  origin session reuse (#7479)
  Updating to use Proxy Verifier 2.1.0 (#7534)
  update the session reuse tests (#7529)
  • Loading branch information
maskit committed Mar 17, 2021
2 parents 99ff68f + d4fc16f commit be9837c
Show file tree
Hide file tree
Showing 142 changed files with 3,771 additions and 1,664 deletions.
31 changes: 24 additions & 7 deletions STATUS
Original file line number Diff line number Diff line change
@@ -1,17 +1,33 @@
Traffic Server 7.0 STATUS: -*-text-*-
Traffic Server 10.0 STATUS: -*-text-*-
Last modified at [$Date$]

The current version of this file can be found at:

* https://github.com/apache/trafficserver/blob/master/STATUS

Release history:
8.0.3 : Release on <TBD>, 2019
8.0.2 : Release on Jan 29th, 2019
8.0.1 : Release on Nov 29th, 2018
8.0.0 : Release on Sep 25th, 2018

7.1.7 : Released on <TBD>, 2019
9.0.1 : Release on Mar 4th, 2021
9.0.0 : Release on Dec 14th, 2020

8.1.1 : Released on Dec 2nd, 2020
8.1.0 : Released on Aug 28th, 2020

8.0.8 : Released on Jun 23rd, 2020
8.0.7 : Released on Apr 16th, 2020
8.0.6 : Released on Feb 29th, 2020
8.0.5 : Released on Aug 20th, 2019
8.0.4 : Released on Aug 13th, 2019
8.0.3 : Released on Mar 21st, 2019
8.0.2 : Released on Jan 29th, 2019
8.0.1 : Released on Nov 29th, 2018
8.0.0 : Released on Sep 25th, 2018

7.1.12 : Released on Dec 2nd, 2020
7.1.11 : Released on Jun 23rd, 2020
7.1.10 : Released on Apr 16th, 2020
7.1.9 : Released on Feb 29th, 2020
7.1.8 : Released on Aug 20th, 2019
7.1.7 : Released on Aug 13th, 2019
7.1.6 : Released on Jan 29th, 2019
7.1.5 : Released on Nov 24th, 2018
7.1.4 : Released on Aug 1st, 2018
Expand All @@ -20,6 +36,7 @@ Release history:
7.1.1 : Released on Sep 7th, 2017
7.1.0 : Released on Jul 24th, 2017

6.2.3 : Released on Aug 4th 2018 (EOL)
6.2.2 : Released on Aug 10th, 2016
6.2.1 : Released on Jan 20th, 2017
6.2.0 : Released on Jul 25th, 2016
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -1363,7 +1363,7 @@ AC_EGREP_CPP(yes, [
#endif
], [
AC_MSG_RESULT(yes)
AS_IF([test "x${enable_experimental_plugins}" = "xyes" && -z "$openssl_is_boringssl"], [
AS_IF([test "x${enable_experimental_plugins}" = "xyes" && test -z "$openssl_is_boringssl"], [
enable_ja3_plugin=yes
])
], [AC_MSG_RESULT(no)])
Expand Down

0 comments on commit be9837c

Please sign in to comment.