Platform | File | SHA256 Hash | |
---|---|---|---|
Unix | boost_1_86_0.tar.bz2 | 1bed88e40401b2cb7a1f76d4bab499e352fa4d0c5f31c0dbae64e24d34d7513b 1bed88e404....4d34d7513b 1bed8....7513b | |
boost_1_86_0.tar.gz | 2575e74ffc3ef1cd0babac2c1ee8bdb5782a0ee672b1912da40e5b4b591ca01f 2575e74ffc....4b591ca01f 2575e....ca01f | ||
Windows | boost_1_86_0.7z | 413ee9d5754d0ac5994a3bf70c3b5606b10f33824fdd56cf04d425f2fc6bb8ce 413ee9d575....f2fc6bb8ce 413ee....bb8ce | |
boost_1_86_0.zip | cd20a5694e753683e1dc2ee10e2d1bb11704e65893ebcc6ced234ba68e5d8646 cd20a5694e....a68e5d8646 cd20a....d8646 |
Version 1.86.0
August 14th, 2024 16:07 GMT
New Libraries
- No new libraries.
Updated Libraries
-
Atomic:
-
Use
futex(2)
system call on OpenBSD since recent OpenBSD versions have removed support forsyscall(2)
.
-
Use
-
Beast:
-
API Changes
-
Added HTTP status code 418
I'm a teapot
.
-
Added HTTP status code 418
-
Fixes
-
Narrowing conversion in
read_size_hint_db()
. - Overloads that are ambiguous when using default completion tokens.
-
Misplaced static_assert in
http::basic_fields
move-assignment operator. -
Underflow of
bytes_transferred
in WebSocket partial write operations. -
websocket::stream::read_size_hint()
does not exceedread_message_max
. - Various warnings in tests.
- Error handling in SSL shutdown operations in examples.
- Annotate fallthrough case in zlib.
-
Handling of expired timers in
basic_stream::ops::transfer_op
. -
Ambiguity in
test::basic_stream
constructor overloads. -
Partial parsing of the final chunk in
http::parser
.
-
Narrowing conversion in
-
Improvements
-
Graceful shutdown in
server_flex_awaitable
example. - Simplified awaitable examples.
- Added fuzzing targets.
-
Remove superfluous uses of
std::bind
in some examples. -
ssl_stream
does not useflat_stream
.
-
Graceful shutdown in
-
Documentation
-
ssl_stream
andflat_stream
marked as deprecated. -
net::ssl::stream
is canonical in snippets and examples. -
Added
SSL/TLS Shutdown Procedure
section.
-
-
Acknowledgements
- tyler92, Ruslan Zakirov, Orgad Shaneh, Alexander Kernozhitsky
-
API Changes
-
Charconv:
- Fixed support for PPC64LE architecture.
-
Fixed support for platforms like Alpine linux that provide the
<quadmath.h>
header but not the compiled library. -
Fixed first character pattern matching in
from_chars
for integer types. - Fixed overflow detection for integers with base greater than 10.
-
Added native support for
std::float16_t
andstd::bfloat16_t
instead of using interchange formats.
-
Cobalt:
- Added support for asio::cancel_after
-
Made
asio::deferred
co_await-able, because it's asio's default token -
Added
noop
utility - Added experimental support for stackful coroutines/fibers
- Fixed movability of channel & coroutine types
-
Compat:
-
Added
bind_front.hpp
,bind_back.hpp
,invoke.hpp
,mem_fn.hpp
,integer_sequence.hpp
andtype_traits.hpp
. -
Added
function_ref.hpp
.
-
Added
-
Container:
-
Fixed bugs/issues:
- GitHub #285: "devector<>::push_front asserts after clear()".
- GitHub #280: "Several containers don't support non-movable types when move assigning".
- GitHub #279: "small_vector cannot go back to use stack space".
- GitHub #277: "Remove dep on boost::static_assert".
- GitHub #275: "Compilation fails if custom key comparison is used".
- GitHub #273: "flat_map/vector crashes on appends (memory corruption)".
- GitHub #269: "flat_multimap::emplace not sorting elements under GCC".
- GitHub #266: "small_vector<T> is misaligned on the stack in 32 bits".
- GitHub #259: "Global variables".
- GitHub #245: "flat_tree::insert ordered range doesn't assert sorting".
- GitHub #241: "flat_map should support same interface as std::map".
-
Fixed bugs/issues:
-
Core:
-
Added a
boost/core/pointer_in_range.hpp
header with apointer_in_range
function template to check if a pointer is within a given range. -
Fixed
type_name
for abstract classes. (#172) -
Fixed
boost/core/type_name.hpp
compilation error with MSVC with disabled nativewchar_t
type. (#173) -
Added a workaround for an MSVC bug
causing
empty_value
compilation errors when it is used with a nested class. (PR#175)
-
Added a
-
CRC:
- C++03 is no longer supported; a C++11 compiler is required. (This includes GCC 4.6 or later, and MSVC 10.0 (VS 2010) or later.)
- Removed dependencies on Array, Config, Integer, and TypeTraits. The library is now standalone.
-
Filesystem:
-
is_empty
operation is now better protected against concurrent filesystem modifications. -
On POSIX systems,
is_empty
now indicates error if invoked on a file other than a regular file or a directory. -
On Windows, fixed
file_size
andis_empty
operating on symlinks rather than the files the symlinks refer to. (#313) -
directory_entry::refresh
no longer throws an exception if the file referenced by the entry doesn't exist. This makesdirectory_entry::status
anddirectory_entry::symlink_status
, as well as methods based on them, behave similarly to the equivalent standalone operations. The fact that the file does not exist is still indicated via theerror_code
returned by the correspondingdirectory_entry::refresh
overload, or can be seen by testing if the file type returned bydirectory_entry::status
ordirectory_entry::symlink_status
calls isfile_type::file_not_found
. (#314) -
Fixed
weakly_canonical
testing path elements for existence relative to the current path instead of the base path specified in the call, if the input path was a relative path. -
On Windows, fixed
weakly_canonical
producing incorrect result path when the input path started with "..". (#311)
-
-
Format:
- C++03 is no longer supported; a C++11 compiler is required. (This includes GCC 4.7 or later, and MSVC 12.0 (VS 2013) or later.)
-
Function:
- Removed dependency on Boost.TypeTraits.
-
Brought back the
argN_type
typedefs that were accidentally lost in 1.85.
-
GIL:
-
Added
-
Added
tell()
anderror()
functions toistream_device
andostream_device
classes (PR#747).
-
Added
- Changed
- Fixed
-
Acknowledgements
- Christoph Gringmuth, Christopher Kormanyos, nicolacandussi, Dirk Stolle, Olzhas Zhumabek
-
Added
-
Graph:
- Major update: C++14 is the new minimum standard; this was partly dictated by dependencies (at least to C++11) and partly by choice. If you require support for an older standard, please contact the maintainer.
- Remove direct dependency on Boost.Regex.
- Fix several compilation errors caused by not explicitly including common headers.
-
isomorphism
: Fix docs, ignorevertex_max_invariant
parameter in favour of cheaply calculating upper exclusive bound, fix bug with Associative Property Map, improve space efficiency from linear in the size of the maximum invariant to linear in the size of g1. -
boykov_kolmogorov_max_flow
: Fix named parameter overload. -
adj_list_edge_iterator
: Fix maybe-uninitialized warnings. -
hawick_circuits
: Add a parameter to optionally limit the depth of the search, causing a potentially suboptimal answer to be returned early. -
disjoint_sets
: Improve performance oflink_sets
by removing redundant lookup of set representatives. -
maximum_adjacency_search
: Refactor and more tests. -
property
: UseBOOST_ATTRIBUTE_NO_UNIQUE_ADDRESS
to remove wasted space. -
labeled_graph
: Fixremove_labeled_vertex
so that it actually removes the label too. -
r_c_shortest_paths
: Fix bug that the single-solution variant did not always return the shortest path. -
read_graphviz
: Fix stack overflow (oss-fuzz issue 66719) and non-keyword subgraph parsing. - Many miscellaneous improvements: broken links, typos, etc.
- Interprocess:
- Intrusive:
-
JSON:
- Support for GCC versions older than version 5.0 is deprecated and will stop in Boost 1.88.0.
-
source_location
parameter was added to throwing accessor functions. - Parse option to tolerate invalid UTF-16 surrogate pairs, and produce WTF-8.
-
Added accessor functions that return
system::result
. - Handle missing error case in direct parsing.
-
LexicalCast:
-
Fixed conversion of
std::basic_string_view
andboost::basic_string_view
containing one or more\0
characters. Issue was introduced in 1.85.0.
-
Fixed conversion of
-
leaf:
- More optimal verbose_diagnostic_info implementation.
- Bug fixes.
- Added [[nodiscard]] to class result<>.
-
Locale:
-
Add support for custom allocators in
conv::utf_to_utf
- Don't build examples by default
-
Add support for custom allocators in
-
Log:
-
Added a workaround for
windres.exe
issue, when it is used in CMake to compile event log resource files on MinGW-w64. (PR#231)
-
Added a workaround for
-
Math:
- Correct Bessel function results at infinity, see 1143.
- Improve Non Central T numerical stability, see scipy20693.
-
Correct
float_next
/float_prior
behaviour at infinity. - Prevent spurious underflow in non-central beta, see scipy20693.
- Add improvement to Heuman Lambda precision.
- Improve Skew Normal root finding, see 1120.
- Lots of minor fixes and improved code coverage.
- Multiprecision:
-
MySQL:
-
The long-deprecated functions
query
,start_query
,execute_statement
andstart_statement_execution
(and their async equivalents) have been removed. -
Breaking changes to experimental APIs:
-
The
identifier
class (client-side SQL formatting) has been removed. Use the new format specifiers feature, instead. - The required interface for custom formatters has been changed to accomodate the new format specifiers API.
-
any_connection::async_connect
now requires that itsconnect_params
argument be kept alive until the operation completes. The overload taking aconst connect_params*
has been removed. -
character_set::name
is now aconst char*
instead of astring_view
, as MySQL character set names can't contain NULL characters. -
any_connection
internal buffer is now limited to 64MB. If you need to read or write rows bigger than that, increaseany_connection_params::max_buffer_size
.connection
and their helper typedefs are not limited. -
Renamed
any_connection_params::initial_read_buffer_size
toinitial_buffer_size
. -
Renamed
pool_params::initial_read_buffer_size
toinitial_buffer_size
.
-
The
- New experimental API: pipelines. Pipelines can increase efficiency by coalescing several requests in a single network packet. Pipelines can be used to run text queries, prepare, execute and close statements, reset session state and set the connection's character set.
-
Client-side SQL formatting now supports ranges out of the box. Formatting
can be further customized using the new
sequence
function. Use cases like batch inserts and batch lookups can be significantly simplified using this functionality. -
Client-side SQL formatting now supports format specifiers which modify
how values are formatted.
{:i}
formats a string as a dynamic SQL identifiers, and{:r}
outputs a raw unescaped -
The static interface (
static_results
andstatic_execution_state
) now supports Boost.Pfr types usingpfr_by_name
andpfr_by_position
. Addedunderlying_row_t
to support such types. -
date
anddatetime
can now be constructed from and converted to C++20std::chrono::local_time
. -
Added
any_connection_params::max_buffer_size
, which allows to set a limit to the connection's internal buffer. -
Added
is_fatal_error
, which allows users can now distinguish between fatal (which require closing and re-opening the connection) and non-fatal error codes. -
Added
formattable_ref
, a type-erased reference type that can refer to any type satisfying theFormattable
concept. -
Fixed an ODR violation under MSVC which could cause crashes in release
builds when using Boost.MySQL with other code also using
asio::coroutine
in different translation units.
-
The long-deprecated functions
-
Odeint:
-
Added CMake Option
BOOST_NUMERIC_ODEINT_NO_ADAPTORS
to reduce dependencies, see 82 - Fixed CMake detection of MPI.
-
Added CMake Option
-
Process:
- Moved the old boost.process to v1 subfolder and inline namespace. deprecated process/*.hpp v1 headers
- Turned v2 into a compile library.
- Fixed usage on alpine linux / musl
-
Stacktrace:
-
Big new feature: stacktrace from arbitrary
exception for Windows.
std::stacktrace::from_current_exception()
now works on Windows platform. Many thanks to huangqinjin for the implementation PR#159 Now on POSIX and Windows thefrom_current_exception()
function returns the stacktrace of the current exception object as if the stacktrace was captured at the point of throwing the exception. - Fixed inclusion of rarely used Windows SDK headers which can cause conflict with other code using Windows SDK. Thanks to Marat Abrarov for fixing the issue PR#157.
-
Build option
boost.stacktrace.from_exception
now properly works on MacOS. Thanks to Peter Dimov for the fix PR#166. - Fixed a typo in assert expression. Thanks to Kilian Henneberger for the bug report #164.
- Fixed shadowing warnings. Thanks to Nigel Stewart for the bug report #141.
-
Added
dladdr
minimal support for AIX. Many thanks to Clément Chigot for the implementation PR#114. -
Added
Boost::stacktrace
CMake alias that refers to the best supported implementation of Boost.Stacktrace on the platform. Thanks to Alex for the feature PR#167. - Significant improvement of CMake: multiple fixes, added many new tests, improved CI. Many thanks to Peter Dimov for all the improvements.
-
Fix addr2line work when the process is looked up via
PATH
. Thanks to Schreischildkroete for the bug report and to Jens Richter for fix #72.
-
Big new feature: stacktrace from arbitrary
exception for Windows.
-
Test:
-
Fix
-Wundef
in configuration step. - Fix unreachable return compilation error on MSVC.
-
Fix
-
Unordered:
-
Added container
pmr
aliases when header<memory_resource>
is available. The aliasboost::unordered::pmr::[container]
refers toboost::unordered::[container]
with astd::pmr::polymorphic_allocator
allocator type. -
Equipped open-addressing and concurrent containers to internally
calculate and provide statistical metrics affected by the quality
of the hash function. This functionality is enabled by the global
macro
BOOST_UNORDERED_ENABLE_STATS
. -
Avalanching hash functions must now be marked via an
is_avalanching
typedef with an embeddedvalue
constant set totrue
(typically, definingis_avalanching
asstd::true_type
).using is_avalanching = void
is deprecated but allowed for backwards compatibility. - Added Visual Studio Natvis framework custom visualizations for containers and iterators. This works for all containers with an allocator using raw pointers. In this release, containers and iterators are not supported if their allocator uses fancy pointers. This may be addressed in later releases.
-
Added container
-
UUID:
- Major update.
- C++03 is no longer supported, a C++11 compiler is required. (This includes GCC 4.8 or later, MSVC 14.0 (VS 2015) or later, and MinGW-w64.)
- Decreased number of Boost dependencies from 39 (in total) to just 5.
- Updated to reflect the newer RFC 9562.
- Added generators for time-based UUIDs.
- Many other improvements, see the revision history.
-
Wave:
- Replaced one use of vsprintf with the more secure vsnprintf
-
Fixed bug:
- #197: Improper signed overflow handling (UB and a missing division check)
-
WinAPI:
-
Added
BOOST_USE_WINAPI_VERSION
CMake option, which allows users to specify the Windows version for Boost to target.
-
Added
Updated Tools
-
BoostBook:
-
DTD updated:
constructor
,copy-assignment
anddestructor
elements are now allowed insidemethod-group
elements. -
Many fixes and improvements in Doxygen-generated documentation:
- Fixed duplicate equal signs in Doxygen-generated enum value initializers.
-
Disabled alphabetical sorting of function arguments. The sorting
can be re-enabled by setting the new
boost.sort.params
XSL parameter to 1. -
Added support for custom class member grouping. See Doxygen
tags
@name
and@{
/@}
. -
Added support for Doxygen references to classes, methods, enums,
variables, etc. (see
@ref
tag). -
Added support for
@remark
and@important
tags. -
Added support for
@parblock
tags, which can be used to place multiple paragraphs under a tag that expects a single paragraph as an argument (e.g.@returns
). - Template parameter defaults that refer to implementation details are now concealed, similar to function parameter defaults.
-
Improved presentation of unnamed enums. Instead of showing
a synthesized name such as
@0
, the name is either omitted or is[unnamed]
, if the name is necessary to introduce a link to the enum documentation. -
Changed the "See Also" (
@sa
) blocks to be displayed inline, similar to "Returns". -
Fixed presentation of multiple exception specifications (
@throws
). -
Added support for free form description of throwing behavior.
If the exception type after the
@throws
tag is "~" then the exception type is omitted from the output, and the following description is displayed directly in the "Throws" section. - Removed redundant spaces in return types and template parameters.
-
DTD updated:
-
Build:
- Includes release of B2 version 5.2.1.
Compilers Tested
Boost's primary test compilers are:
-
Linux:
- Clang, C++03: 3.4, 3.5, 3.6, 3.7, 3.8, 3.9, 12.0.0, 13.0.0, 14.0.0, 15.0.0
- Clang, C++11: 3.4, 11.0.0, 13.0.0, 14.0.0, 15.0.0
- Clang, C++14: 3.5, 3.6, 3.7, 3.8, 3.9, 4.0, 5.0, 12.0.0, 13.0.0, 14.0.0, 15.0.0
- Clang, C++17: 6.0.1, 7.0.0, 8.0.0, 9.0.0, 10.0.0, 11.0.0, 12.0.0, 13.0.0, 14.0.0, 15.0.0
- Clang, C++20: 11.0.0, 12.0.0, 13.0.0, 14.0.0, 15.0.0
- GCC, C++03: 4.6.3, 11, 12
- GCC, C++11: 4.7.3, 4.8.5, 11, 12
- GCC, C++14: 5.4.0, 6.4.0, 7.3.0, 8.0.1, 9.1.0, 11, 12
- GCC, C++17: 7.3.0, 8.0.1, 9.1.0, 11, 12
- GCC, C++20: 8.0.1, 9.1.0, 10, 11, 12
-
OS X:
- Apple Clang, C++03: 11.0.3
- Apple Clang, C++11: 11.0.3
- Apple Clang, C++14: 11.0.3
- Apple Clang, C++17: 11.0.3
- Apple Clang, C++20: 11.0.3
-
Windows:
- Visual C++: 10.0, 11.0, 12.0, 14.0, 14.1, 14.2, 14.3
Acknowledgements
Marshall Clow and Glen Fernandes managed this release.
Copyright Rene Rivera 2006-2007.