v0.6.2 #321
RobertCraigie
started this conversation in
General
v0.6.2
#321
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Bug Fixes
In
v0.6.0
we renamedPrisma
toClient
, in doing so we accidentally removed the export for the previousClient
name which was kept for backwards compatibility. This release re-exports it so the following code will no longer raise an error:What's Changed
Support for filtering by
in
andnot_in
forBytes
fieldsFor example the following query will find the first record where
binary_data
is eithermy binary data
ormy other binary data
.And if you want to find a record that doesn't match any of the arguments you can use
not_in
Added
__slots__
definitionsAll applicable classes now define the
__slots__
attribute for improved performance and memory usage, for more information on what this means, see the Python documentation.New Contributors
Thank you to @matyasrichter 💜
This discussion was created from the release v0.6.2.
Beta Was this translation helpful? Give feedback.
All reactions