File tree 3 files changed +11
-8
lines changed
3 files changed +11
-8
lines changed Original file line number Diff line number Diff line change 1
1
# CHANGELOG
2
2
3
+ ## 0.8.0 (2024-02-21)
4
+
5
+ - Added support for Ariadne 0.22.
6
+
7
+
3
8
## 0.7.0 (2022-09-13)
4
9
5
10
- Added support for Ariadne schema definitions to ` make_executable_schema ` .
Original file line number Diff line number Diff line change 12
12
from ariadne import (
13
13
SchemaBindable ,
14
14
SchemaDirectiveVisitor ,
15
- set_default_enum_values_on_schema ,
16
- validate_schema_enum_values ,
15
+ repair_schema_default_enum_values ,
16
+ validate_schema_default_enum_values ,
17
17
)
18
18
from graphql import (
19
19
ConstDirectiveNode ,
@@ -60,14 +60,12 @@ def make_executable_schema(
60
60
for bindable in extra_bindables :
61
61
bindable .bind_to_schema (schema )
62
62
63
- set_default_enum_values_on_schema (schema )
64
-
65
63
if extra_directives :
66
64
SchemaDirectiveVisitor .visit_schema_directives (schema , extra_directives )
67
65
68
66
assert_valid_schema (schema )
69
- validate_schema_enum_values (schema )
70
- repair_default_enum_values (schema , type_defs )
67
+ validate_schema_default_enum_values (schema )
68
+ repair_schema_default_enum_values (schema )
71
69
72
70
add_directives_to_schema (schema , type_defs )
73
71
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
5
5
[project ]
6
6
name = " ariadne-graphql-modules"
7
- version = " 0.7 .0"
7
+ version = " 0.8 .0"
8
8
description = " Ariadne toolkit for defining GraphQL schemas in modular fashion."
9
9
authors = [{
name =
" Mirumee Software" ,
email =
" [email protected] " }]
10
10
readme = " README.md"
@@ -22,7 +22,7 @@ classifiers = [
22
22
" Topic :: Software Development :: Libraries :: Python Modules" ,
23
23
]
24
24
dependencies = [
25
- " ariadne>=0.15 .0" ,
25
+ " ariadne>=0.22 .0" ,
26
26
]
27
27
28
28
[project .optional-dependencies ]
You can’t perform that action at this time.
0 commit comments