diff options
author | Valery Piashchynski <[email protected]> | 2022-09-29 20:36:25 +0200 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2022-09-29 20:36:25 +0200 |
commit | 2fc6b2ec242b48c2c2f0f59898095e5860c2c903 (patch) | |
tree | b06a346d33bab3fd2e928f8e087c168447309623 | |
parent | 07610e3545c6c4f8dff2b7a936cec5c637c10954 (diff) |
update CHANGELOG
Signed-off-by: Valery Piashchynski <[email protected]>
-rw-r--r-- | CHANGELOG.md | 35 |
1 files changed, 34 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index f6b2a306..5004f588 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,38 @@ # CHANGELOG +## v2.11.3 (29.09.2022) + +## ๐ New: +- โ **[ALPHA] gRPC plugin**: `buf` remote plugins support for the `protoc-gen-php-grpc` plugin. [FR](https://github.com/roadrunner-server/roadrunner/issues/1297), (thanks @rauanmayemir) +- โ **Temporal plugin**: `mTLS` support. [FR](https://github.com/roadrunner-server/roadrunner/issues/1300), (thanks @seregazhuk) + +[Configuration sample](https://github.com/roadrunner-server/roadrunner/blob/master/.rr.yaml#L252): + +```yaml +temporal: + address: 127.0.0.1:7233 + cache_size: 100000 + activities: + num_workers: 4 + + tls: + key: client.key + cert: client.pem + root_ca: ca.cert + client_auth_type: require_and_verify_client_cert + server_name: "tls-sample" +``` + + +## ๐ฉน Fixes: +- ๐ **Config plugin**: properly replace environment variables for the array `yaml` values. [BUG](https://github.com/roadrunner-server/roadrunner/issues/1308), (thanks @lyt8384) + +## ๐งน Chore: + +- ๐งโ๐ญ: **[ALPHA] gRPC plugin**: `base64` decoder for the google's `ErrorProto` structure. [FR](https://github.com/roadrunner-server/roadrunner/issues/1273), (thanks @rauanmayemir) + +--- + ## v2.11.2 (13.09.2022) ## ๐ New: @@ -9,7 +42,7 @@ - โ **Internal**: `./rr reset` now works in parallel. All workers will be restarted simultaneously instead of a one-by-one sync approach. - โ **Internal**: `./rr reset` and destroy (when stopping RR) now gracefully stop the workers (giving a chance for the finalizers to work). If the worker doesn't respond in 10 seconds, it'll be killed. -- + ## ๐ฉน Fixes: - ๐ **SQS plugin**: Incorrect detection of the `AWS IMDSv2` instances, [BUG](https://github.com/roadrunner-server/roadrunner/issues/1250) (thanks @paulermo) |