diff options
author | Valery Piashchynski <[email protected]> | 2022-08-11 12:26:16 +0200 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2022-08-11 12:26:16 +0200 |
commit | 140cbe9566ef7888b1a4b2f6d9239a2b9d7f78ac (patch) | |
tree | 8c84724d1b771c494626b524ca314ca56fd76050 /CHANGELOG.md | |
parent | f79acaba6daf0f2c3ad503c5401e6923bee45bbc (diff) |
release v2.11.0-rc.1
Signed-off-by: Valery Piashchynski <[email protected]>
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r-- | CHANGELOG.md | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index c0ead15c..46fa9f9b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,68 @@ # CHANGELOG +## v2.11.0-rc.1 (11.08.2022) + +## ๐ New: + +- โ๏ธ **gRPC plugin**: Reflection server configuration updated. To prevent issues regarding incorrectly checked/parsed proto imports, we introduce an updated config: + +To activate a reflection server, use the following option: + +1. If you don't have any imports. +```yaml + reflection_server: {} +``` + +2. If you use definitions from other `.proto` files by importing them: +```yaml + # other options ... + + proto: + - "path/to/main/proto1.proto" + - "path/to/main/proto2.proto" + + reflection_server: + - "path/to/include.proto" + - "path/to/include2.proto" + + # other options ... +``` + +- โ๏ธ **Kafka plugin**: Consumer groups. Starting from the `rc.1` if you specify `group_id`, RR will automatically connect to that CG with provided topic name. + +```yaml +jobs: + num_pollers: 10 + pipeline_size: 100000 + timeout: 100 + pool: + num_workers: 10 + allocate_timeout: 60s + destroy_timeout: 60s + + pipelines: + test-1: + driver: kafka + config: + # other options ... + group_id: "foo-1" # <----- NEW +``` + +## ๐ฉน Fixes: + +- ๐ **Server plugin**: use the `allocate_timeout` from the pool to wait for the `tcp/unix` socket connection from the PHP worker. [BUG](https://github.com/roadrunner-server/roadrunner/issues/1226), (thanks @Warxcell) + +## ๐งน Chore: + +- ๐งฝ **Logger plugin**: use the parsable timestamp format for the `raw` logger mode. [CH](https://github.com/roadrunner-server/roadrunner/issues/1236), (thanks @ilsenem) + +## ๐ง Maintenance: + +- Temporal `GO-SDK` and `API` updated to the latest versions. + +--- + + ## v2.11.0-beta.3 (07.08.2022) ## โ ๏ธ NewRelic middleware was removed. Please, use [OTEL middleware instead](https://roadrunner.dev/docs/middleware-otel/2.x/en) |