Skip to content

Commit

Permalink
Release 🍓 0.229.2
Browse files Browse the repository at this point in the history
  • Loading branch information
botberry committed May 22, 2024
1 parent 8b30e07 commit a8b108e
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 22 deletions.
26 changes: 26 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,32 @@
CHANGELOG
=========

0.229.2 - 2024-05-22
--------------------

This release fixes an issue when using `Annotated` + `strawberry.lazy` +
deferred annotations such as:

```python
from __future__ import annotations
import strawberry
from typing import Annotated


@strawberry.type
class Query:
a: Annotated["datetime", strawberry.lazy("datetime")]


schema = strawberry.Schema(Query)
```

Before this would only work if `datetime` was not inside quotes. Now it should
work as expected!

Contributed by [Thiago Bellini Ribeiro](https://github.com/bellini666) via [PR #3507](https://github.com/strawberry-graphql/strawberry/pull/3507/)


0.229.1 - 2024-05-15
--------------------

Expand Down
21 changes: 0 additions & 21 deletions RELEASE.md

This file was deleted.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tool.poetry]
name = "strawberry-graphql"
packages = [ { include = "strawberry" } ]
version = "0.229.1"
version = "0.229.2"
description = "A library for creating GraphQL APIs"
authors = ["Patrick Arminio <[email protected]>"]
license = "MIT"
Expand Down

0 comments on commit a8b108e

Please sign in to comment.