[trafficserver] branch 9.0.x updated: Bug fixes to h2 buffering

2020-04-16 Thread bcall
This is an automated email from the ASF dual-hosted git repository.

bcall pushed a commit to branch 9.0.x
in repository https://gitbox.apache.org/repos/asf/trafficserver.git


The following commit(s) were added to refs/heads/9.0.x by this push:
 new 99de822  Bug fixes to h2 buffering
99de822 is described below

commit 99de8227aee7c5d93adb5d5bbb59ecea6e0e7c5a
Author: Masaori Koshiba 
AuthorDate: Fri Apr 10 10:38:20 2020 -0700

Bug fixes to h2 buffering

(cherry picked from commit 50441b39e6631389ef95c4133f06bbf94544879c)
---
 doc/admin-guide/files/records.config.en.rst |  3 +-
 mgmt/RecordsConfig.cc   |  2 +-
 proxy/http2/HTTP2.cc|  2 +-
 proxy/http2/Http2ClientSession.cc   | 12 --
 proxy/http2/Http2ClientSession.h|  2 +
 proxy/http2/Http2ConnectionState.cc | 57 +
 proxy/http2/Http2ConnectionState.h  |  7 +++-
 proxy/http2/Http2Stream.cc  | 31 
 proxy/http2/Http2Stream.h   |  5 ++-
 9 files changed, 93 insertions(+), 28 deletions(-)

diff --git a/doc/admin-guide/files/records.config.en.rst 
b/doc/admin-guide/files/records.config.en.rst
index 3b1270e..66c1de8 100644
--- a/doc/admin-guide/files/records.config.en.rst
+++ b/doc/admin-guide/files/records.config.en.rst
@@ -3682,7 +3682,7 @@ HTTP/2 Configuration
:ts:cv:`proxy.config.http2.min_concurrent_streams_in`.
To disable, set to zero (``0``).
 
-.. ts:cv:: CONFIG proxy.config.http2.initial_window_size_in INT 1048576
+.. ts:cv:: CONFIG proxy.config.http2.initial_window_size_in INT 65535
:reloadable:
 
The initial window size for inbound connections.
@@ -3812,7 +3812,6 @@ HTTP/2 Configuration
Clients that send smaller window increments lower than this limit will be 
immediately disconnected with an error
code of ENHANCE_YOUR_CALM.
 
-
 HTTP/3 Configuration
 
 
diff --git a/mgmt/RecordsConfig.cc b/mgmt/RecordsConfig.cc
index 311c3de..82cdd70 100644
--- a/mgmt/RecordsConfig.cc
+++ b/mgmt/RecordsConfig.cc
@@ -1286,7 +1286,7 @@ static const RecordElement RecordsConfig[] =
   ,
   {RECT_CONFIG, "proxy.config.http2.max_active_streams_in", RECD_INT, "0", 
RECU_DYNAMIC, RR_NULL, RECC_STR, "^[0-9]+$", RECA_NULL}
   ,
-  {RECT_CONFIG, "proxy.config.http2.initial_window_size_in", RECD_INT, 
"1048576", RECU_DYNAMIC, RR_NULL, RECC_STR, "^[0-9]+$", RECA_NULL}
+  {RECT_CONFIG, "proxy.config.http2.initial_window_size_in", RECD_INT, 
"65535", RECU_DYNAMIC, RR_NULL, RECC_STR, "^[0-9]+$", RECA_NULL}
   ,
   {RECT_CONFIG, "proxy.config.http2.max_frame_size", RECD_INT, "16384", 
RECU_DYNAMIC, RR_NULL, RECC_STR, "^[0-9]+$", RECA_NULL}
   ,
diff --git a/proxy/http2/HTTP2.cc b/proxy/http2/HTTP2.cc
index e23c44d..6616f03 100644
--- a/proxy/http2/HTTP2.cc
+++ b/proxy/http2/HTTP2.cc
@@ -718,7 +718,7 @@ uint32_t Http2::min_concurrent_streams_in  = 10;
 uint32_t Http2::max_active_streams_in  = 0;
 bool Http2::throttling = false;
 uint32_t Http2::stream_priority_enabled= 0;
