Just in time for the holidays, a major new Taylor Swift album Boost library release just dropped:
Boost verison 1.81.0 released
Release managers: Marshall Clow and Glen Fernandes
From the announcement:
New Libraries
URL:A library for parsing, modifying, and printing URLs using only C++11, from Vinnie Falco and Alan de Freitas. Features include fast compilation, strong invariants, and strict compliance using a memory-friendly approach.Updated Libraries
Asio:
Added theconsign
completion token adapter, which can be used to attach additional values to a completion handler. Addedany_completion_handler<>
, which can be used to type-erase completion handlers. Addedexperimental::co_composed
to enable lightweight implementations of user-defined asynchronous operations using C++20 coroutines. Add range-basedexperimental::make_parallel_group()
overloads. Addedany_completion_executor
, a type-erased wrapper for executors that are associated with completion handlers. Added missingcontext
query to use_future's executor. Added nothrow constructor overloads toexecution::any_executor<>
andany_io_executor
. Optimised representation of emptyexecution::any_executor
objects to improve the performance of copy and move operations. Added anassociated_cancellation_slot
specialisation forstd::reference_wrapper
. Changed I/O objects to return their executors by const reference. Changed associated to use deduced return types for all two-argumentget
functions. Fixedspawn
implementation to catch unhandled exceptions and rethrow them outside of the spawned "thread". Fixedspawn
to ensure the completion handler is dispatched through the correct executor. Fixed cleanup of of terminal-statespawn
"thread" objects. Fixedspawn
andco_spawn
implementations to dispatch cancellation handlers on the correct executor. Changed semantics of 'dispatch' to mean the executor is used as-is. Deprecated theexecution::execute
customisation point and sender/receiver facilities. Added a C++11parallel_group
example. Fixed example code to not use the deprecatedresolve
conversions. Fixed an ambiguity inexperimental::channel_traits
specialisations. Added a specialised channel implementation for the forR(error_code)
signature. Madecancelled()
public on theasync_compose
'self' object. Added io_executor_type and get_io_executor to theasync_compose
'self' object. Fixed implementation ofrelease()
for Windows overlapped handles. Enabled deferred awaiting forexperimental::coro
, regularisedexperimental::use_coro
, and fixed allocator handling. Cleaned upexperimental::promise
and made it an asynchronous operation object. Constrainedpost
/defer
overloads on ability to requireblocking.never
. Changed descriptor implementation to fall back tofcntl
ifioctl
fails withENOTTY
when setting non-blocking mode. Fixed Xcode deprecation warnings related to use ofsprintf
. Fixed the arguments passed toselect_reactor::run
when it is run on an internal thread. Fixed compilation errors whenBOOST_ASIO_DISABLE_SMALL_BLOCK_RECYCLING
is defined. Updated detection of C++20 coroutine support on clang 14 and later. Changed standard library feature detection to always enablestd::invoke_result
when targeting C++17 or later. Fixed detection of return type deduction with MSVC. Updated the asynchronous operation requirements to relax the requirements on the associated executor. Added io_uring to the implementation notes. Consult the Revision History for further details. Beast:
Addbuffers_generator
Addbeast::http::message_generator
Addedbuffer_ref
, so beast buffers can be used with asio. Support for per-operation cancellation C++20 awaitable examples. websocket per-message compression options websocket timeout option api multiple content length error Support for default-completion and rebind Container Hash:
Major update. The specializations ofboost::hash
have been removed; it now always callshash_value
. Support forBOOST_HASH_NO_EXTENSIONS
has been removed. The extensions are always enabled. All standard containers are now supported. This includesstd::forward_list
and the unordered associative containers. User-defined containers (types that havebegin()
andend()
member functions that return iterators) are now supported out of the box. Described structs and classes (those annotated withBOOST_DESCRIBE_STRUCT
orBOOST_DESCRIBE_CLASS
) are now supported out of the box.hash_combine
has been improved. The performance (and quality, as a result of the above change) of string hashing has been improved.boost::hash
for strings now passes SMHasher in 64 bit mode. The documentation has been substantially revised to reflect the changes. Core:
empty_value
members are now marked asconstexpr
. Addedfclose_deleter
, a deleter that callsstd::fclose
on a pointer tostd::FILE
. Bit manipulation utilities inboost/core/bit.hpp
now explicitly require unsigned integers on input. (#129)bit_width
now returnsint
instead of a value of the input argument type. This follows resolution of LWG3656. Describe:
To allow the inclusion ofenumerators.hpp
,bases.hpp
, andmembers.hpp
when the option-pedantic
is used, the invocation ofBOOST_DESCRIBE_ENUM
has been moved frommodifiers.hpp
into a separate header,modifier_description.hpp
. As a consequence,modifiers.hpp
no longer includesenum.hpp
. Code that has been relying on this implicit inclusion may fail, and will need to be fixed to includeenum.hpp
. Filesystem:
Deprecated:path
construction, assignment and appending from containers of characters, such asstd::vector<char>
orstd::list<wchar_t>
, is deprecated in v3 and removed in v4. Please use string types or iterators instead. Deprecated:boost/filesystem/path_traits.hpp
header is deprecated and will be removed in a future release. The header contained implementation details ofpath
and should not be used in user's code. Previously deprecated APIs will now generate compilation warnings on use. To suppress these warnings,BOOST_FILESYSTEM_ALLOW_DEPRECATED
macro can be defined when compiling user's code. Fixed compilation due to a missing include on POSIX systems that do not support*at
APIs. (#250) On Windows, fixedweakly_canonical
failing with anERROR_INVALID_FUNCTION
error code if the path started with the "\\?\" prefix. (#247) Added support forstd::string_view
,boost::string_view
andboost::container::string
(as well as respectivewchar_t
counterparts) inpath
constructors, assignment and appending operations. (#208)path
constructors, assignment and appending operations taking a pair of iterators will no longer accept iterators with value types that are not one of the supported path character types. On Windows, deduplicated files are now reported as regular files rather than reparse files. (#262) Fusion:
Addedfusion::identity_view
(PR#240) Added support for associative sequences onfusion::transform_view
(PR#239) Fixed compilation for the case whenfusion::reverse_view
used with an associative sequence (PR#237) Fixed Clang 13 -Wdeprecated-copy warnings (PR#261) A small dependency reorganization. Nowboost::ref
andboost::noncopyable
are used from Boost.Core (PR#249) Histogram:
Major update. Added newaccumulators::fraction
to compute fractions, their variance, and confidence intervals Added interval computers for fractions:utility::clopper_pearson
,utility::wilson_interval
,utility::jeffreys_interval
,utility::wald_interval
which can compute intervals with arbitrary confidence level Addedutility::confidence_level
andutility::deviation
types to pass confidence levels as probabilities or in multiples of standard deviation for all interval computers, respectively Fixed internalsub_array
andspan
in C++20 Iterator:
function_output_iterator
now supports perfect forwarding of the assigned values to the wrapped function object. (PR#73) Fixed compilation of constructing afunction_input_iterator
from result of post-incrementing anotherfunction_input_iterator
. (#75) The result of post-incrementing an iterator based oniterator_facade
now supportsoperator->
.(it++)->foo
is equivalent to(*it++).foo
, which was supported before. JSON:
Addedobject::stable_erase
. Addedparse
overload forstd::istream
andoperator>>
forvalue
. Added rvalue ref-qualified accessors forvalue
. Conversion traits were redesigned. Added conversion support for described classes and enums,std::optional
,std::variant
, and null-like types (includingstd::nullptr_t
,std::nullopt_t
, andstd::monotype
). Added non-throwing conversion fromvalue
to user types. Locale:
Major update with some breaking changes. C++11 support is now required, support for C++03 and earlier is dropped Some enums have been converted to enum classes - Avoids name clashes Replace-sICU_LINK_LOCALE
&-sICU_LINK
by fine-grained configuration options as done in Boost.RegEx Fix detection of libiconv allowing Boost.Locale to be build (again) on some platforms Remove use of and support forstd::auto_ptr
Make thecodecvt
usingwchar_t
on Windows assume/use UTF-16 enconding Performance improvements: Makebasic_format
,date_time
&hold_ptr
movable, Fix use of format cache Make Boost.Locale compatible with more ICU versions (especially the tests) Fix RTTI definitions for some classes (visibility issues) Fix compatibility of the ICU backend with some libc++ versions Fix return value of some operators to correctly return non-const*this
Fix int-overflow on negative roll of years indate_time
Handle or suppress many warnings which makes the build log cleaner Add support for more Windows codepages Fix support for Windows codepages like ISO-2022-JP Nowide:
Fix build failure of tests on MSVC Stacktrace:
The library does not use COM initialization any more. Thanks to Alex Guteniev for the bug report, clarifications and PR PR#123! The library now may useBOOST_STACKTRACE_BACKTRACE_INCLUDE_FILE
macro value while detecting the libbacktrace availability in b2, thanks to Ben Gemmill for the bug report #115. AddedBOOST_STACKTRACE_BACKTRACE_FORCE_STATIC
macro to force a single backtrace_state static instance while using the libbacktrace. Thanks to the Rasmus Thomsen for the bug report #118! Avoid unresolved references when including only theboost/stacktrace/stacktrace.hpp
header. Thanks to the Long Deng for the bug report #116. Optimized stacktrace printing by not callingstrlen
on Windows platforms. Thanks to Alex Guteniev for the bug report #122 PFR: STLInterfaces:
Fix two ill-formediterator_interface
operators in pre-C++20 iterators with aconst
value_type
. System:
The macroBOOST_SYSTEM_DISABLE_THREADS
can now be defined to disable the use of<mutex>
(e.g. on single-threaded libstdc++). Addedvalue_type
,error_type
,in_place_value
,in_place_error
toresult<>
. Addedemplace
toresult<>
. Unordered:
Major update. Added fast containersboost::unordered_flat_map
andboost::unordered_flat_set
based on open addressing. Added CTAD deduction guides for all containers. Added missing constructors as specified in LWG issue 2713. Variant2:
Added support forboost::json::value_from
andboost::json::value_to
.
Add a Comment
Comments are closed.