Skip to content

Commit be9837c

Browse files
committed
Merge branch 'master' into quic-latest
* 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)
2 parents 99ff68f + d4fc16f commit be9837c

File tree

142 files changed

+3771
-1664
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

142 files changed

+3771
-1664
lines changed

STATUS

Lines changed: 24 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,33 @@
1-
Traffic Server 7.0 STATUS: -*-text-*-
1+
Traffic Server 10.0 STATUS: -*-text-*-
22
Last modified at [$Date$]
33

44
The current version of this file can be found at:
55

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

88
Release history:
9-
8.0.3 : Release on <TBD>, 2019
10-
8.0.2 : Release on Jan 29th, 2019
11-
8.0.1 : Release on Nov 29th, 2018
12-
8.0.0 : Release on Sep 25th, 2018
13-
14-
7.1.7 : Released on <TBD>, 2019
9+
9.0.1 : Release on Mar 4th, 2021
10+
9.0.0 : Release on Dec 14th, 2020
11+
12+
8.1.1 : Released on Dec 2nd, 2020
13+
8.1.0 : Released on Aug 28th, 2020
14+
15+
8.0.8 : Released on Jun 23rd, 2020
16+
8.0.7 : Released on Apr 16th, 2020
17+
8.0.6 : Released on Feb 29th, 2020
18+
8.0.5 : Released on Aug 20th, 2019
19+
8.0.4 : Released on Aug 13th, 2019
20+
8.0.3 : Released on Mar 21st, 2019
21+
8.0.2 : Released on Jan 29th, 2019
22+
8.0.1 : Released on Nov 29th, 2018
23+
8.0.0 : Released on Sep 25th, 2018
24+
25+
7.1.12 : Released on Dec 2nd, 2020
26+
7.1.11 : Released on Jun 23rd, 2020
27+
7.1.10 : Released on Apr 16th, 2020
28+
7.1.9 : Released on Feb 29th, 2020
29+
7.1.8 : Released on Aug 20th, 2019
30+
7.1.7 : Released on Aug 13th, 2019
1531
7.1.6 : Released on Jan 29th, 2019
1632
7.1.5 : Released on Nov 24th, 2018
1733
7.1.4 : Released on Aug 1st, 2018
@@ -20,6 +36,7 @@ Release history:
2036
7.1.1 : Released on Sep 7th, 2017
2137
7.1.0 : Released on Jul 24th, 2017
2238

39+
6.2.3 : Released on Aug 4th 2018 (EOL)
2340
6.2.2 : Released on Aug 10th, 2016
2441
6.2.1 : Released on Jan 20th, 2017
2542
6.2.0 : Released on Jul 25th, 2016

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1363,7 +1363,7 @@ AC_EGREP_CPP(yes, [
13631363
#endif
13641364
], [
13651365
AC_MSG_RESULT(yes)
1366-
AS_IF([test "x${enable_experimental_plugins}" = "xyes" && -z "$openssl_is_boringssl"], [
1366+
AS_IF([test "x${enable_experimental_plugins}" = "xyes" && test -z "$openssl_is_boringssl"], [
13671367
enable_ja3_plugin=yes
13681368
])
13691369
], [AC_MSG_RESULT(no)])

0 commit comments

Comments
 (0)