Skip to content

Commit a689b08

Browse files
Bump strawberry-graphql from 0.220.0 to 0.243.0 in /grai-server/app (#979)
* Bump strawberry-graphql from 0.220.0 to 0.243.0 in /grai-server/app Bumps [strawberry-graphql](https://github.com/strawberry-graphql/strawberry) from 0.220.0 to 0.243.0. - [Release notes](https://github.com/strawberry-graphql/strawberry/releases) - [Changelog](https://github.com/strawberry-graphql/strawberry/blob/main/CHANGELOG.md) - [Commits](strawberry-graphql/strawberry@0.220.0...0.243.0) --- updated-dependencies: - dependency-name: strawberry-graphql dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> * poetry-lock * update-strawberry * version-bump --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Ian Eaves <[email protected]>
1 parent 823af4d commit a689b08

File tree

5 files changed

+20
-20
lines changed

5 files changed

+20
-20
lines changed

grai-server/app/api/order.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
import strawberry
44
from django.db.models.query import QuerySet
5-
from strawberry.field import StrawberryField
5+
from strawberry.types.field import StrawberryField
66
from strawberry_django.ordering import process_order
77

88

grai-server/app/api/pagination.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import strawberry
44
from django.db.models import Model
55
from django.db.models.query import QuerySet
6-
from strawberry.field import StrawberryField
6+
from strawberry.types.field import StrawberryField
77
from strawberry_django.pagination import OffsetPaginationInput
88

99
from .order import apply_order

grai-server/app/poetry.lock

+14-14
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

grai-server/app/pyproject.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "the_guide"
3-
version = "0.1.75"
3+
version = "0.1.76"
44
description = ""
55
authors = ["Grai <[email protected]>"]
66
license = "Elastic-2.0"
@@ -35,7 +35,7 @@ django-email-log = "^1.3.0"
3535
django-celery-email = "^3.0.0"
3636
django-query-chunk = "^0.0.1"
3737
django-tqdm = "^1.3.1"
38-
strawberry-graphql-django = "^0.35.1"
38+
strawberry-graphql-django = "^0.49.0"
3939
celery = "^5.2.7"
4040
redis = "^4.4.0"
4141
python-decouple = "^3.6"
@@ -68,7 +68,7 @@ channels = "^4.0.0"
6868
channels-redis = "^4.1.0"
6969
uvicorn = {version = "^0.28.1", extras = ["standard"]}
7070
gunicorn = ">=21.2,<23.0"
71-
strawberry-graphql = {extras = ["channels", "asgi"], version = "^0.220.0"}
71+
strawberry-graphql = {extras = ["channels", "asgi"], version = ">=0.220,<0.246.2"}
7272
asgi-cors-strawberry = "^0.2.0"
7373
overrides = "^7.4.0"
7474
openai = "^1.3.7"

grai-server/app/the_guide/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
# Django starts so that shared_task will use this app.
33
from .celery import app as celery_app
44

5-
__version__ = "0.1.75"
5+
__version__ = "0.1.76"
66

77
__all__ = ("celery_app", "__version__")

0 commit comments

Comments
 (0)