You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@httpd.apache.org by Yann Ylavic <yl...@gmail.com> on 2015/11/20 16:38:38 UTC

Re: svn commit: r1715375 - /httpd/httpd/trunk/CHANGES

On Fri, Nov 20, 2015 at 4:24 PM,  <ic...@apache.org> wrote:
> Author: icing
> Date: Fri Nov 20 15:24:21 2015
> New Revision: 1715375
>
> URL: http://svn.apache.org/viewvc?rev=1715375&view=rev
> Log:
> updated CHANGES
>
> Modified:
>     httpd/httpd/trunk/CHANGES
>
> Modified: httpd/httpd/trunk/CHANGES
> URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/CHANGES?rev=1715375&r1=1715374&r2=1715375&view=diff
> ==============================================================================
> --- httpd/httpd/trunk/CHANGES [utf-8] (original)
> +++ httpd/httpd/trunk/CHANGES [utf-8] Fri Nov 20 15:24:21 2015
> @@ -4,6 +4,24 @@ Changes with Apache 2.5.0
>    *) mod_ssl: For the "SSLStaplingReturnResponderErrors off" case, make sure
>       to only staple responses with certificate status "good". [Kaspar Brand]
>
> +  *) mod_http2: incoming trailers (headers after request body) are properly
> +     forwarded to the processing engine. [Stefan Eissing]
> +
> +  *) mod_http2: new directive 'H2Push' to en-/disable HTTP/2 server
> +     pushes a server/virtual host. Pushes are initiated by the presence
> +     of 'Link:' headers with relation 'preload' on a response. [Stefan Eissing]
> +
> +  *) mod_http2: write performance of http2 improved for larger resources,
> +     especially static files. [Stefan Eissing]
> +
> +  *) core: if the first HTTP/1.1 request on a connection goes to a server that
> +     prefers different protocols, these protocols are announced in a Upgrade:
> +     header on the response, mentioning the preferred protocols.
> +     [Stefan Eissing]
> +
> +  *) mod_http2: new directive 'H2ModernTLSOnly' to enforce security
> +     requirements of RFC 7540 on TLS connections. [Stefan Eissing]
> +

This should rather be removed from trunk/CHANGES once backported to
2.4.x/CHANGES (and added when committed to trunk ;).


>    *) mod_http2: new directives 'H2TLSWarmUpSize' and 'H2TLSCoolDownSecs'
>       to control TLS record sizes during connection lifetime.
>
> @@ -12,8 +30,7 @@ Changes with Apache 2.5.0
>
>    *) core: add ap_get_protocol_upgrades() to retrieve the list of protocols
>       that a client could possibly upgrade to. Use in first request on a
> -     connection to announce protocol choices.
> -     [Stefan Eissing]
> +     connection to announce protocol choices. [Stefan Eissing]

Likewise.

>
>    *) mod_http2: reworked deallocation on connection shutdown and worker
>       abort. Separate parent pool for all workers. worker threads are joined
> @@ -29,8 +46,7 @@ Changes with Apache 2.5.0
>       Detailed examination of renegotiation is only done when these do not
>       match.
>       Renegotiation is 403ed when a master connection is present. Exact reason
> -     is given additionally in a request note.
> -     [Stefan Eissing]
> +     is given additionally in a request note. [Stefan Eissing]

Likewise.

Thanks,
Yann.

Re: svn commit: r1715375 - /httpd/httpd/trunk/CHANGES

Posted by Yann Ylavic <yl...@gmail.com>.
No pb ;)
The rationale is (I think) that next httpd (2.6/3) CHANGES shouldn't
contain the ones from the previous versions.

On Fri, Nov 20, 2015 at 4:45 PM, Stefan Eissing
<st...@greenbytes.de> wrote:
> Updated.
>
> Sorry, misunderstood the "delta" intention of the file.
>
>> Am 20.11.2015 um 16:38 schrieb Yann Ylavic <yl...@gmail.com>:
>>
>> On Fri, Nov 20, 2015 at 4:24 PM,  <ic...@apache.org> wrote:
>>> Author: icing
>>> Date: Fri Nov 20 15:24:21 2015
>>> New Revision: 1715375
>>>
>>> URL: http://svn.apache.org/viewvc?rev=1715375&view=rev
>>> Log:
>>> updated CHANGES
>>>
>>> Modified:
>>>    httpd/httpd/trunk/CHANGES
>>>
>>> Modified: httpd/httpd/trunk/CHANGES
>>> URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/CHANGES?rev=1715375&r1=1715374&r2=1715375&view=diff
>>> ==============================================================================
>>> --- httpd/httpd/trunk/CHANGES [utf-8] (original)
>>> +++ httpd/httpd/trunk/CHANGES [utf-8] Fri Nov 20 15:24:21 2015
>>> @@ -4,6 +4,24 @@ Changes with Apache 2.5.0
>>>   *) mod_ssl: For the "SSLStaplingReturnResponderErrors off" case, make sure
>>>      to only staple responses with certificate status "good". [Kaspar Brand]
>>>
>>> +  *) mod_http2: incoming trailers (headers after request body) are properly
>>> +     forwarded to the processing engine. [Stefan Eissing]
>>> +
>>> +  *) mod_http2: new directive 'H2Push' to en-/disable HTTP/2 server
>>> +     pushes a server/virtual host. Pushes are initiated by the presence
>>> +     of 'Link:' headers with relation 'preload' on a response. [Stefan Eissing]
>>> +
>>> +  *) mod_http2: write performance of http2 improved for larger resources,
>>> +     especially static files. [Stefan Eissing]
>>> +
>>> +  *) core: if the first HTTP/1.1 request on a connection goes to a server that
>>> +     prefers different protocols, these protocols are announced in a Upgrade:
>>> +     header on the response, mentioning the preferred protocols.
>>> +     [Stefan Eissing]
>>> +
>>> +  *) mod_http2: new directive 'H2ModernTLSOnly' to enforce security
>>> +     requirements of RFC 7540 on TLS connections. [Stefan Eissing]
>>> +
>>
>> This should rather be removed from trunk/CHANGES once backported to
>> 2.4.x/CHANGES (and added when committed to trunk ;).
>>
>>
>>>   *) mod_http2: new directives 'H2TLSWarmUpSize' and 'H2TLSCoolDownSecs'
>>>      to control TLS record sizes during connection lifetime.
>>>
>>> @@ -12,8 +30,7 @@ Changes with Apache 2.5.0
>>>
>>>   *) core: add ap_get_protocol_upgrades() to retrieve the list of protocols
>>>      that a client could possibly upgrade to. Use in first request on a
>>> -     connection to announce protocol choices.
>>> -     [Stefan Eissing]
>>> +     connection to announce protocol choices. [Stefan Eissing]
>>
>> Likewise.
>>
>>>
>>>   *) mod_http2: reworked deallocation on connection shutdown and worker
>>>      abort. Separate parent pool for all workers. worker threads are joined
>>> @@ -29,8 +46,7 @@ Changes with Apache 2.5.0
>>>      Detailed examination of renegotiation is only done when these do not
>>>      match.
>>>      Renegotiation is 403ed when a master connection is present. Exact reason
>>> -     is given additionally in a request note.
>>> -     [Stefan Eissing]
>>> +     is given additionally in a request note. [Stefan Eissing]
>>
>> Likewise.
>>
>> Thanks,
>> Yann.
>

