Gencaster / gencaster

A non-linear audio streaming framework for real-time radiophonic experiences and live music.
https://gencaster.org
GNU Affero General Public License v3.0
19 stars 0 forks source link

Update strawberry-graphql[channels] requirement from <=0.208.2 to <=0.219.1 in /caster-back #646

Closed dependabot[bot] closed 6 months ago

dependabot[bot] commented 7 months ago

Updates the requirements on strawberry-graphql[channels] to permit the latest version.

Release notes

Sourced from strawberry-graphql[channels]'s releases.

🍓 0.219.1

  • Improved error message when supplying in incorrect before or after argument with using relay and pagination.
  • Add extra PR requirement in README.md

Releases contributed by @​sdobbelaere via #3361

Changelog

Sourced from strawberry-graphql[channels]'s changelog.

0.219.1 - 2024-01-28

  • Improved error message when supplying in incorrect before or after argument with using relay and pagination.
  • Add extra PR requirement in README.md

Contributed by SD via [PR #3361](strawberry-graphql/strawberry#3361)

0.219.0 - 2024-01-24

This release adds support for litestar.

import strawberry
from litestar import Request, Litestar
from strawberry.litestar import make_graphql_controller
from strawberry.types.info import Info

def custom_context_getter(request: Request): return {"custom": "context"}

@​strawberry.type class Query: @​strawberry.field def hello(self, info: Info[object, None]) -> str: return info.context["custom"]

schema = strawberry.Schema(Query)

GraphQLController = make_graphql_controller( schema, path="/graphql", context_getter=custom_context_getter, )

app = Litestar( route_handlers=[GraphQLController], )

Contributed by Matthieu MN via [PR #3213](strawberry-graphql/strawberry#3213)

0.218.1 - 2024-01-23

... (truncated)

Commits


Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
dependabot[bot] commented 6 months ago

Superseded by #654.