summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorValery Piashchynski <[email protected]>2022-09-29 20:36:25 +0200
committerValery Piashchynski <[email protected]>2022-09-29 20:36:25 +0200
commit2fc6b2ec242b48c2c2f0f59898095e5860c2c903 (patch)
treeb06a346d33bab3fd2e928f8e087c168447309623
parent07610e3545c6c4f8dff2b7a936cec5c637c10954 (diff)
update CHANGELOG
Signed-off-by: Valery Piashchynski <[email protected]>
-rw-r--r--CHANGELOG.md35
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)