diff --git a/CHANGELOG.md b/CHANGELOG.md index 54b838f82c..68d52ac73a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,22 @@ CHANGELOG ========= +0.234.0 - 2024-06-01 +-------------------- + +This release separates the `relay.ListConnection` logic that calculates the +slice of the nodes into a separate function. + +This allows for easier reuse of that logic for other places/libraries. + +The new function lives in the `strawberry.relay.utils` and can be used by +calling `SliceMetadata.from_arguments`. + +This has no implications to end users. + +Contributed by [Thiago Bellini Ribeiro](https://github.com/bellini666) via [PR #3530](https://github.com/strawberry-graphql/strawberry/pull/3530/) + + 0.233.3 - 2024-05-31 -------------------- diff --git a/RELEASE.md b/RELEASE.md deleted file mode 100644 index 0bd566451a..0000000000 --- a/RELEASE.md +++ /dev/null @@ -1,11 +0,0 @@ -Release type: minor - -This release separates the `relay.ListConnection` logic that calculates the -slice of the nodes into a separate function. - -This allows for easier reuse of that logic for other places/libraries. - -The new function lives in the `strawberry.relay.utils` and can be used by -calling `SliceMetadata.from_arguments`. - -This has no implications to end users. diff --git a/pyproject.toml b/pyproject.toml index 63a203ed8e..d18b0e7fa7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [tool.poetry] name = "strawberry-graphql" packages = [ { include = "strawberry" } ] -version = "0.233.3" +version = "0.234.0" description = "A library for creating GraphQL APIs" authors = ["Patrick Arminio "] license = "MIT"