Releases: mirumee/ariadne
Releases · mirumee/ariadne
Ariadne 0.26.1
What's Changed
- Fix python_multipart deprecation warning by @A-Dudek in #1230
- chore: clean
pyproject.toml
update README.MD by @KarolJagodzinski in #1231 - fix: websocket connection init timeout set to 0 by @mgradalska in #1232
- chore(pyproject.toml): restore optional dependencies by @KarolJagodzinski in #1233
New Contributors
- @A-Dudek made their first contribution in #1230
- @mgradalska made their first contribution in #1232
Full Changelog: 0.26.0...0.26.1
Ariadne 0.26.0
What's Changed
-
chore: DROP 3.8, leverage hatch to run tests and static analisys by @KarolJagodzinski in #1221
-
chore: rename tests.yml to test.yml by @KarolJagodzinski in (d766053)
Full Changelog: 0.25.2...0.26.0
Ariadne 0.26.0.dev1
What's Changed
- chore: DROP 3.8, leverage hatch to run tests and static analisys by @KarolJagodzinski in #1221
Full Changelog: 0.25.2...0.26.0.dev1
0.25.2
What's Changed
- use graphql core extensions field to store contrib resolvers by @reallistic in #1228
- feat!: add a default global ID encoder, add a id_field on the query type by @pkucmus in #1227
Full Changelog: 0.25.1...0.25.2
Breaking Change: in the ariadne.contrib.relay
module a change was introduced, the global ID decoder now takes a string, not the query kwargs like in 0.25.1
Ariadne 0.25.1
What's Changed
- fix(relay): add missing key in return RelayObjectType.resolve_wrapper by @KarolJagodzinski in #1224
New Contributors
- @KarolJagodzinski made their first contribution in #1224
Full Changelog: 0.25.0...0.25.1
Ariadne 0.25.0
What's Changed
- Subscriptions: SSE distinct connection support by @danplischke in #1195
- Skip websocket init timeout test by @Kwaidan00 in #1219
- Pin graphql-core <3.2.6 by @Kwaidan00 in #1218
- Adding contrib for GraphQL Relay by @pkucmus in #1214
New Contributors
- @danplischke made their first contribution in #1195
Full Changelog: 0.24...0.25.0
Ariadne 0.24
Changelog
- Added validation for directive declarations in
make_executable_schema
to prevent schema creation with undeclared directives. - Replaced hardcoded HTTP statuses with
HTTPStatus
from thehttp
stdlib module. - Added
include_cookies
option to theExplorerApollo
. - Fixed typing on
extract_data_from_request
method. - Fixed tests websockets after starlette update.
- Added
share_enabled
param toExplorerPlayground
to enable share playground feature. - Added support for nested attribute resolution in alias resolvers.
- Replaced regexes in the Apollo Federation implementation with cleaner approach using GraphQL AST.
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.