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.140.0 #374

Closed dependabot[bot] closed 1 year ago

dependabot[bot] commented 1 year ago

Bumps strawberry-graphql from 0.133.5 to 0.140.0.

Release notes

Sourced from strawberry-graphql's releases.

๐Ÿ“ 0.140.0

This release allows to disable operation logging when running the debug server.

strawberry server demo --log-operations False

๐Ÿ“ 0.139.0

This release changes the type resolution priority to prefer the field annotation over the resolver return type.

def my_resolver() -> str:
    return "1.33"

@โ€‹strawberry.type class Query: a: float = strawberry.field(resolver=my_resolver)

schema = strawberry.Schema(Query)

Before:

str(schema) == """ type Query { a: String! } """

After:

str(schema) == """ type Query { a: Float! } """

๐Ÿ“ 0.138.2

Fix Pydantic integration for Python 3.10.0 (which was missing the kw_only parameter for dataclasses.make_dataclass()).

๐Ÿ“ 0.138.1

This release changes an internal implementation for FastAPI's GraphQL router. This should reduce overhead when using the context, and it shouldn't affect your code.

๐Ÿ“ 0.138.0

This release adds support for generic in arguments, see the following example:

T = TypeVar('T')

</tr></table>

... (truncated)

Changelog

Sourced from strawberry-graphql's changelog.

0.140.0 - 2022-11-07

This release allows to disable operation logging when running the debug server.

strawberry server demo --log-operations False

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

0.139.0 - 2022-11-04

This release changes the type resolution priority to prefer the field annotation over the resolver return type.

def my_resolver() -> str:
    return "1.33"

@โ€‹strawberry.type class Query: a: float = strawberry.field(resolver=my_resolver)

schema = strawberry.Schema(Query)

Before:

str(schema) == """ type Query { a: String! } """

After:

str(schema) == """ type Query { a: Float! } """

Contributed by Jonathan Kim via [PR #2312](strawberry-graphql/strawberry#2312)

0.138.2 - 2022-11-04

Fix Pydantic integration for Python 3.10.0 (which was missing the kw_only parameter for dataclasses.make_dataclass()).

... (truncated)

Commits
  • 5f825e6 Release ๐Ÿ“ 0.140.0
  • f5378cb Allow to disable operation logging in debug server (#2310)
  • b1025d5 Release ๐Ÿ“ 0.139.0
  • 72ee86c Prefer class annotation over resolver annotation when determining field type ...
  • 846f060 Release ๐Ÿ“ 0.138.2
  • 1b3db43 Fix dataclass creation in Pydantic integration for Python 3.10.0 (#2309)
  • 85c48c3 Bump pytest-benchmark from 3.4.1 to 4.0.0 (#2286)
  • 2ad9d62 Bump fastapi from 0.85.1 to 0.85.2 (#2301)
  • 7d23d8b Bump flake8-bugbear from 22.9.23 to 22.10.27 (#2288)
  • f8d2e9b [pre-commit.ci] pre-commit autoupdate (#2299)
  • 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 1 year ago

Superseded by #375.