Skip to content

Commit

Permalink
Release 🍓 0.211.1
Browse files Browse the repository at this point in the history
  • Loading branch information
botberry committed Oct 25, 2023
1 parent 6e0534f commit 1b38209
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 13 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,23 @@
CHANGELOG
=========

0.211.1 - 2023-10-25
--------------------

This release fixes an issue that prevented the `parser_cache` extension to be used in combination with
other extensions such as `MaxTokensLimiter`.

The following should work as expected now:

```python
schema = strawberry.Schema(
query=Query, extensions=[MaxTokensLimiter(max_token_count=20), ParserCache()]
)
```

Contributed by [David Šanda](https://github.com/Dazix) via [PR #3170](https://github.com/strawberry-graphql/strawberry/pull/3170/)


0.211.0 - 2023-10-24
--------------------

Expand Down
12 changes: 0 additions & 12 deletions RELEASE.md

This file was deleted.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tool.poetry]
name = "strawberry-graphql"
packages = [ { include = "strawberry" } ]
version = "0.211.0"
version = "0.211.1"
description = "A library for creating GraphQL APIs"
authors = ["Patrick Arminio <[email protected]>"]
license = "MIT"
Expand Down

0 comments on commit 1b38209

Please sign in to comment.