Version 354

This commit is contained in:
Mohammad Nejati
2024-05-31 14:52:32 +00:00
committed by Mohammad Nejati
parent 74d28c030d
commit b5d7c9998b
3 changed files with 24 additions and 2 deletions

View File

@ -1,3 +1,25 @@
Version 354:
* `ssl_stream` and `flat_stream` are deprecated (Use `net::ssl::stream` instead)
* `net::ssl::stream` is canonical in examples and snippets
* `ssl_stream` does not use `flat_stream`
* Add `SSL/TLS Shutdown Procedure` section to documentation
* Add HTTP status code 418 ("I'm a teapot")
* `websocket::stream::read_size_hint()` does not exceed read_message_max
* Fix underflow of `bytes_transferred` in websocket partial write operations
* Fix error handling of SSL/TLS shutdown operations in examples
* Fix handling of expired timers in `basic_stream::ops::transfer_op`
* Fix ambiguity in `test::basic_stream` constructor overloads
* Fix partial parsing of the final chunk in `http::parser`
* Fix dereferenced null pointer warning in `test::immediate_executor`
* Fix warnings in tests
* Fix OpenSSL builds in GHA CI and Drone CI
* Fix `test::immediate_executor` type traits
* Refactor Jamfiles to limit the scope of definitions
* Expand CI matrix
--------------------------------------------------------------------------------
Version 353:
* Fix unreachable code warning in `buffers_cat.hpp`

View File

@ -83,7 +83,7 @@ endfunction()
#
#-------------------------------------------------------------------------------
project (Beast VERSION 353)
project (Beast VERSION 354)
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 353
#define BOOST_BEAST_VERSION 354
// 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)