Peter Schutt
Peter Schutt
> The other option is to block this until msgspec cuts their next release and not modify the hashability of the types at all. FYI: waiting for this.
msgspec release is out - I'll pick this up again soon
> @peterschutt Anything blocking this aside from time constraints? Nothing - except that I keep getting distracted with work closer to the top of the pile.
Superseded by #3289 3289
> @peterschutt this week, I'll be tackling the default encoders/decoders. Before I begin, I'll research other data structures to get a better grasp of the topic. At the moment, I...
Will also need to rebase this onto the develop branch.
Hey @sashahx - I cherry picked your commits into PR #3254 which is based off develop. Closing this PR in favor of that one.
Something to think about - what if the SQLAlchemy serialization plugin is active and someone wants to use a dataclass DTO with an embedded sqlalchemy model on the dataclass. I...
> > Something to think about - what if the SQLAlchemy serialization plugin is active and someone wants to use a dataclass DTO with an embedded sqlalchemy model on the...
> I have a feeling that what you described already works. I don't think so: ```py def test_dataclass_dto_with_sqlalchemy_plugin(create_module: Callable[[str], ModuleType]) -> None: module = create_module(""" from dataclasses import dataclass from...