Releases: lfvilella/pydantic2graphene
Releases · lfvilella/pydantic2graphene
Add support to Python 3.10
- Added support to Python 3.10
- Fixed config that was block installing the package on python 3.9
What's Changed
- Add support to Python 3.10 by @lfvilella in #47
Full Changelog: v0.5...v0.5.1
Add support to graphene==3.0.0 pydantic==1.9.0
graphene>=1.1,<=3.0.0
pydantic>=1.0,<=1.9.0
Adding support to latest version of graphene and pydantic
graphene>=1.1,<=2.1.9
pydantic>=1.0,<=1.8.2
Adding support for nested InputObjectType and type subclasses
- Adding support to python 3.9
- Adding support for nested InputObjectType
- Adding support to type subclasses
Adding support to pydantic 1.0
- Adding support to pydantic>=1.0,<=1.6.1
- Fix version to upload to pypi
Adding support to pydantic 1.0
- Adding support to pydantic>=1.0,<=1.6.1
Fix pypi
Supporting more pydantic fields
- Supporting more pydantic fields.
- Restructuring the project.
- Automate Pypi publishing.
v0.1 beginning the journey
First version of pydantic2graphene
that includes some easy way of converting pydantic
to graphene
objects.
import pydantic
import pydantic2graphene
class User(pydantic.BaseModel):
email: str
active: bool = False
UserGql = pydantic2graphene.to_graphene(User)