diff --git a/CHANGELOG.md b/CHANGELOG.md index af92861f8a..ee12796e9b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,16 @@ CHANGELOG ========= +0.250.0 - 2024-11-18 +-------------------- + +In this release, we migrated the `graphql-transport-ws` types from data classes to typed dicts. +Using typed dicts enabled us to precisely model `null` versus `undefined` values, which are common in that protocol. +As a result, we could remove custom conversion methods handling these cases and simplify the codebase. + +Contributed by [Jonathan Ehwald](https://github.com/DoctorJohn) via [PR #3701](https://github.com/strawberry-graphql/strawberry/pull/3701/) + + 0.249.0 - 2024-11-18 -------------------- diff --git a/RELEASE.md b/RELEASE.md deleted file mode 100644 index 91b0163149..0000000000 --- a/RELEASE.md +++ /dev/null @@ -1,5 +0,0 @@ -Release type: minor - -In this release, we migrated the `graphql-transport-ws` types from data classes to typed dicts. -Using typed dicts enabled us to precisely model `null` versus `undefined` values, which are common in that protocol. -As a result, we could remove custom conversion methods handling these cases and simplify the codebase. diff --git a/pyproject.toml b/pyproject.toml index 48bb1523b8..9990d61d72 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [tool.poetry] name = "strawberry-graphql" packages = [ { include = "strawberry" } ] -version = "0.249.0" +version = "0.250.0" description = "A library for creating GraphQL APIs" authors = ["Patrick Arminio "] license = "MIT"