diff --git a/CHANGELOG.md b/CHANGELOG.md index 7c53414212..54b838f82c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,28 @@ CHANGELOG ========= +0.233.3 - 2024-05-31 +-------------------- + +This release fixes a typing issue where trying to type a `root` argument with +`strawberry.Parent` would fail, like in the following example: + +```python +import strawberry + + +@strawberry.type +class SomeType: + @strawberry.field + def hello(self, root: strawberry.Parent[str]) -> str: + return "world" +``` + +This should now work as intended. + +Contributed by [Thiago Bellini Ribeiro](https://github.com/bellini666) via [PR #3529](https://github.com/strawberry-graphql/strawberry/pull/3529/) + + 0.233.2 - 2024-05-31 -------------------- diff --git a/RELEASE.md b/RELEASE.md deleted file mode 100644 index 7320687cc2..0000000000 --- a/RELEASE.md +++ /dev/null @@ -1,17 +0,0 @@ -Release type: patch - -This release fixes a typing issue where trying to type a `root` argument with -`strawberry.Parent` would fail, like in the following example: - -```python -import strawberry - - -@strawberry.type -class SomeType: - @strawberry.field - def hello(self, root: strawberry.Parent[str]) -> str: - return "world" -``` - -This should now work as intended. diff --git a/pyproject.toml b/pyproject.toml index 6a6d883984..63a203ed8e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [tool.poetry] name = "strawberry-graphql" packages = [ { include = "strawberry" } ] -version = "0.233.2" +version = "0.233.3" description = "A library for creating GraphQL APIs" authors = ["Patrick Arminio "] license = "MIT"