From 8859ad3fe42b38df355e5fc4e9cf56b1898f1ea8 Mon Sep 17 00:00:00 2001 From: Botberry Date: Mon, 21 Oct 2024 15:38:49 +0000 Subject: [PATCH] =?UTF-8?q?Release=20=F0=9F=8D=93=200.247.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 11 +++++++++++ RELEASE.md | 6 ------ pyproject.toml | 2 +- 3 files changed, 12 insertions(+), 7 deletions(-) delete mode 100644 RELEASE.md diff --git a/CHANGELOG.md b/CHANGELOG.md index 17663c2065..2335d38d8e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,17 @@ CHANGELOG ========= +0.247.0 - 2024-10-21 +-------------------- + +This release fixes a regression in the legacy GraphQL over WebSocket protocol. +Legacy protocol implementations should ignore client message parsing errors. +During a recent refactor, Strawberry changed this behavior to match the new protocol, where parsing errors must close the WebSocket connection. +The expected behavior is restored and adequately tested in this release. + +Contributed by [Jonathan Ehwald](https://github.com/DoctorJohn) via [PR #3670](https://github.com/strawberry-graphql/strawberry/pull/3670/) + + 0.246.3 - 2024-10-21 -------------------- diff --git a/RELEASE.md b/RELEASE.md deleted file mode 100644 index bd4c01aeae..0000000000 --- a/RELEASE.md +++ /dev/null @@ -1,6 +0,0 @@ -Release type: minor - -This release fixes a regression in the legacy GraphQL over WebSocket protocol. -Legacy protocol implementations should ignore client message parsing errors. -During a recent refactor, Strawberry changed this behavior to match the new protocol, where parsing errors must close the WebSocket connection. -The expected behavior is restored and adequately tested in this release. diff --git a/pyproject.toml b/pyproject.toml index 5459dd25e1..d69957c1f0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [tool.poetry] name = "strawberry-graphql" packages = [ { include = "strawberry" } ] -version = "0.246.3" +version = "0.247.0" description = "A library for creating GraphQL APIs" authors = ["Patrick Arminio "] license = "MIT"