-uint32_t Http2::initial_window_size= 1048576;
+uint32_t Http2::initial_window_size= 65535;
 uint32_t Http2::max_frame_size = 16384;
 uint32_t Http2::header_table_size  = 4096;
 uint32_t Http2::max_header_list_size   = 4294967295;
diff --git a/proxy/http2/Http2ClientSession.cc 
b/proxy/http2/Http2ClientSession.cc
index 18133bb..2ecfa2e 100644
--- a/proxy/http2/Http2ClientSession.cc
+++ b/proxy/http2/Http2ClientSession.cc
@@ -385,11 +385,9 @@ Http2ClientSession::main_event_handler(int event, void 
*edata)
 break;
 
   case VC_EVENT_WRITE_READY:
-retval = 0;
-break;
-
   case VC_EVENT_WRITE_COMPLETE:
-// Seems as this is being closed already
+this->connection_state.restart_streams();
+
 retval = 0;
 break;
 
@@ -678,6 +676,12 @@ Http2ClientSession::_should_do_something_else()
   return (this->_n_frame_read & 0x7F) == 0;
 }
 
+int64_t
+Http2ClientSession::write_avail()
+{
+  return this->write_buffer->write_avail();
+}
+
 NetVConnection *
 Http2ClientSession::get_netvc() const
 {
diff --git a/proxy/http2/Http2ClientSession.h b/proxy/http2/Http2ClientSession.h
index 12be63d..dfdb34c 100644
--- a/proxy/http2/Http2ClientSession.h
+++ b/proxy/http2/Http2ClientSession.h
@@ -134,6 +134,8 @@ public:
   // Record history from Http2ConnectionState
   void remember(const SourceLocation , int event, int reentrant = 
NO_REENTRANT);
 
+  int64_t write_avail();
+
   // noncopyable
   Http2ClientSession(Http2ClientSession &) = delete;
   Http2ClientSession =(const Http2ClientSession &) = delete;
diff --git a/proxy/http2/Http2ConnectionState.cc 
b/proxy/http2/Http2ConnectionState.cc
index f8f57bf..5386e5a 100644
--- a/proxy/http2/Http2ConnectionState.cc
+++ b/proxy/http2/Http2ConnectionState.cc
@@ -166,6 +166,12 @@ rcv_data_frame(Http2ConnectionState , const 
Http2Frame )
   

[trafficserver] branch master updated (0debba2 -> 50441b3)

2020-04-16 Thread bcall
This is an automated email from the ASF dual-hosted git repository.

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


from 0debba2  Added bonded interface support to system stats plugin (#6668)
 add 50441b3  Bug fixes to h2 buffering

No new revisions were added by this update.

Summary of changes:
 doc/admin-guide/files/records.config.en.rst |  3 +-
 mgmt/RecordsConfig.cc   |  2 +-
 proxy/http2/HTTP2.cc|  2 +-
 proxy/http2/Http2ClientSession.cc   | 12 --
 proxy/http2/Http2ClientSession.h|  2 +
 proxy/http2/Http2ConnectionState.cc | 57 +
 proxy/http2/Http2ConnectionState.h  |  7 +++-
 proxy/http2/Http2Stream.cc  | 31 
 proxy/http2/Http2Stream.h   |  5 ++-
 9 files changed, 93 insertions(+), 28 deletions(-)



[trafficserver] branch master updated (ac5db54 -> 0debba2)

2020-04-16 Thread eze
This is an automated email from the ASF dual-hosted git repository.

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


from ac5db54  Fix memory leak of HPACK
 add 0debba2  Added bonded interface support to system stats plugin (#6668)

No new revisions were added by this update.

Summary of changes:
 plugins/experimental/system_stats/system_stats.c | 92 
 1 file changed, 64 insertions(+), 28 deletions(-)



[trafficserver] branch master updated: Fix memory leak of HPACK

2020-04-16 Thread masaori
This is an automated email from the ASF dual-hosted git repository.

masaori pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/trafficserver.git


The following commit(s) were added to refs/heads/master by this push:
 new ac5db54  Fix memory leak of HPACK
ac5db54 is described below

commit ac5db54d6f725fa0c64a931054dc15ea671f3dc1
Author: Masaori Koshiba 
AuthorDate: Thu Apr 16 09:33:23 2020 +0900

Fix memory leak of HPACK
---
 proxy/http2/HPACK.cc | 1 +
 1 file changed, 1 insertion(+)

diff --git a/proxy/http2/HPACK.cc b/proxy/http2/HPACK.cc
index 4dcf729..2ebaaee 100644
--- a/proxy/http2/HPACK.cc
+++ b/proxy/http2/HPACK.cc
@@ -463,6 +463,7 @@ HpackDynamicTable::_mime_hdr_gc()
   } else {
 if (this->_mhdr_old->fields_count() == 0) {
   this->_mhdr_old->destroy();
+  delete this->_mhdr_old;
   this->_mhdr_old = nullptr;
 }
   }



[trafficserver-site] branch asf-site updated: Automatic Site Publish by Buildbot

2020-04-16 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/trafficserver-site.git


The following commit(s) were added to refs/heads/asf-site by this push:
 new 07789fc  Automatic Site Publish by Buildbot
07789fc is described below

commit 07789fc90281366c184c3f28ed05c75bcdd000d6
Author: buildbot 
AuthorDate: Thu Apr 16 17:40:25 2020 +

Automatic Site Publish by Buildbot
---
 content/downloads.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/content/downloads.html b/content/downloads.html
index 021d929..4e844ed 100644
--- a/content/downloads.html
+++ b/content/downloads.html
@@ -68,7 +68,7 @@ scheme. The goal is to release patch releases frequently, and 
minor releases as
 Within the major versions, all such patch and minor releases are all 
compatible.
 When downloading from a mirror, please be sure to https://www.apache.org/info/verification.html;>verify the hash and OpenPGP
 compatible signature.  To validate
-the PGP signatures the https://archive.apache.org/dist/trafficserver/KEYS;>public keys from the 
release manager
+the PGP signatures the https://www.apache.org/dist/trafficserver/KEYS;>public keys from the 
release manager
 will be needed.  You can also
 https://archive.apache.org/dist/trafficserver/;>browse through all 
releases
 and hash signatures.



[trafficserver-site] branch asf-site updated: Updated the KEYS URL

2020-04-16 Thread bcall
This is an automated email from the ASF dual-hosted git repository.

bcall pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/trafficserver-site.git


The following commit(s) were added to refs/heads/asf-site by this push:
 new 669dc9a  Updated the KEYS URL
669dc9a is described below

commit 669dc9ac1577581952d6125c3170d033e9e9908b
Author: Bryan Call 
AuthorDate: Thu Apr 16 10:40:01 2020 -0700

Updated the KEYS URL
---
 source/markdown/downloads.mdtext | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/source/markdown/downloads.mdtext b/source/markdown/downloads.mdtext
index 7344a5b..97f8d54 100644
--- a/source/markdown/downloads.mdtext
+++ b/source/markdown/downloads.mdtext
@@ -27,7 +27,7 @@ Within the major versions, all such patch and minor releases 
are all compatible.
 
 When downloading from a mirror, please be sure to [verify the hash and OpenPGP
 compatible signature](https://www.apache.org/info/verification.html).  To 
validate
-the PGP signatures the [public keys from the release 
manager](https://archive.apache.org/dist/trafficserver/KEYS)
+the PGP signatures the [public keys from the release 
manager](https://www.apache.org/dist/trafficserver/KEYS)
 will be needed.  You can also
 [browse through all releases](https://archive.apache.org/dist/trafficserver/)
 and hash signatures.



[trafficserver-site] branch asf-site updated: Automatic Site Publish by Buildbot

2020-04-16 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/trafficserver-site.git


The following commit(s) were added to refs/heads/asf-site by this push:
 new 0ddc7b9  Automatic Site Publish by Buildbot
0ddc7b9 is described below

commit 0ddc7b9ad4b0f3c91c73b54c263c4cd723ead3fb
Author: buildbot 
AuthorDate: Thu Apr 16 15:57:00 2020 +

Automatic Site Publish by Buildbot
---
 content/downloads.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/content/downloads.html b/content/downloads.html
index 2e9dc18..021d929 100644
--- a/content/downloads.html
+++ b/content/downloads.html
@@ -61,7 +61,7 @@
 
   
 
-  The latest stable release of Apache Traffic Server is 8.0.7, 
released on 2020-04-20.
+  The latest stable release of Apache Traffic Server is 8.0.7, 
released on 2020-04-16.
 In addition, we continue to support the v7.1.x LTS release train, currently 
v7.1.10
 which was released on 2020-04-16. We follow the http://semver.org;>Semantic Versioning
 scheme. The goal is to release patch releases frequently, and minor releases 
as needed.



[trafficserver-site] branch asf-site updated: Fixed the date for the 8.0.7 release

2020-04-16 Thread bcall
This is an automated email from the ASF dual-hosted git repository.

bcall pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/trafficserver-site.git


The following commit(s) were added to refs/heads/asf-site by this push:
 new c60dedb  Fixed the date for the 8.0.7 release
c60dedb is described below

commit c60dedbe9a85b5361a5aea7ec85b18bece583c2e
Author: Bryan Call 
AuthorDate: Thu Apr 16 08:56:42 2020 -0700

Fixed the date for the 8.0.7 release
---
 source/markdown/downloads.mdtext | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/source/markdown/downloads.mdtext b/source/markdown/downloads.mdtext
index 2175235..7344a5b 100644
--- a/source/markdown/downloads.mdtext
+++ b/source/markdown/downloads.mdtext
@@ -19,7 +19,7 @@ RSS:   /rss/releases.rss
 
 
 
-The latest stable release of Apache Traffic Server is 8.0.7, released on 
2020-04-20.
+The latest stable release of Apache Traffic Server is 8.0.7, released on 
2020-04-16.
 In addition, we continue to support the v7.1.x LTS release train, currently 
v7.1.10
 which was released on 2020-04-16. We follow the [Semantic 
Versioning](http://semver.org)
 scheme. The goal is to release patch releases frequently, and minor releases 
as needed.



[trafficserver-site] branch asf-site updated: Automatic Site Publish by Buildbot

2020-04-16 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/trafficserver-site.git


The following commit(s) were added to refs/heads/asf-site by this push:
 new f1580a7  Automatic Site Publish by Buildbot
f1580a7 is described below

commit f1580a74eac03efed3bdcdeb4e80d792d13887b0
Author: buildbot 
AuthorDate: Thu Apr 16 15:50:33 2020 +

Automatic Site Publish by Buildbot
---
 content/downloads.html | 38 +++---
 content/index.html |  3 +++
 2 files changed, 22 insertions(+), 19 deletions(-)

diff --git a/content/downloads.html b/content/downloads.html
index c9c4dfa..2e9dc18 100644
--- a/content/downloads.html
+++ b/content/downloads.html
@@ -61,9 +61,9 @@
 
   
 
-  The latest stable release of Apache Traffic Server is 8.0.6, 
released on 2020-02-29.
-In addition, we continue to support the v7.1.x LTS release train, currently 
v7.1.9
-which was released on 2020-02-29. We follow the http://semver.org;>Semantic Versioning
+  The latest stable release of Apache Traffic Server is 8.0.7, 
released on 2020-04-20.
+In addition, we continue to support the v7.1.x LTS release train, currently 
v7.1.10
+which was released on 2020-04-16. We follow the http://semver.org;>Semantic Versioning
 scheme. The goal is to release patch releases frequently, and minor releases 
as needed.
 Within the major versions, all such patch and minor releases are all 
compatible.
 When downloading from a mirror, please be sure to https://www.apache.org/info/verification.html;>verify the hash and OpenPGP
@@ -72,25 +72,25 @@ the PGP signatures the https://archive.apache.org/dist/trafficserver/KE
 will be needed.  You can also
 https://archive.apache.org/dist/trafficserver/;>browse through all 
releases
 and hash signatures.
-Current v8.x Release -- 8.0.6 
-Apache Traffic Server v8.0.6 was released on August 20th, 2019.
- [https://www.apache.org/dist/trafficserver/trafficserver-8.0.6.tar.bz2.asc;>PGP]
- [https://www.apache.org/dist/trafficserver/trafficserver-8.0.6.tar.bz2.sha512;>SHA512]
-https://www.apache.org/dyn/closer.cgi/trafficserver/trafficserver-8.0.6.tar.bz2;
 class="download_ts">Traffic Server 8.0.6
-v8.0.6 is our latest stable release. Additional details for this release 
are in the
-https://raw.githubusercontent.com/apache/trafficserver/8.0.x/CHANGELOG-8.0.6;>CHANGELOG
-and the the related https://github.com/apache/trafficserver/milestone/35?closed=1;>Github 
Issues and PRs.
+Current v8.x Release -- 8.0.7 
+Apache Traffic Server v8.0.7 was released on April 16th, 2020.
+ [https://www.apache.org/dist/trafficserver/trafficserver-8.0.7.tar.bz2.asc;>PGP]
+ [https://www.apache.org/dist/trafficserver/trafficserver-8.0.7.tar.bz2.sha512;>SHA512]
+https://www.apache.org/dyn/closer.cgi/trafficserver/trafficserver-8.0.7.tar.bz2;
 class="download_ts">Traffic Server 8.0.7
+v8.0.7 is our latest stable release. Additional details for this release 
are in the
+https://raw.githubusercontent.com/apache/trafficserver/8.0.x/CHANGELOG-8.0.7;>CHANGELOG
+and the the related https://github.com/apache/trafficserver/milestone/37?closed=1;>Github 
Issues and PRs.
 For details on the v8.0.x release, please see
 https://cwiki.apache.org/confluence/display/TS/What's+New+in+v8.0.x">8.0.x
 News. There are also
 details about https://cwiki.apache.org/confluence/display/TS/Upgrading+to+v8.0;>upgrading
 to 8.x.
-Current v7.x Release -- 7.1.9 
-Apache Traffic Server v7.1.9 was released on August 20th, 2019.
- [https://www.apache.org/dist/trafficserver/trafficserver-7.1.9.tar.bz2.asc;>PGP]
- [https://www.apache.org/dist/trafficserver/trafficserver-7.1.9.tar.bz2.sha512;>SHA512]
-https://www.apache.org/dyn/closer.cgi/trafficserver/trafficserver-7.1.9.tar.bz2;
 class="download_ts">Traffic Server 7.1.9
-v7.1.9 is our latest stable release. Additional details for this release 
are in the
-https://raw.githubusercontent.com/apache/trafficserver/7.1.x/CHANGELOG-7.1.9;>CHANGELOG
-and the the related https://github.com/apache/trafficserver/milestone/36?closed=1;>Github 
Issues and PRs.
+Current v7.x Release -- 7.1.10 
+Apache Traffic Server v7.1.10 was released on April 16th, 2020.
+ [https://www.apache.org/dist/trafficserver/trafficserver-7.1.10.tar.bz2.asc;>PGP]
+ [https://www.apache.org/dist/trafficserver/trafficserver-7.1.10.tar.bz2.sha512;>SHA512]
+https://www.apache.org/dyn/closer.cgi/trafficserver/trafficserver-7.1.10.tar.bz2;
 class="download_ts">Traffic Server 7.1.10
+v7.1.10 is our latest stable release. Additional details for this release 
are in the
+https://raw.githubusercontent.com/apache/trafficserver/7.1.x/CHANGELOG-7.1.10;>CHANGELOG
+and the the related https://github.com/apache/trafficserver/milestone/39?closed=1;>Github 
Issues and PRs.
 For details on the v7.1.x release train, please see
 https://cwiki.apache.org/confluence/display/TS/What's+New+in+v7.1.x">7.1.x
 News. 

[trafficserver-site] branch asf-site updated: Added 7.1.10 and 8.0.7 releases

2020-04-16 Thread bcall
This is an automated email from the ASF dual-hosted git repository.

bcall pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/trafficserver-site.git


The following commit(s) were added to refs/heads/asf-site by this push:
 new 628e095  Added 7.1.10 and 8.0.7 releases
628e095 is described below

commit 628e095f671a679f118acbc624f0ee1c784fe481
Author: Bryan Call 
AuthorDate: Thu Apr 16 08:50:06 2020 -0700

Added 7.1.10 and 8.0.7 releases
---
 source/markdown/downloads.mdtext | 38 +++---
 source/markdown/index.html   |  3 +++
 2 files changed, 22 insertions(+), 19 deletions(-)

diff --git a/source/markdown/downloads.mdtext b/source/markdown/downloads.mdtext
index 18cf68c..2175235 100644
--- a/source/markdown/downloads.mdtext
+++ b/source/markdown/downloads.mdtext
@@ -19,9 +19,9 @@ RSS:   /rss/releases.rss
 
 
 
-The latest stable release of Apache Traffic Server is 8.0.6, released on 
2020-02-29.
-In addition, we continue to support the v7.1.x LTS release train, currently 
v7.1.9
-which was released on 2020-02-29. We follow the [Semantic 
Versioning](http://semver.org)
+The latest stable release of Apache Traffic Server is 8.0.7, released on 
2020-04-20.
+In addition, we continue to support the v7.1.x LTS release train, currently 
v7.1.10
+which was released on 2020-04-16. We follow the [Semantic 
Versioning](http://semver.org)
 scheme. The goal is to release patch releases frequently, and minor releases 
as needed.
 Within the major versions, all such patch and minor releases are all 
compatible.
 
@@ -32,33 +32,33 @@ will be needed.  You can also
 [browse through all releases](https://archive.apache.org/dist/trafficserver/)
 and hash signatures.
 
-# Current v8.x Release -- 8.0.6 # {#8.0.6}
+# Current v8.x Release -- 8.0.7 # {#8.0.7}
 
- Apache Traffic Server v8.0.6 was released on August 20th, 2019.
- 
[[`PGP`](https://www.apache.org/dist/trafficserver/trafficserver-8.0.6.tar.bz2.asc)]
- 
[[`SHA512`](https://www.apache.org/dist/trafficserver/trafficserver-8.0.6.tar.bz2.sha512)]
+ Apache Traffic Server v8.0.7 was released on April 16th, 2020.
+ 
[[`PGP`](https://www.apache.org/dist/trafficserver/trafficserver-8.0.7.tar.bz2.asc)]
+ 
[[`SHA512`](https://www.apache.org/dist/trafficserver/trafficserver-8.0.7.tar.bz2.sha512)]
 
- https://www.apache.org/dyn/closer.cgi/trafficserver/trafficserver-8.0.6.tar.bz2;
 class="download_ts">Traffic Server 8.0.6
+ https://www.apache.org/dyn/closer.cgi/trafficserver/trafficserver-8.0.7.tar.bz2;
 class="download_ts">Traffic Server 8.0.7
 
-v8.0.6 is our latest stable release. Additional details for this release are 
in the
-[CHANGELOG](https://raw.githubusercontent.com/apache/trafficserver/8.0.x/CHANGELOG-8.0.6)
-and the the related [Github Issues and 
PRs](https://github.com/apache/trafficserver/milestone/35?closed=1).
+v8.0.7 is our latest stable release. Additional details for this release are 
in the
+[CHANGELOG](https://raw.githubusercontent.com/apache/trafficserver/8.0.x/CHANGELOG-8.0.7)
+and the the related [Github Issues and 
PRs](https://github.com/apache/trafficserver/milestone/37?closed=1).
 
 For details on the v8.0.x release, please see
 [8.0.x 
News](https://cwiki.apache.org/confluence/display/TS/What's+New+in+v8.0.x). 
There are also
 details about [upgrading to 
8.x](https://cwiki.apache.org/confluence/display/TS/Upgrading+to+v8.0).
 
-# Current v7.x Release -- 7.1.9 # {#7.1.9}
+# Current v7.x Release -- 7.1.10 # {#7.1.10}
 
- Apache Traffic Server v7.1.9 was released on August 20th, 2019.
- 
[[`PGP`](https://www.apache.org/dist/trafficserver/trafficserver-7.1.9.tar.bz2.asc)]
- 
[[`SHA512`](https://www.apache.org/dist/trafficserver/trafficserver-7.1.9.tar.bz2.sha512)]
+ Apache Traffic Server v7.1.10 was released on April 16th, 2020.
+ 
[[`PGP`](https://www.apache.org/dist/trafficserver/trafficserver-7.1.10.tar.bz2.asc)]
+ 
[[`SHA512`](https://www.apache.org/dist/trafficserver/trafficserver-7.1.10.tar.bz2.sha512)]
 
- https://www.apache.org/dyn/closer.cgi/trafficserver/trafficserver-7.1.9.tar.bz2;
 class="download_ts">Traffic Server 7.1.9
+ https://www.apache.org/dyn/closer.cgi/trafficserver/trafficserver-7.1.10.tar.bz2;
 class="download_ts">Traffic Server 7.1.10
 
-v7.1.9 is our latest stable release. Additional details for this release are 
in the
-[CHANGELOG](https://raw.githubusercontent.com/apache/trafficserver/7.1.x/CHANGELOG-7.1.9)
-and the the related [Github Issues and 
PRs](https://github.com/apache/trafficserver/milestone/36?closed=1).
+v7.1.10 is our latest stable release. Additional details for this release are 
in the
+[CHANGELOG](https://raw.githubusercontent.com/apache/trafficserver/7.1.x/CHANGELOG-7.1.10)
+and the the related [Github Issues and 
PRs](https://github.com/apache/trafficserver/milestone/39?closed=1).
 
 For details on the v7.1.x release train, please see
 [7.1.x 
News](https://cwiki.apache.org/confluence/display/TS/What's+New+in+v7.1.x). 
There are 

svn commit: r38993 - in /release/trafficserver: trafficserver-8.0.7.tar.bz2 trafficserver-8.0.7.tar.bz2.asc trafficserver-8.0.7.tar.bz2.sha512

2020-04-16 Thread bcall
Author: bcall
Date: Thu Apr 16 15:20:53 2020
New Revision: 38993

Log:
Release 8.0.7

Added:
release/trafficserver/trafficserver-8.0.7.tar.bz2   (with props)
release/trafficserver/trafficserver-8.0.7.tar.bz2.asc   (with props)
release/trafficserver/trafficserver-8.0.7.tar.bz2.sha512

Added: release/trafficserver/trafficserver-8.0.7.tar.bz2
==
Binary file - no diff available.

Propchange: release/trafficserver/trafficserver-8.0.7.tar.bz2
--
svn:mime-type = application/x-bzip2

Added: release/trafficserver/trafficserver-8.0.7.tar.bz2.asc
==
Binary file - no diff available.

Propchange: release/trafficserver/trafficserver-8.0.7.tar.bz2.asc
--
svn:mime-type = application/pgp-signature

Added: release/trafficserver/trafficserver-8.0.7.tar.bz2.sha512
==
--- release/trafficserver/trafficserver-8.0.7.tar.bz2.sha512 (added)
+++ release/trafficserver/trafficserver-8.0.7.tar.bz2.sha512 Thu Apr 16 
15:20:53 2020
@@ -0,0 +1 @@
+f74ef3bba1d0a2a115e5e04158a3f12d6a1defdea8d970f673cdbe445604382b71915e97013b75b276032a227696bd8e044917cb3db0e3e576684f3d2836fe64
 *trafficserver-8.0.7.tar.bz2




svn commit: r38992 - in /release/trafficserver: trafficserver-7.1.10.tar.bz2 trafficserver-7.1.10.tar.bz2.asc trafficserver-7.1.10.tar.bz2.sha512

2020-04-16 Thread bcall
Author: bcall
Date: Thu Apr 16 15:19:28 2020
New Revision: 38992

Log:
Release 7.1.10

Added:
release/trafficserver/trafficserver-7.1.10.tar.bz2   (with props)
release/trafficserver/trafficserver-7.1.10.tar.bz2.asc   (with props)
release/trafficserver/trafficserver-7.1.10.tar.bz2.sha512

Added: release/trafficserver/trafficserver-7.1.10.tar.bz2
==
Binary file - no diff available.

Propchange: release/trafficserver/trafficserver-7.1.10.tar.bz2
--
svn:mime-type = application/x-bzip2

Added: release/trafficserver/trafficserver-7.1.10.tar.bz2.asc
==
Binary file - no diff available.

Propchange: release/trafficserver/trafficserver-7.1.10.tar.bz2.asc
--
svn:mime-type = application/pgp-signature

Added: release/trafficserver/trafficserver-7.1.10.tar.bz2.sha512
==
--- release/trafficserver/trafficserver-7.1.10.tar.bz2.sha512 (added)
+++ release/trafficserver/trafficserver-7.1.10.tar.bz2.sha512 Thu Apr 16 
15:19:28 2020
@@ -0,0 +1 @@
+30b415bf05accc6764ec9d35991e2124981bf5e8d830ea570d08c80c5116a0a8f6f2004d169cf6acb2a712c31715f1e9228b1fd03b0fd148eee76dbc3908
 *trafficserver-7.1.10.tar.bz2