Skip to main content

Ariadne 0.16.0

2 min read

Ariadne 0.16 release brings refactor to Ariadne's ASGI app which makes it more modular and adds support for old and new GraphQL websocket protocols. It also updates load_schema_from_path to support gql and graphqls file types. Finally it bumps library's support for Starlette to version 0.20 and updates other dependencies to latest versions.

We thank our community for contributing features to this release. You rock! 鉂わ笍

Ariadne GraphQL Modules 0.4.0

One min read

Ariadne GraphQL Modules 0.4.0 has been released!

This release changes datamodel, simplifying the BaseType and moving its logic to new DefinitionType and BindableType base classes.

It also introduces new CollectionType that can be used to gather multiple types into single type, eg.:

class UserMutations(CollectionType):
__types__ = [
UserAvatarUploadMutation,
UserAvatarRemoveMutation,
UserCreateMutation,
UserUpdateMutation,
UserDeleteMutation,
]

Ariadne GraphQL Modules 0.3.0

One min read

Ariadne GraphQL Modules 0.3.0 is now available.

0.3.0 is a bugfix release fixing dependency checker not recognizing Float as builtin scalar.

Ariadne 0.15.1

One min read

Ariadne 0.15.1 has been released!

0.15.1 is a maintenance release dedicated to fixing performance issue in make_federated_schema function that makes generation of schema object very slow when GraphQL types have descriptions.

Ariadne 0.15

2 min read

Ariadne 0.15 is out!

This release updates GraphQL Core compatibility to version 3.2 and Starlette to versions 0.18 and 0.19. It also brings bunch of bug fixes and small improvements to the library contributed by the community. 鉂わ笍

With this release we are also dropping support for Python 3.6, which reached end of support as of 23 December 2021.

Ariadne 0.14.1

One min read

Ariadne 0.14.1 has been released!

0.14.1 is a maintenance release that locks graphql-core dependency version at <3.2, preventing Ariadne from crashing due to incompatibility with recently released GraphQL-core 3.2 package.

This release also removes ariadne.contrib.django package which by mistake made it's way to 0.14 release which was supposed to be first Ariadne release without it.

Ariadne 0.14.0

2 min read

Ariadne shipped!

Ariadne 0.14 is now available!

0.14 is a maintenance release focused mostly on addressing bugs and updating dependencies. It also brings one breaking change for Django users.

Ariadne 0.13.0

2 min read

Ariadne&#39;s Jet Plane

Whooosh! 鉁堬笍

Ariadne 0.13 is a maintenance release that brings speed improvements and Python 3.9 support of GraphQL core 3.1 to the library!

We've also managed to sneak in some other small improvements to the project.