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.133.5 to 0.134.5 #367

Closed dependabot[bot] closed 2 years ago

dependabot[bot] commented 2 years ago

Bumps strawberry-graphql from 0.133.5 to 0.134.5.

Release notes

Sourced from strawberry-graphql's releases.

🍓 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])
class RangeInput:
    min: int
    max: int

@​strawberry.input class CreateUserInput: name: str age: int = strawberry.field(directives=[RangeInput(min=1, max=100)])

prints the following:

directive @rangeInput(min: Int!, max: Int!) on INPUT_FIELD_DEFINITION

input Input @​sensitiveInput(reason: "GDPR") { firstName: String! age: Int! @​rangeInput(min: 1, max: 100) }

🍓 0.134.3

This release fixes an issue that prevented using strawberry.lazy with relative paths.

The following should work now:

@strawberry.type
class TypeA:
    b: Annotated["TypeB", strawberry.lazy(".type_b")]

🍓 0.134.2

This release adds pyupgrade to our CI and includes some minor changes to keep our codebase modern.

🍓 0.134.1

This release fixes an issue that prevented using lazy types inside generic types.

The following is now allowed:

... (truncated)

Changelog

Sourced from strawberry-graphql's changelog.

0.134.5 - 2022-10-20

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.

Contributed by Rise Riyo via [PR #2267](strawberry-graphql/strawberry#2267)

0.134.4 - 2022-10-20

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])
class RangeInput:
    min: int
    max: int

@​strawberry.input class CreateUserInput: name: str age: int = strawberry.field(directives=[RangeInput(min=1, max=100)])

prints the following:

directive @rangeInput(min: Int!, max: Int!) on INPUT_FIELD_DEFINITION

input Input @​sensitiveInput(reason: "GDPR") { firstName: String! age: Int! @​rangeInput(min: 1, max: 100) }

Contributed by Etty via [PR #2233](strawberry-graphql/strawberry#2233)

0.134.3 - 2022-10-16

This release fixes an issue that prevented using strawberry.lazy with relative paths.

The following should work now:

@strawberry.type
</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 2 years ago

Superseded by #370.