From 7f0bceb81280df758c7b4a7cacf8779351ebcc53 Mon Sep 17 00:00:00 2001 From: Dmitry Arkhipov Date: Thu, 7 Nov 2024 16:57:26 +0300 Subject: [PATCH] release notes for 1.87.0 --- CHANGELOG.md | 13 +++++++++++++ doc/qbk/release_notes.qbk | 23 +++++++++++++++++++++++ 2 files changed, 36 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 54adb45f6..f83aa1486 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,16 @@ +Boost 1.87.0 + +* Conversion into structs ignores unknown keys. +* Exception wrapping behaviour for `value_to` is simplified. +* Deprecated initilaizer list behavior was removed. +* Deprecated type aliases were removed. +* Direct serialization. +* Add GDB pretty printers for Boost.JSON types. +* Use correct 64bit full multiplication for MinGW on ARM64. +* Fix parse_into handling of tuple of the wrong size. +* Check for input size larger than allowed size of sequence. +* Fix `value_ref` segfaulting on GCC 14. + Boost 1.86.0 * Support for GCC versions older than version 5.0 is deprecated and **will stop diff --git a/doc/qbk/release_notes.qbk b/doc/qbk/release_notes.qbk index a41e6abd4..24f6d0403 100644 --- a/doc/qbk/release_notes.qbk +++ b/doc/qbk/release_notes.qbk @@ -11,6 +11,29 @@ [/-----------------------------------------------------------------------------] +[heading Boost 1.87.0] + +[*API Changes] + +* [issue 991] Conversion into structs ignores unknown keys. +* [issue 1041] Exception wrapping behaviour for `value_to` is simplified. +* [issue 1040] Deprecated initilaizer list behavior was removed. +* [issue 1040] Deprecated type aliases were removed. + + +[*New Features] + +* [issue 956] [link json.conversion.direct_conversion Direct serialization]. +* [issue 644] Add GDB pretty printers for Boost.JSON types. + + +[*Fixes] + +* [issue 1057] Use correct 64bit full multiplication for MinGW on ARM64. +* [issue 1048] Fix parse_into handling of tuple of the wrong size. +* [issue 1047] Check for input size larger than allowed size of sequence. +* [issue 1034] Fix `value_ref` segfaulting on GCC 14. + [heading Boost 1.86.0] [*Deprecation]