diff options
author | Valery Piashchynski <[email protected]> | 2022-08-06 01:03:56 +0200 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2022-08-06 01:03:56 +0200 |
commit | d94c92065d96496387caee8b0a105ac43beeba52 (patch) | |
tree | dd2a6734631c618b55a619dadd298088b2231b23 | |
parent | c92a4921f042731c789c3fd36b52eb5286140ca0 (diff) |
update CHANGELOG
Signed-off-by: Valery Piashchynski <[email protected]>
-rw-r--r-- | CHANGELOG.md | 20 | ||||
-rw-r--r-- | container/plugins.go | 1 |
2 files changed, 11 insertions, 10 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index d2a88928..a1814b90 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,16 +2,17 @@ ## 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) - +## ⚠️ NewRelic middleware was removed. Please, use [OTEL middleware instead](https://roadrunner.dev/docs/middleware-otel/2.x/en) +## ⚠️ In `2.12.0` we plan to replace `websockets` and `broadcast` plugins with the `centrifuge` plugin. However, if you still need a RR with these deprecated plugins, you may use `Velox` to build your custom build. ## 👀 New: -- ✏️ **CLI**: New CLI command to pause,resume,destroy and list Jobs. [FR](https://github.com/roadrunner-server/roadrunner/issues/1088), (thanks @hustlahusky). -- ✏️ **Velox**: New configuration option: `folder` which can be used to specify the folder with the plugin in the repository. (thanks @darkweak). -- ✏️ **Velox**: Velox now respect plugin's `replace` directives. (thanks @darkweak). +- ✏️ **CLI**: New CLI command to pause, resume, destroy and list Jobs. [FR](https://github.com/roadrunner-server/roadrunner/issues/1088), (thanks @hustlahusky). +- ✏️ **Velox**: New configuration option: `folder`, which can be used to specify the folder with the plugin in the repository. (thanks, @darkweak). +- ✏️ **Velox**: Velox now respects the plugin's `replace` directives. (thanks, @darkweak). - ✏️ **Cache plugin**: RR now uses a great cache (RFC 7234) plugin made by @darkweak. -- ✏️ **[BETA] Kafka plugin**: New Kafka driver for the Jobs plugin. [FR](https://github.com/roadrunner-server/roadrunner/issues/1128), (thanks @Smolevich). -- ✏️ **Temporal plugin**: Temporal plugin now supports a TSL based on the key and cert. +- ✏️ **[BETA] Kafka plugin**: New Kafka driver for the Jobs plugin. [FR](https://github.com/roadrunner-server/roadrunner/issues/1128), (thanks, @Smolevich). +- ✏️ **Temporal plugin**: Temporal plugin now supports a TSL-based authentication with the key and certificate. +- ✏️ **Temporal plugin**: Temporal now uses a new reset mechanism to prevent WF worker restarts on activity worker failure. Configuration: ```yaml @@ -24,11 +25,12 @@ temporal: ## 🩹 Fixes: -- 🐛 **Velox**: Fix panic when not `github` section don't specified in the configuration. +- 🐛 **Velox**: Fix panic when there is no `github` dspecified in the configuration. ## 🔧 Maintenance: -- All plugins including RR now uses Go 1.19 +- All plugins, including RR, now uses Go 1.19 + --- diff --git a/container/plugins.go b/container/plugins.go index 32967669..69b87ee3 100644 --- a/container/plugins.go +++ b/container/plugins.go @@ -89,7 +89,6 @@ func Plugins() []interface{} { //nolint:funlen &memory.Plugin{}, // KV + Jobs &boltdb.Plugin{}, - // broadcast via memory or redis // used in conjunction with Websockets, memory and redis plugins &broadcast.Plugin{}, |