2022-07-15 09:03:05 +00:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
|
Thu Jul 14 12:51:28 UTC 2022 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
|
|
|
|
|
|
|
|
|
- Update to version 0.6.17
|
|
|
|
|
* Stream manager test with body by @TingDaoK in (#376)
|
|
|
|
|
* Added aws_http2_stream_write_data, allowing H2 data frames
|
|
|
|
|
to be written at any time by @justinboswell in (#338)
|
|
|
|
|
* H2 monitor by @TingDaoK in (#377)
|
|
|
|
|
- from version 0.6.16
|
|
|
|
|
* Build a local echo server and test against it. by @TingDaoK in (#373)
|
|
|
|
|
* More local host test by @TingDaoK in (#375)
|
|
|
|
|
* h2 stream callback not kill connection by @TingDaoK in (#364)
|
|
|
|
|
* Metric for manager by @TingDaoK in (#370)
|
|
|
|
|
|
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
2021-12-11 23:48:24 +00:00
|
|
|
-------------------------------------------------------------------
|
2022-05-23 06:30:31 +00:00
|
|
|
Thu May 19 11:30:18 UTC 2022 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
|
|
|
|
|
|
|
|
|
- Update to version 0.6.15
|
|
|
|
|
* Silence "variable set but not used" warnings by @graebm in (#374)
|
|
|
|
|
* refcount input stream by @TingDaoK in (#342)
|
|
|
|
|
- from version 0.6.14
|
|
|
|
|
* Update to latest builder by @bretambrose in (#368)
|
|
|
|
|
* Fix our CI ignores branches that have "/" in name by @TingDaoK in (#371)
|
|
|
|
|
* Flow control window update by @TingDaoK in (#372)
|
|
|
|
|
* HTTP/2 integration tests - Part 1 by @TingDaoK in (#365)
|
|
|
|
|
- from version 0.6.13
|
|
|
|
|
* Mark h2 tests as net tests
|
|
|
|
|
- from version 0.6.12
|
|
|
|
|
* Bugfix: the refcount for connection manager will pop up from zero
|
|
|
|
|
in some situation from the culling task, which will cause destroy
|
|
|
|
|
to happen twice and crash.
|
|
|
|
|
- from version 0.6.11
|
|
|
|
|
* Introduce HTTP/2 stream manager
|
|
|
|
|
|
|
|
|
|
-------------------------------------------------------------------
|
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
2021-12-11 23:48:24 +00:00
|
|
|
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)
|
|
|
|
|
|
2021-10-16 20:44:57 +00:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
|
Tue Oct 12 12:42:24 UTC 2021 - Jan Engelhardt <jengelh@inai.de>
|
|
|
|
|
|
|
|
|
|
- Trim conjecture and redundant metadata from description.
|
|
|
|
|
- Use cmake()/pkgconfig() as buildrequires. Update descriptions.
|
|
|
|
|
- Replace %-bin subpackage by just %, and lib%-devel by %-devel.
|
|
|
|
|
|
2021-10-12 10:14:36 +00:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
|
Tue Oct 12 09:55:26 UTC 2021 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
|
|
|
|
|
|
|
|
|
- Initial release
|
|
|
|
|
+ Version 0.6.7
|