Strawberry-graphql

Latest version: v0.235.0

Safety actively analyzes 638437 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 106 of 122

0.34.1

Not secure
-------------------

This release fixes an issue with mypy when doing the following:

python
import strawberry


strawberry.type
class User:
name: str = strawberry.field(description="Example")

0.34.0

Not secure
-------------------

This release adds support for Apollo Tracing and support for creating Strawberry
extensions, here's how you can enable Apollo tracing:

python
from strawberry.extensions.tracing import ApolloTracingExtension

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


And here's an example of custom extension:

python
from strawberry.extensions import Extension


class MyExtension(Extension):
def get_results(self):
return {"example": "this is an example for an extension"}


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

0.33.1

Not secure
-------------------

This release fixes an issue when trying to print a type
with a UNSET default value

0.33.0

Not secure
-------------------

* `UnionDefinition` has been renamed to `StrawberryUnion`
* `strawberry.union` now returns an instance of `StrawberryUnion` instead of a
dynamically generated class instance with a `_union_definition` attribute of
type `UnionDefinition`.

0.32.4

Not secure
-------------------

This release adds the `py.typed` file for better mypy support.

0.32.3

Not secure
-------------------

This release fixes another issue with extending types.

Page 106 of 122

Links

Releases

Has known vulnerabilities

© 2024 Safety CLI Cybersecurity Inc. All Rights Reserved.