From b914d0d2301522733262e15a8127b78f6dc5ade7 Mon Sep 17 00:00:00 2001 From: Jeongseok Kang Date: Mon, 20 Mar 2023 17:12:37 +0900 Subject: [PATCH 1/6] deps: Bump django<=5.0.0 graphene>=2.1.9 graphene-django>=2.15.0 --- pyproject.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index c48c93f..f2ed319 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -17,9 +17,9 @@ classifiers = [ [tool.poetry.dependencies] python = ">=3.7,<4.0" -Django = "^3" -graphene = "2.1.9" -graphene-django = "^2.15.0" +Django = ">=3.2.12,<5.0.0" +graphene = ">=2.1.9" +graphene-django = ">=2.15.0" django-filter = "^21.1" psycopg2-binary = "^2.9.3" stringcase = "^1.2.0" From d94bc5c35031d5f5f07b511fcf2c0f27ec44f4f6 Mon Sep 17 00:00:00 2001 From: Jeongseok Kang Date: Fri, 14 Apr 2023 15:41:53 +0900 Subject: [PATCH 2/6] fix: Empty dict rather than `None` when filter is missing --- graphene_django_filter/connection_field.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/graphene_django_filter/connection_field.py b/graphene_django_filter/connection_field.py index 2cc12a6..482afdc 100644 --- a/graphene_django_filter/connection_field.py +++ b/graphene_django_filter/connection_field.py @@ -110,7 +110,7 @@ def resolve_queryset( qs = super(DjangoFilterConnectionField, cls).resolve_queryset( connection, iterable, info, args, ) - filter_arg = args.get(settings.FILTER_KEY, {}) + filter_arg = args.get(settings.FILTER_KEY) or {} filterset = filterset_class( data=tree_input_type_to_data(filterset_class, filter_arg), queryset=qs, From 5b67df9db7630b6d242672cf67f21af5765b6eba Mon Sep 17 00:00:00 2001 From: Jeongseok Kang Date: Fri, 14 Apr 2023 15:46:18 +0900 Subject: [PATCH 3/6] Bump to 0.6.5 --- pyproject.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index f2ed319..fbacb92 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "graphene-django-filter" -version = "0.6.4" +version = "0.6.5" description = "Advanced filters for Graphene" -authors = ["devind-team "] +authors = ["Lablup Inc. "] license = "MIT" readme = "README.md" -homepage = "https://github.com/devind-team/graphene-django-filter" -repository = "https://github.com/devind-team/graphene-django-filter" +homepage = "https://github.com/lablup/graphene-django-filter" +repository = "https://github.com/lablup/graphene-django-filter" keywords = ["django", "graphene", "filter"] classifiers = [ "Programming Language :: Python :: 3", From 69b93dbe063324cee1856f06e1c8b7a8017cf3ee Mon Sep 17 00:00:00 2001 From: Jeongseok Kang Date: Sun, 22 Dec 2024 20:31:14 +0900 Subject: [PATCH 4/6] chore(deps): Bump dependency on django to <5.2.0 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index fbacb92..1d26769 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -17,7 +17,7 @@ classifiers = [ [tool.poetry.dependencies] python = ">=3.7,<4.0" -Django = ">=3.2.12,<5.0.0" +Django = ">=3.2.12,<5.2.0" graphene = ">=2.1.9" graphene-django = ">=2.15.0" django-filter = "^21.1" From 898a77c4ae1ddf3ca2fd93eedce97adb48daf422 Mon Sep 17 00:00:00 2001 From: Jeongseok Kang Date: Sat, 28 Dec 2024 03:03:39 +0900 Subject: [PATCH 5/6] chore(deps): Bump django-filter to >=21.1 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 1d26769..f376cf2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -20,7 +20,7 @@ python = ">=3.7,<4.0" Django = ">=3.2.12,<5.2.0" graphene = ">=2.1.9" graphene-django = ">=2.15.0" -django-filter = "^21.1" +django-filter = ">=21.1" psycopg2-binary = "^2.9.3" stringcase = "^1.2.0" anytree = "^2.8.0" From 623aed7b39c00d3ab7970f4d545802d2a5ff78f1 Mon Sep 17 00:00:00 2001 From: Jeongseok Kang Date: Thu, 16 Jan 2025 11:31:03 +0900 Subject: [PATCH 6/6] fix: Discard redundant changes --- pyproject.toml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index f376cf2..c48c93f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "graphene-django-filter" -version = "0.6.5" +version = "0.6.4" description = "Advanced filters for Graphene" -authors = ["Lablup Inc. "] +authors = ["devind-team "] license = "MIT" readme = "README.md" -homepage = "https://github.com/lablup/graphene-django-filter" -repository = "https://github.com/lablup/graphene-django-filter" +homepage = "https://github.com/devind-team/graphene-django-filter" +repository = "https://github.com/devind-team/graphene-django-filter" keywords = ["django", "graphene", "filter"] classifiers = [ "Programming Language :: Python :: 3", @@ -17,10 +17,10 @@ classifiers = [ [tool.poetry.dependencies] python = ">=3.7,<4.0" -Django = ">=3.2.12,<5.2.0" -graphene = ">=2.1.9" -graphene-django = ">=2.15.0" -django-filter = ">=21.1" +Django = "^3" +graphene = "2.1.9" +graphene-django = "^2.15.0" +django-filter = "^21.1" psycopg2-binary = "^2.9.3" stringcase = "^1.2.0" anytree = "^2.8.0"