diff options
author | Valery Piashchynski <[email protected]> | 2022-02-20 11:02:35 +0300 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2022-02-20 11:02:35 +0300 |
commit | 7003101f7e03bf9335edaeaab8c2c104e8b96221 (patch) | |
tree | 527354d7160ca69f4007438c9bd9e60d66bcdd6d /CHANGELOG.md | |
parent | 1e4f12a7dacb3e2af5cdab10025221b523680894 (diff) |
release 2.8.1
Signed-off-by: Valery Piashchynski <[email protected]>
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r-- | CHANGELOG.md | 20 |
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. |