Releases: graphql-python/graphql-server
Releases · graphql-python/graphql-server
v3.0.0b7
v3.0.0b6
What's Changed
- Update dependencies by @kiendang in #99
- feat: add support for execution_context_class by @kiendang in #100
- docs: add docs on integration with Graphene v3 by @kiendang in #104
- chore: asynchronously gather execution results by @kiendang in #101
- feat: add support for rendering GraphiQL with jinja by @kiendang in #103
- Allow empty custom context in GraphQLView by @leonardwellthy in #106
- Update pypi publishing github action by @kiendang in #108
- release: v3.0.0b6 by @kiendang in #109
New Contributors
- @kiendang made their first contribution in #99
- @leonardwellthy made their first contribution in #106
Full Changelog: v3.0.0b5...v3.0.0b6
v3.0.0b5
v3.0.0b4
v3.0.0b2
v3.0.0b1
This is the first beta version of graphql-server.
This is based on GraphQL-core 3 and supports Python 3.6+ along with other nice features from graphql.
The main changes on this version are:
- Now supports all graphql-core 3 features and removes unsupported ones (#36):
- No longer supports executor features (was only at graphql-core 2). (#40)
- All server integrations (Flask, Webob, Sanic, aiohttp) are merged into this package to provide a better development workflow by providing the same changes to all of them. (#37 #38 #42 #45)
- Now all server integration docs are available at this repo. (#54)
- Update graphiql to 1.0.3 and brings some latest features like passing and persisting headers, subscriptions, etc. (#49 #55)
- Improve the parsing and validation steps and also allows passing custom validation rules and limit the number of reported errors. (#53)