Skip to content

Releases: lfvilella/pydantic2graphene

Add support to Python 3.10

31 Jan 15:14
ef604e5
Compare
Choose a tag to compare
  • Added support to Python 3.10
  • Fixed config that was block installing the package on python 3.9

What's Changed

Full Changelog: v0.5...v0.5.1

Add support to graphene==3.0.0 pydantic==1.9.0

30 Jan 00:01
281f602
Compare
Choose a tag to compare
graphene>=1.1,<=3.0.0
pydantic>=1.0,<=1.9.0

Adding support to latest version of graphene and pydantic

22 Aug 21:42
55f5712
Compare
Choose a tag to compare
graphene>=1.1,<=2.1.9
pydantic>=1.0,<=1.8.2

Adding support for nested InputObjectType and type subclasses

22 Mar 20:32
f635c21
Compare
Choose a tag to compare
  • Adding support to python 3.9
  • Adding support for nested InputObjectType
  • Adding support to type subclasses

Adding support to pydantic 1.0

18 Jul 03:01
eb5c194
Compare
Choose a tag to compare
  • Adding support to pydantic>=1.0,<=1.6.1
  • Fix version to upload to pypi

Adding support to pydantic 1.0

18 Jul 02:56
65ab1f4
Compare
Choose a tag to compare
  • Adding support to pydantic>=1.0,<=1.6.1

Fix pypi

16 Jul 01:12
Compare
Choose a tag to compare

Fixing pypi install_requires

Supporting more pydantic fields

16 Jul 00:51
1560ae8
Compare
Choose a tag to compare
  1. Supporting more pydantic fields.
  2. Restructuring the project.
  3. Automate Pypi publishing.

v0.1 beginning the journey

09 Jul 16:57
e34824c
Compare
Choose a tag to compare

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)