Skip to content

Commit 2b6b5d7

Browse files
chore(release): update monorepo packages versions (#2688)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 8f709a7 commit 2b6b5d7

File tree

8 files changed

+50
-34
lines changed

8 files changed

+50
-34
lines changed

.changeset/eight-llamas-mate.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/twenty-camels-wonder.md

Lines changed: 0 additions & 25 deletions
This file was deleted.

packages/plugins/rate-limiter/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# @envelop/rate-limiter
22

3+
## 8.1.1
4+
5+
### Patch Changes
6+
7+
- [#2690](https://github.com/graphql-hive/envelop/pull/2690)
8+
[`8f709a7`](https://github.com/graphql-hive/envelop/commit/8f709a7fb2809e7526c1bb591bc5fd6597807d6f)
9+
Thanks [@Tolsee](https://github.com/Tolsee)! - Fix rate limiting being wrongly applied to all
10+
fields with a default configuration.
11+
312
## 8.1.0
413

514
### Minor Changes

packages/plugins/rate-limiter/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@envelop/rate-limiter",
3-
"version": "8.1.0",
3+
"version": "8.1.1",
44
"type": "module",
55
"repository": {
66
"type": "git",

packages/plugins/response-cache-cloudflare-kv/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# @envelop/response-cache-cloudflare-kv
22

3+
## 5.0.0
4+
5+
### Patch Changes
6+
7+
- Updated dependencies
8+
[[`35539a7`](https://github.com/graphql-hive/envelop/commit/35539a780ef5f062006bb6bfb25d5ee77f5bf299)]:
9+
- @envelop/response-cache@8.1.0
10+
311
## 4.0.0
412

513
### Patch Changes

packages/plugins/response-cache-cloudflare-kv/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@envelop/response-cache-cloudflare-kv",
3-
"version": "4.0.0",
3+
"version": "5.0.0",
44
"type": "module",
55
"repository": {
66
"type": "git",
@@ -51,7 +51,7 @@
5151
},
5252
"peerDependencies": {
5353
"@cloudflare/workers-types": "^4.20231121.0",
54-
"@envelop/response-cache": "^8.0.0",
54+
"@envelop/response-cache": "^8.1.0",
5555
"graphql": "^14.0.0 || ^15.0.0 || ^16.0.0"
5656
},
5757
"peerDependenciesMeta": {

packages/plugins/response-cache/CHANGELOG.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,34 @@
11
# @envelop/response-cache
22

3+
## 8.1.0
4+
5+
### Minor Changes
6+
7+
- [#2258](https://github.com/graphql-hive/envelop/pull/2258)
8+
[`35539a7`](https://github.com/graphql-hive/envelop/commit/35539a780ef5f062006bb6bfb25d5ee77f5bf299)
9+
Thanks [@EmrysMyrddin](https://github.com/EmrysMyrddin)! - Deprecate `ttlPerType` in favor of
10+
`ttlPerSchemaCoordinate`, for a more streamlined API
11+
12+
## Migration instructions
13+
14+
If you where using `ttlPerType`, you can merge the object into the `ttlPerSchemaCoordinate`, the
15+
syntax doesn't change.
16+
17+
```diff
18+
useResponseCache({
19+
session: null,
20+
- ttlPerType: {
21+
- User: 10_000,
22+
- Profile: 600_000,
23+
- },
24+
ttlPerSchemaCoordinate: {
25+
'Query.me': 0
26+
+ User: 10_000,
27+
+ Profile: 600_000,
28+
}
29+
})
30+
```
31+
332
## 8.0.2
433

534
### Patch Changes

packages/plugins/response-cache/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@envelop/response-cache",
3-
"version": "8.0.2",
3+
"version": "8.1.0",
44
"type": "module",
55
"repository": {
66
"type": "git",

0 commit comments

Comments
 (0)