diff --git a/CHANGELOG.md b/CHANGELOG.md index 54aa166998..17663c2065 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,16 @@ CHANGELOG ========= +0.246.3 - 2024-10-21 +-------------------- + +This release addresses a bug where directives were being added multiple times when defined in an interface which multiple objects inherits from. + +The fix involves deduplicating directives when applying extensions/permissions to a field, ensuring that each directive is only added once. + +Contributed by [Arthur](https://github.com/Speedy1991) via [PR #3674](https://github.com/strawberry-graphql/strawberry/pull/3674/) + + 0.246.2 - 2024-10-12 -------------------- diff --git a/RELEASE.md b/RELEASE.md deleted file mode 100644 index caa51f3d22..0000000000 --- a/RELEASE.md +++ /dev/null @@ -1,5 +0,0 @@ -Release type: patch - -This release addresses a bug where directives were being added multiple times when defined in an interface which multiple objects inherits from. - -The fix involves deduplicating directives when applying extensions/permissions to a field, ensuring that each directive is only added once. diff --git a/pyproject.toml b/pyproject.toml index 29e173ab7d..5459dd25e1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [tool.poetry] name = "strawberry-graphql" packages = [ { include = "strawberry" } ] -version = "0.246.2" +version = "0.246.3" description = "A library for creating GraphQL APIs" authors = ["Patrick Arminio "] license = "MIT"