KundaPanda / strawberry-django-jwt

[UNMAINTAINED] JSON Web Token (JWT) authentication for Django with Strawberry GraphQL
MIT License
37 stars 16 forks source link

Bump strawberry-graphql from 0.97.0 to 0.105.0 #273

Closed dependabot[bot] closed 2 years ago

dependabot[bot] commented 2 years ago

Bumps strawberry-graphql from 0.97.0 to 0.105.0.

Release notes

Sourced from strawberry-graphql's releases.

πŸ“ 0.105.0

This release adds support for passing json_encoder and json_dumps_params to Sanic's view.

from strawberry.sanic.views import GraphQLView

from api.schema import Schema

app = Sanic(name)

app.add_route( GraphQLView.as_view( schema=schema, graphiql=True, json_encoder=CustomEncoder, json_dumps_params={}, ), "/graphql", )

πŸ“ 0.104.4

Allow use of AsyncIterator and AsyncIterable generics to annotate return type of subscription resolvers.

πŸ“ 0.104.3

Exeptions from handler functions in graphql_transport_ws are no longer incorrectly caught and classified as message parsing errors.

πŸ“ 0.104.2

Drop support for Django < 3.2.

πŸ“ 0.104.1

This release adds support for aliased fields when doing codegen.

πŸ“ 0.104.0

Add is_auto utility for checking if a type is strawberry.auto, considering the possibility of it being a StrawberryAnnotation or even being used inside Annotated.

πŸ“ 0.103.9

This release moves the console plugin for the codegen command to be last one, allowing to run code before writing files to disk.

πŸ“ 0.103.8

This release adds a python_type to the codegen GraphQLEnum class to allow access to the original python enum when generating code

... (truncated)

Changelog

Sourced from strawberry-graphql's changelog.

0.105.0 - 2022-04-05

This release adds support for passing json_encoder and json_dumps_params to Sanic's view.

from strawberry.sanic.views import GraphQLView

from api.schema import Schema

app = Sanic(name)

app.add_route( GraphQLView.as_view( schema=schema, graphiql=True, json_encoder=CustomEncoder, json_dumps_params={}, ), "/graphql", )

Contributed by Patrick Arminio via [PR #1797](strawberry-graphql/strawberry#1797)

0.104.4 - 2022-04-05

Allow use of AsyncIterator and AsyncIterable generics to annotate return type of subscription resolvers.

Contributed by San Kilkis via [PR #1771](strawberry-graphql/strawberry#1771)

0.104.3 - 2022-04-03

Exeptions from handler functions in graphql_transport_ws are no longer incorrectly caught and classified as message parsing errors.

Contributed by KristjΓ‘n Valur JΓ³nsson via [PR #1761](strawberry-graphql/strawberry#1761)

0.104.2 - 2022-04-02

Drop support for Django < 3.2.

... (truncated)

Commits
  • c64a9f9 Release πŸ“ 0.105.0
  • 43de6f1 Add support for json_dumps_params and json_encoder in Sanic's view (#1797)
  • e61c4df Release πŸ“ 0.104.4
  • df41811 Allow AsyncIterable and AsyncIterator return annotation for Subscriptions...
  • 78d9ecd [pre-commit.ci] pre-commit autoupdate (#1793)
  • c775fd1 Fix Mypy issue
  • 3fd36f8 Release πŸ“ 0.104.3
  • d2c8d13 Focus error handling when parsing graphql_transport_ws messages (#1761)
  • 233a8a1 Release πŸ“ 0.104.2
  • b941fa5 Raise django min version (#1787)
  • Additional commits viewable in compare view


Dependabot compatibility score

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 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 2 years ago

Superseded by #280.