diff options
author | Valery Piashchynski <[email protected]> | 2022-11-12 15:03:49 +0100 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2022-11-12 15:03:49 +0100 |
commit | 2df6445a694c7515165a9dd0a9d7754ca79bf0f1 (patch) | |
tree | b5803b2d6b34b0176612334f8fa96cf4d27e52b7 /CHANGELOG.md | |
parent | d7eb7d56a76c67413293325add0102e7eb9b977a (diff) |
pre-release
Signed-off-by: Valery Piashchynski <[email protected]>
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r-- | CHANGELOG.md | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 84251188..544329c2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,45 @@ # CHANGELOG +## v2.12.0-rc.1 (12.11.2022) + +## 👀 New: + +- ✏ **All plugins**: update to `v3`. This is done not because of some breaking change but because of the internal update. +- ✏ **RPC plugin**: add new API to provide a running RR version and RR configuration in JSON format. +- ✏ **AMQP plugin**: new configuration options. [FR](https://github.com/roadrunner-server/roadrunner/issues/1351), (thanks @andrey-tech) +```yaml +jobs: + pipelines: + example: + driver: amqp + config: + # Durable exchange + # + # Default: true + exchange_durable: true + + # Auto-deleted exchange + # + # Default: false + exchange_auto_deleted: false + + # Auto-deleted queue + # + # Default: false + queue_auto_deleted: false +``` + +- ✏ **Workers pool (SDK)**: New option to control the `reset_timeout`. Note that the `pool.Reset` is protected by mutexes, meaning that if you have some requests already in the pool, you'll have to wait for these requests to be processed. The `reset_timeout` does not count this time. + +```yaml +pool: + allocate_timeout: 10s + reset_timeout: 10s + destroy_timeout: 10s +``` + +--- + ## v2.12.0-beta.1 (03.11.2022) # ⚠️ `websocket` and `broadcast` plugins was replaced by the new `centrifuge` plugin. |