Releases: jcrist/msgspec
Releases · jcrist/msgspec
Version 0.18.6
- Support coercing integral floats to ints when
strict=False
(#619). - Preserve leading
_
when renaming fields to camel or pascal case (#620). - Support zero-copy decoding binary fields to a
memoryview
(#624). - Fix a bug when inheriting from the same
Generic
base class multiple times (#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 (#627). - Support inheriting from any slots-class when defining a new
Struct
type withgc=False
(#635). - Automatically infer the input field naming convention when converting non-dict mappings or arbitrary objects to
Struct
types inmsgspec.convert
(#636).
Version 0.18.5
- Support unhashable
Annotated
metadata inmsgspec.inspect.type_info
(#566). - Fix bug preventing decoding dataclasses/attrs types with default values and
slots=True, frozen=True
(#569). - Support passing parametrized generic struct types to
msgspec.structs.fields
(#571). - Validate
str
constraints on dict keys when decoding msgpack (#577). - Support
UUID
subclasses as inputs tomsgspec.convert
(#592). - Call
__eq__
from generated__ne__
if user defines manual__eq__
method on aStruct
type (#593). - Include the
Struct
type in the generated hash (#595). - Add a
cache_hash
struct option (#596). - Fix a bug around caching of dataclass type info when dealing with subclasses of dataclasses (#599).
- Add
msgspec.structs.force_setattr
(#600). - Support custom dict key types in JSON encoder and decoder (#602).
- Include
dict
key constraints in generated JSON schema via thepropertyNames
field (#604). - Add a
schema_hook
for generating JSON schemas for custom types (#605). - Add support for Python 3.12's
type
aliases (#606).
Version 0.18.4
- Resolve an issue leading to periodic segfaults when importing
msgspec
on CPython 3.12 (#561)
Version 0.18.3
Version 0.18.2
Version 0.18.1
Version 0.18.0
- Add a new
msgspec.json.Decoder.decode_lines
method for decoding newline-delimited JSON into a list of values (#485). - Support for decoding UUIDs from binary values (#499).
- Support for encoding UUIDs in alternate formats (#499).
- Overhaul how dataclasses are encoded to support more dataclass-like objects (#501).
- Encode all declared fields on a dataclass (#501).
- Support encoding
edgedb.Object
instances as dataclass-like objects (#501). - Improve performance when json decoding
float
values (#510). - Support for JSON encoding dicts with
float
keys (#510). - Support for JSON decoding dicts with
float
keys (#510). - Add
float_hook
tomsgspec.json.Decoder
to support changing the default for how JSON floats are decoded (#511).
Version 0.17.0
- Ensure
None
may be explicitly passed todefstruct
formodule
/namespace
/bases
(#445). - Support decoding
datetime.datetime
values fromint
/float
values (interpreted as seconds since the Unix epoch) whenstrict=False
(#452). - Support subclasses of collection types (
list
,dict
, ...) as inputs toconvert
(#453). - Support
str
subclasses as keys into_builtins
and all protocolencode
methods (#454). - Improved performance when JSON encoding
decimal.Decimal
values (#455). - Improved performance when JSON encoding
int
/float
values (#458). - Improved performance when JSON encoding
str
values (#459). - Wrap errors in
dec_hook
with aValidationError
(#460). - Support decoding
decimal.Decimal
values from numeric values (#463) - Support encoding
decimal.Decimal
values as numeric values (#465). - Support converting
decimal.Decimal
values tofloat
inconvert
(#466). - Preliminary support for CPython 3.12 beta releases (#467).
- Support decoding integers that don't fit into an
int64
/uint64
(#469). - Add a new optional
__post_init__
method forStruct
types (#470). - Support decoding
0
/1
intobool
types whenstrict=False
(#471). - Wrap errors raised in
__post_init__
/__attrs_post_init__
in aValidationError
when decoding (#472). - Add native support for encoding/decoding
datetime.timedelta
types (#475). - Add a new
msgspec.json.Encoder.encode_lines
method for encoding an iterable of values as newline-delimited JSON (#479).
Version 0.16.0
- Deprecate
msgspec.from_builtins
in favor ofmsgspec.convert
. The newconvert
function provides a superset of the functionality available in the oldfrom_builtins
function. See the converters docs for more information (#431). - Add a
from_attributes
argument tomsgspec.convert
for allowing conversion between object types with matching attribute names. One use case for this is converting ORM objects toStruct
ordataclasses
types (#419). - Support passing generic
Mapping
objects as inputs tomsgspec.convert
. These may be coerced todict
/Struct
/dataclasses
/attrs
types (#427). - Add a new
strict
keyword argument to alldecode
functions,Decoder
classes, as well asmsgspec.convert
. This defaults toTrue
, setting it to false enables a wider set of coercion rules (e.g. coercing astr
input to anint
). See "Strict" vs "Lax" Mode for more information (#434). - Allow any of msgspec's supported types as inputs to
msgspec.convert
(#431, #418). - Passthrough input unchanged when coercing to
typing.Any
type inmsgspec.convert
(#435). - Support parametrizing
Decoder
types at runtime (#415). - Support encoding subclasses of
UUID
(#429).