Releases: mirumee/ariadne
Releases · mirumee/ariadne
Ariadne 0.23
CHANGELOG
- Added
execute_get_queries
setting to theGraphQL
apps that controls execution of the GraphQL "query" operations made with GET requests. Defaults toFalse
. - Added support for the Apollo Federation versions up to 2.6.
- Fixed deprecation warnings in Apollo Tracing extension.
- Added a check to prevent
subscription
operation execution when query is made with POST request.
Ariadne 0.23.0 beta 1
Changelog
- Added
execute_get_queries
setting to theGraphQL
apps that controls execution of the GraphQL "query" operations made with GET requests. Defaults toFalse
. - Added support for the Apollo Federation versions up to 2.6.
- Fixed deprecation warnings in Apollo Tracing extension.
- Added a check to prevent
subscription
operation execution when query is made with POST request.
Ariadne 0.22
Changelog
- Deprecated
EnumType.bind_to_default_values
method. It will be removed in a future release. - Added
repair_schema_default_enum_values
to public API. - Removed
validate_schema_enum_values
and introducedvalidate_schema_default_enum_values
in its place. This is a breaking change. - Fixed an invalid error message returned by the
GraphQLTransportWSHandler
forquery
andmutation
operations.
Ariadne 0.22 beta 1
Changelog
- Deprecated
EnumType.bind_to_default_values
method. It will be removed in a future release. - Added
repair_schema_default_enum_values
to public API. - Removed
validate_schema_enum_values
and introducedvalidate_schema_default_enum_values
in its place. This is a breaking change. - Fixed an invalid error message returned by the
GraphQLTransportWSHandler
forquery
andmutation
operations.
Ariadne 0.21
Changelog
- Added Python 3.12 to tested versions.
- Updated integration tests to run against FastAPI 0.104, Flask 3.0 and Starlette 0.32.
- Updated GraphiQL explorer to initialize with support for subscriptions.
0.20.1
Ariadne 0.20
Changelog
- Dropped support for Python 3.7.
- Added
OpenTelemetry
andopentelemetry_extension
extension, importable formariadne.tracing.opentelemetry
. - Added
query_validator
option to ASGI and WSGIGraphQL
applications that enables customization of query validation step. - Fixed
ERROR
message in GraphQL-WS protocol having invalid payload type. - Fixed query cost validator incorrect handling of inline fragments.
- Fixed
make_executable_schema
error whennull
is used as default value forinput
typed field argument. - Updated default GraphiQL2 template to use production build of React.js.
- Removed
ExtensionSync
.Extension
now supports both async and sync contexts. - Removed
OpenTracingSync
andopentracing_extension_sync
.OpenTracing
andopentracing_extension
now support both async and sync contexts. - Removed
ApolloTracingSync
.ApolloTracing
now supports both async and sync contexts.
Ariadne 0.19.1
CHANGELOG
- Fixed
.graphql
definitions files not being included in the dist files
Ariadne 0.19
CHANGELOG
- Added
InputType
for setting Python representations of GraphQL Input types - Added support for passing
Enum
types directly tomake_executable_schema
- Added
convert_names_case
option tomake_federated_schema
. - Added support for the
@interfaceObject
directive in Apollo Federation. - Fixed federation support for directives without surrounding whitespace.
Ariadne 0.18.1
CHANGELOG
- Fixed type annotations on
EnumType
.