Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update changelog for 0.18.6 #637

Merged
merged 1 commit into from
Jan 22, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions docs/source/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,23 @@ Changelog

.. currentmodule:: msgspec

Version 0.18.6 (2024-01-21)
---------------------------

- Support coercing integral floats to ints when ``strict=False`` (:pr:`619`).
- Preserve leading ``_`` when renaming fields to camel or pascal case (:pr:`620`).
- Support zero-copy decoding binary fields to a ``memoryview`` (:pr:`624`).
- Fix a bug when inheriting from the same ``Generic`` base class multiple times
(:pr:`626`).
- Add an ``order`` option to all encoders for enforcing deterministic/sorted
ordering when encoding. This can help provide a more consistent or human
readable output (:pr:`627`).
- Support inheriting from any slots-class when defining a new ``Struct`` type
with ``gc=False`` (:pr:`635`).
- Automatically infer the input field naming convention when converting
non-dict mappings or arbitrary objects to ``Struct`` types in
``msgspec.convert`` (:pr:`636`).

Version 0.18.5 (2023-12-12)
---------------------------

Expand Down
Loading