From b729dfce4b8d05813889e1441a21d9461e6fb2a5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 8 Jun 2026 15:22:23 +0000 Subject: [PATCH 1/3] Bump codecov/codecov-action from 6 to 7 in the action-updates group Bumps the action-updates group with 1 update: [codecov/codecov-action](https://github.com/codecov/codecov-action). Updates `codecov/codecov-action` from 6 to 7 - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/codecov/codecov-action/compare/v6...v7) --- updated-dependencies: - dependency-name: codecov/codecov-action dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: action-updates ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4329fe2..4704b04 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -18,7 +18,7 @@ jobs: python-version: ${{ matrix.python-version }} - run: make check - run: uv run coverage xml - - uses: codecov/codecov-action@v6 + - uses: codecov/codecov-action@v7 with: use_oidc: true From b82e80229db58f08a8c4fce7d067295aa0c2e3ff Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 9 Jun 2026 00:26:59 +0000 Subject: [PATCH 2/3] Fix ty lint error in Column.register --- graphique/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/graphique/models.py b/graphique/models.py index 60ffeb2..58aa2e9 100644 --- a/graphique/models.py +++ b/graphique/models.py @@ -74,7 +74,7 @@ def register(cls, *scalars): # strawberry#1921: scalar python names are prepended to column name generic = issubclass(cls, Generic) for scalar in scalars: - cls.registry[scalar] = cls[scalar] if generic else cls + cls.registry[scalar] = cls[scalar] if generic else cls # type: ignore[not-subscriptable] @strawberry.field(description=links.types) def type(self) -> str: From 022707d6008dd2d1b597cfafae8073ae5cfcf93d Mon Sep 17 00:00:00 2001 From: "A. Coady" Date: Mon, 8 Jun 2026 17:28:22 -0700 Subject: [PATCH 3/3] Fix type ignore comment in models.py --- graphique/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/graphique/models.py b/graphique/models.py index 58aa2e9..ce71201 100644 --- a/graphique/models.py +++ b/graphique/models.py @@ -74,7 +74,7 @@ def register(cls, *scalars): # strawberry#1921: scalar python names are prepended to column name generic = issubclass(cls, Generic) for scalar in scalars: - cls.registry[scalar] = cls[scalar] if generic else cls # type: ignore[not-subscriptable] + cls.registry[scalar] = cls[scalar] if generic else cls # type: ignore @strawberry.field(description=links.types) def type(self) -> str: