KundaPanda / strawberry-django-jwt

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

Bump strawberry-graphql from 0.133.5 to 0.137.1 #371

Closed dependabot[bot] closed 1 year ago

dependabot[bot] commented 1 year ago

Bumps strawberry-graphql from 0.133.5 to 0.137.1.

Release notes

Sourced from strawberry-graphql's releases.

πŸ“ 0.137.1

Allowed CustomScalar | None syntax for python >= 3.10.

πŸ“ 0.137.0

This release fixes errors when using Union-of-lazy-types

πŸ“ 0.136.0

This release refactors the chalice integration in order to keep it consistent with the other integrations.

Deprecation:

Passing render_graphiql is now deprecated, please use graphiql instead.

New features:

  • You can now return a custom status by using info.context["response"].status_code = 418
  • You can enabled/disable queries via get using allow_queries_via_get (defaults to True)

Changes:

Trying to access /graphql via a browser and with graphiql set to False will return a 404.

πŸ“ 0.135.0

This release adds a new MaskErrors extension that can be used to hide error messages from the client to prevent exposing sensitive details. By default it masks all errors raised in any field resolver.

import strawberry
from strawberry.extensions import MaskErrors

schema = strawberry.Schema( Query, extensions=[ MaskErrors(), ] )

πŸ“ 0.134.5

This release improves the error message that you get when trying to use an enum that hasn't been decorated with @strawberry.enum inside a type's field.

πŸ“ 0.134.4

This release adds support for printing schema directives on an input type object, for example the following schema:

@strawberry.schema_directive(locations=[Location.INPUT_FIELD_DEFINITION])
</tr></table> 

... (truncated)

Changelog

Sourced from strawberry-graphql's changelog.

0.137.1 - 2022-10-24

Allowed CustomScalar | None syntax for python >= 3.10.

Contributed by Guillaume Andreu Sabater via [PR #2279](strawberry-graphql/strawberry#2279)

0.137.0 - 2022-10-21

This release fixes errors when using Union-of-lazy-types

Contributed by Paulo Costa via [PR #2271](strawberry-graphql/strawberry#2271)

0.136.0 - 2022-10-21

This release refactors the chalice integration in order to keep it consistent with the other integrations.

Deprecation:

Passing render_graphiql is now deprecated, please use graphiql instead.

New features:

  • You can now return a custom status by using info.context["response"].status_code = 418
  • You can enabled/disable queries via get using allow_queries_via_get (defaults to True)

Changes:

Trying to access /graphql via a browser and with graphiql set to False will return a 404.

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

0.135.0 - 2022-10-21

This release adds a new MaskErrors extension that can be used to hide error messages from the client to prevent exposing sensitive details. By default it masks all errors raised in any field resolver.

import strawberry
from strawberry.extensions import MaskErrors

schema = strawberry.Schema( </tr></table>

... (truncated)

Commits


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 1 year ago

Superseded by #373.