2
0
mirror of https://github.com/boostorg/website.git synced 2026-01-26 07:02:23 +00:00

manually commit PR #777

This commit is contained in:
Marshall Clow
2023-08-01 11:25:51 -07:00
parent 77cc1436df
commit fc85e8031c

View File

@@ -125,6 +125,16 @@ Please keep the list of libraries sorted in lexicographical order.
* Fix error message for `error::size_mismatch`.
* Fix conversion into tuple with const elements.
* [phrase library..[@/libs/locale/index.html Locale]:]
* Bitwise/binary operators (left/right shift, binary and/or/xor/not) are no longer supported in message catalog files matching GNU gettext behavior
* Std backend on Windows uses the classic locale instead of the system locale when the requested locale does not exist (now same as on other OSs)
* `localization_backend_manager::get` is deprecated, use the generator instead
* New converter classes as alternative to `to_utf`/`from_utf`/`between`
* Fix UB on invalid index in format strings
* Fix conversion of UTF to e.g. iso-2022-jp on Windows without ICU
* Use `long long` as the count parameter for pluralized translations
* Fix movability and exception specification for some classes
* [phrase library..[@/libs/log/ Log]:]
* Fixed a possible infinite loop in `text_file_backend`, when the size of a formatted log record exceeds the `rotation_size` limit. ([github log 209])