Version 356

This commit is contained in:
Mohammad Nejati
2024-10-29 09:06:34 +00:00
committed by Mohammad Nejati
parent 71cea5c4d9
commit f42d178249
3 changed files with 21 additions and 2 deletions

View File

@ -1,3 +1,22 @@
Version 356:
* Added `error_code` overload for `basic_fields::insert()`
* Added overload for `websocket::stream::get_status` to query permessage-deflate status
* Fixed use-after-move in calls to `net::dispatch` within `http::basic_stream`, which caused `bad_executor` exceptions on timeouts
* Removed mutating operations in initiating functions
* Fixed cancellation handling in `teardown_tcp_op`
* Set `state_` in `basic_parser` before calling `on_finish_impl`
* Removed static specifier from `clamp` functions
* Addressed `-Wattributes` warnings in tests
* Addressed unreachable code warning in tests
* Added forward declaration headers for types in `beast::http` namespace
* Enabled `http::parser` to use `basic_fields::insert()` with `error_code` overload
* Applied `header_limit_` in `http::basic_parser` to trailer headers
* Improved `http::basic_parser` to return `http::error::header_limit` earlier
* Added support for modular boost build structure
--------------------------------------------------------------------------------
Version 355:
* awaitable examples are simplified

View File

@ -83,7 +83,7 @@ endfunction()
#
#-------------------------------------------------------------------------------
project (Beast VERSION 355)
project (Beast VERSION 356)
set_property (GLOBAL PROPERTY USE_FOLDERS ON)
option (Beast_BUILD_EXAMPLES "Build examples" ON)

View File

@ -20,7 +20,7 @@
This is a simple integer that is incremented by one every
time a set of code changes is merged to the develop branch.
*/
#define BOOST_BEAST_VERSION 355
#define BOOST_BEAST_VERSION 356
// A string describing BOOST_BEAST_VERSION, that can be used in http headers.
#define BOOST_BEAST_VERSION_STRING "Boost.Beast/" BOOST_STRINGIZE(BOOST_BEAST_VERSION)