summaryrefslogtreecommitdiff
path: root/CHANGELOG.md
diff options
context:
space:
mode:
authorValery Piashchynski <[email protected]>2022-02-21 10:46:44 +0300
committerGitHub <[email protected]>2022-02-21 10:46:44 +0300
commit6f690001175859149910eadc33f4306ba2e3015d (patch)
tree7c8b06ba54a03739c76a11c5583e19fb940673b6 /CHANGELOG.md
parentfcb4900febce77c96ffaa8bad2fb02071cb2c689 (diff)
parent1d9b334f29b229847587f2f48d414e76467cf0b9 (diff)
[#1019]: release: `v2.8.1`v2.8.1
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md20
1 files changed, 20 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 902e5eb3..d7f69736 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,25 @@
# CHANGELOG
+## v2.8.1 (21.02.2022)
+
+## 🩹 Fixes:
+
+- 🐛 Fix: **HTTP**: incorrect middleware chain order [BUG](https://github.com/roadrunner-server/roadrunner/issues/1017), (reporter @nitrogenium)
+```yaml
+http:
+ middleware: ["static", "gzip"]
+```
+
+Middleware applied from the right to left, i.e. first will be `gzip` and then `static`.
+
+## 👀 New:
+
+- ✏️ **HTTP**: Properly parse `Forwarder` header, [RFC](https://datatracker.ietf.org/doc/html/rfc7239), [FR](https://github.com/roadrunner-server/roadrunner/issues/1018) (reporter @digitalkaoz)
+- ✏️ **TEMPORAL**: Add `rr_activities_pool_queue_size` and `rr_workflows_pool_queue_size` metrics. These metrics shows the number of activities/workflows waiting for the worker [BUG](https://github.com/temporalio/roadrunner-temporal/issues/183), (reporter @Zylius)
+- ✏️ **API**: `Queuer` interface for the workers pool to show the number of requests waiting for the worker. Implemented in **SDK**.
+
+---
+
## v2.8.0 (17.02.2022)
### ⚠️ For the RR `v2.8.0` your `.rr.yaml` configuration version should be [`2.7`](https://github.com/roadrunner-server/roadrunner/blob/master/.rr.yaml), so please update your config and add `version: '2.7'` at the top.