-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: upgrade Django to 4.2 & upgrade all packages to latest
done: - upgrade postgres from 11 to 12 - required, didn't work without this change - change import paths - graphql.execution.base.ResolveInfo -> graphql.type.GraphQLResolveInfo - add arbitrary primary keys to objects used in dummy notification contexts because factory's build doesn't create a primary key yet, and without it generating the URLs using the object's ID fails - remove QUERY_TOO_DEEP_ERROR and DepthAnalysisBackend, use graphene's depth_limit_validator instead which should give a GraphQLError like `<operation_name> exceeds maximum operation depth of <max_depth>. - fix executed_graphql_request() has no `invalid` member - fix graphene enums to work similarly to graphene v2 -> using values - graphene v3 changed enums so they work differently than in graphene v2, forcing backward compatibility by converting enums to their values - fix using django-parler translations, map enums to their values - fix enums in TranslatableQuerySet objects, map them to their values refs KK-1108
- Loading branch information
1 parent
718d92c
commit f9a8200
Showing
53 changed files
with
922 additions
and
829 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -107,7 +107,7 @@ | |
"email": "[email protected]", | ||
"firstName": "Denise", | ||
"lastName": "Thompson", | ||
"phoneNumber": "001-067-506-4976x3803", | ||
"phoneNumber": "001-206-575-0649x7638", | ||
}, | ||
"type": "OTHER_RELATION", | ||
} | ||
|
@@ -132,7 +132,7 @@ | |
"email": "[email protected]", | ||
"firstName": "Timothy", | ||
"lastName": "Baldwin", | ||
"phoneNumber": "803.466.9727", | ||
"phoneNumber": "480.934.6697", | ||
}, | ||
"type": "PARENT", | ||
} | ||
|
@@ -202,7 +202,7 @@ | |
"email": "[email protected]", | ||
"firstName": "Denise", | ||
"lastName": "Thompson", | ||
"phoneNumber": "001-067-506-4976x3803", | ||
"phoneNumber": "001-206-575-0649x7638", | ||
}, | ||
"type": "OTHER_RELATION", | ||
} | ||
|
@@ -250,7 +250,7 @@ | |
"email": "[email protected]", | ||
"firstName": "Blake", | ||
"lastName": "Newton", | ||
"phoneNumber": "976-380-3466x9727", | ||
"phoneNumber": "497-963-8034x6697", | ||
}, | ||
"type": "PARENT", | ||
} | ||
|
@@ -281,7 +281,7 @@ | |
"email": "[email protected]", | ||
"firstName": "Sarah", | ||
"lastName": "Larsen", | ||
"phoneNumber": "8981710123", | ||
"phoneNumber": "4895817101", | ||
}, | ||
"type": "OTHER_RELATION", | ||
} | ||
|
@@ -303,7 +303,7 @@ | |
"email": "[email protected]", | ||
"firstName": "Michael", | ||
"lastName": "Patton", | ||
"phoneNumber": "355.777.6712x406", | ||
"phoneNumber": "235.857.7767x124", | ||
}, | ||
"type": "OTHER_GUARDIAN", | ||
} | ||
|
@@ -325,7 +325,7 @@ | |
"email": "[email protected]", | ||
"firstName": "Michael", | ||
"lastName": "Patton", | ||
"phoneNumber": "355.777.6712x406", | ||
"phoneNumber": "235.857.7767x124", | ||
}, | ||
"type": "OTHER_GUARDIAN", | ||
} | ||
|
Oops, something went wrong.