You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+14Lines changed: 14 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,20 @@
2
2
3
3
This project adheres to [Semantic Versioning v2.0.0](https://semver.org/spec/v2.0.0.html).
4
4
5
+
# [2.13.1] - 2026-04-03
6
+
7
+
## 🐛 Fixes
8
+
9
+
### Fix spurious `REQUEST_RATE_LIMITED` errors when no rate limiting is configured ([PR #9034](https://github.com/apollographql/router/pull/9034))
10
+
11
+
Under sustained load, the router could return `REQUEST_RATE_LIMITED` (429) errors even when no rate limiting was configured. An internal queue had an implicit limit that could trigger load shedding, even if the queue was not _actually_ overloaded.
12
+
13
+
This fix removes that implicit limit, so requests are shed only when the queue is genuinely full. The queue still has explicit limits to ensure quality of service.
14
+
15
+
By [@jhrldev](https://github.com/jhrldev) in https://github.com/apollographql/router/pull/9034
0 commit comments