SHA256
8
0
forked from pool/aws-c-http

Accepting request 937774 from home:glaubitz:branches:devel:libraries:c_c++

- Update to version 0.6.10
  * HTTP/2 Message support
    + Support HTTP/2 message type, instead of translating all the
      request to HTTP/2 format
    + BUGFIX: raise proper error when reaching max concurrent stream.
- from version 0.6.9
  * Const added to members, chunked trailer support to HTTP/1, HTTP/2 headers
    + HTTP2/ headers
      - Pseudo headers are pushed into the front of the array list, and other
        than that, it will be treated the same as normal headers
      - Trade off:
        * We know that push front to the array list is expensive. But, it should
          be used only few times, as you don't want to change pseudo headers a
  	  lot and there are at most 4 of them. More than that, we don't need to
  	  do the push front later when we need to send the headers into the wire.
        * The advantage of it is that we will have the mostly the same behavior
          as netty, which is used by Java SDK team already.
        * `add` will push the pseudo header to the front of the list when needed
          (the last header is NOT pseudo header)
    + Chunked trailer
      - Add chunked trailer support to HTTP/1
    + Const changes
      - const added to aws_socket_options
      - const added to aws_http_proxy_options
      - const added to aws_tls_connection_options
- from version 0.6.8
  * Removed OOM conditions/tests
    + Removed OOM test, since that's no longer allowed (#343)

OBS-URL: https://build.opensuse.org/request/show/937774
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/aws-c-http?expand=0&rev=3
This commit is contained in:
2021-12-11 23:48:24 +00:00
committed by Git OBS Bridge
parent 50a0c39dbf
commit e914b21c6a
4 changed files with 36 additions and 4 deletions

View File

@@ -1,3 +1,35 @@
-------------------------------------------------------------------
Thu Dec 9 12:16:46 UTC 2021 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
- Update to version 0.6.10
* HTTP/2 Message support
+ Support HTTP/2 message type, instead of translating all the
request to HTTP/2 format
+ BUGFIX: raise proper error when reaching max concurrent stream.
- from version 0.6.9
* Const added to members, chunked trailer support to HTTP/1, HTTP/2 headers
+ HTTP2/ headers
- Pseudo headers are pushed into the front of the array list, and other
than that, it will be treated the same as normal headers
- Trade off:
* We know that push front to the array list is expensive. But, it should
be used only few times, as you don't want to change pseudo headers a
lot and there are at most 4 of them. More than that, we don't need to
do the push front later when we need to send the headers into the wire.
* The advantage of it is that we will have the mostly the same behavior
as netty, which is used by Java SDK team already.
* `add` will push the pseudo header to the front of the list when needed
(the last header is NOT pseudo header)
+ Chunked trailer
- Add chunked trailer support to HTTP/1
+ Const changes
- const added to aws_socket_options
- const added to aws_http_proxy_options
- const added to aws_tls_connection_options
- from version 0.6.8
* Removed OOM conditions/tests
+ Removed OOM test, since that's no longer allowed (#343)
-------------------------------------------------------------------
Tue Oct 12 12:42:24 UTC 2021 - Jan Engelhardt <jengelh@inai.de>

View File

@@ -19,7 +19,7 @@
%define library_version 1.0.0
%define library_soversion 1_0_0
Name: aws-c-http
Version: 0.6.7
Version: 0.6.10
Release: 0
Summary: C99 implementation of the HTTP/1.1 and HTTP/2 specifications
License: Apache-2.0

3
v0.6.10.tar.gz Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:4413faf2b8f6a83c898bb535cf83542fa548d7ecc1acf681dc79b7959a07231a
size 394768

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:2244d1e26ce5b5f40f96e570b1c4332a07c645ef744644d5b90b089d3695ec3b
size 389939