Re: svn commit: r1715375 - /httpd/httpd/trunk/CHANGES

Posted by Stefan Eissing <st...@greenbytes.de>.
Updated. 

Sorry, misunderstood the "delta" intention of the file.

> Am 20.11.2015 um 16:38 schrieb Yann Ylavic <yl...@gmail.com>:
> 
> On Fri, Nov 20, 2015 at 4:24 PM,  <ic...@apache.org> wrote:
>> Author: icing
>> Date: Fri Nov 20 15:24:21 2015
>> New Revision: 1715375
>> 
>> URL: http://svn.apache.org/viewvc?rev=1715375&view=rev
>> Log:
>> updated CHANGES
>> 
>> Modified:
>>    httpd/httpd/trunk/CHANGES
>> 
>> Modified: httpd/httpd/trunk/CHANGES
>> URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/CHANGES?rev=1715375&r1=1715374&r2=1715375&view=diff
>> ==============================================================================
>> --- httpd/httpd/trunk/CHANGES [utf-8] (original)
>> +++ httpd/httpd/trunk/CHANGES [utf-8] Fri Nov 20 15:24:21 2015
>> @@ -4,6 +4,24 @@ Changes with Apache 2.5.0
>>   *) mod_ssl: For the "SSLStaplingReturnResponderErrors off" case, make sure
>>      to only staple responses with certificate status "good". [Kaspar Brand]
>> 
>> +  *) mod_http2: incoming trailers (headers after request body) are properly
>> +     forwarded to the processing engine. [Stefan Eissing]
>> +
>> +  *) mod_http2: new directive 'H2Push' to en-/disable HTTP/2 server
>> +     pushes a server/virtual host. Pushes are initiated by the presence
>> +     of 'Link:' headers with relation 'preload' on a response. [Stefan Eissing]
>> +
>> +  *) mod_http2: write performance of http2 improved for larger resources,
>> +     especially static files. [Stefan Eissing]
>> +
>> +  *) core: if the first HTTP/1.1 request on a connection goes to a server that
>> +     prefers different protocols, these protocols are announced in a Upgrade:
>> +     header on the response, mentioning the preferred protocols.
>> +     [Stefan Eissing]
>> +
>> +  *) mod_http2: new directive 'H2ModernTLSOnly' to enforce security
>> +     requirements of RFC 7540 on TLS connections. [Stefan Eissing]
>> +
> 
> This should rather be removed from trunk/CHANGES once backported to
> 2.4.x/CHANGES (and added when committed to trunk ;).
> 
> 
>>   *) mod_http2: new directives 'H2TLSWarmUpSize' and 'H2TLSCoolDownSecs'
>>      to control TLS record sizes during connection lifetime.
>> 
>> @@ -12,8 +30,7 @@ Changes with Apache 2.5.0
>> 
>>   *) core: add ap_get_protocol_upgrades() to retrieve the list of protocols
>>      that a client could possibly upgrade to. Use in first request on a
>> -     connection to announce protocol choices.
>> -     [Stefan Eissing]
>> +     connection to announce protocol choices. [Stefan Eissing]
> 
> Likewise.
> 
>> 
>>   *) mod_http2: reworked deallocation on connection shutdown and worker
>>      abort. Separate parent pool for all workers. worker threads are joined
>> @@ -29,8 +46,7 @@ Changes with Apache 2.5.0
>>      Detailed examination of renegotiation is only done when these do not
>>      match.
>>      Renegotiation is 403ed when a master connection is present. Exact reason
>> -     is given additionally in a request note.
>> -     [Stefan Eissing]
>> +     is given additionally in a request note. [Stefan Eissing]
> 
> Likewise.
> 
> Thanks,
> Yann.