summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorValery Piashchynski <[email protected]>2023-05-25 12:40:51 +0200
committerValery Piashchynski <[email protected]>2023-05-25 12:40:51 +0200
commita9800eae9f06092c8c339d197067e6afb503a445 (patch)
tree8d3246938c19838b9431f748e3699df8bb648049
parent9002b16d9944dc72b9c26b785232861ed43dd787 (diff)
feat: update CHANGELOG
Signed-off-by: Valery Piashchynski <[email protected]>
-rw-r--r--.rr.yaml5
-rw-r--r--CHANGELOG.md17
-rw-r--r--schemas/config/3.0.schema.json2
3 files changed, 21 insertions, 3 deletions
diff --git a/.rr.yaml b/.rr.yaml
index ccac36d5..f88a6b26 100644
--- a/.rr.yaml
+++ b/.rr.yaml
@@ -1751,10 +1751,11 @@ grpc:
# This option is required
listen: "tcp://127.0.0.1:9001"
- # Proto file to use, multiply files supported [SINCE 2.6]
+ # Proto file to use, multiply files supported [SINCE 2.6]. As of v2023.1.4, wilcards are allowed in the proto field.
#
# This option is required
proto:
+ - "*.proto" # wilcard
- "first.proto"
- "second.proto"
@@ -2025,7 +2026,7 @@ centrifuge:
#
# Optional, default: roadrunner
name: "roadrunner"
-
+
# Workers pool settings.
pool:
# Debug mode for the pool. In this mode, pool will not pre-allocate the worker. Worker (only 1, num_workers ignored) will be allocated right after the request arrived.
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 868097af..d1fa8329 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,22 @@
# CHANGELOG
+# <center> ๐Ÿš€ v2023.1.4 ๐Ÿš€ </center>
+
+## ๐Ÿฉน Fixes
+
+- ๐Ÿ› **gRPC plugin**: allow specifying wildcards in the `proto` field: [PR](https://github.com/roadrunner-server/roadrunner/issues/1553), (thanks @MaxSem)
+- ๐Ÿ› **SDK (internal)**: Workers are killed during processing when memory usage is exeeded: [BUG](https://github.com/roadrunner-server/roadrunner/issues/1561), (thanks @ekisu)
+- ๐Ÿ› **JOBS plugin**: Jobs plugin hangd on many workers and pollers: [BUG](https://github.com/roadrunner-server/roadrunner/issues/1568), (thanks @embargo2710)
+- ๐Ÿ› **JOBS plugin**: Safe shutdown occurs before the specified time: [BUG](https://github.com/roadrunner-server/roadrunner/issues/1567), (thanks @embargo2710)
+- ๐Ÿ› **JOBS plugin**: Incorrect parsing of JSON configuration values: [BUG](https://github.com/roadrunner-server/roadrunner/issues/1557), (thanks @embargo2710)
+- ๐Ÿ› **AMQP plugin**: Typo in the property name (`multiple_ack`): [BUG](https://github.com/roadrunner-server/roadrunner/issues/1565), (thanks @embargo2710)
+
+### <center>๐Ÿงน Chore:</center>
+
+- ๐Ÿง‘โ€๐Ÿญ **Dependencies**: update project dependencies.
+
+---
+
# <center> ๐Ÿš€ v2023.1.3 ๐Ÿš€ </center>
## ๐Ÿฉน Fixes
diff --git a/schemas/config/3.0.schema.json b/schemas/config/3.0.schema.json
index aa578ba3..5134dba0 100644
--- a/schemas/config/3.0.schema.json
+++ b/schemas/config/3.0.schema.json
@@ -1852,7 +1852,7 @@
},
"proto": {
"type": "array",
- "description": "Proto file to use, multiply files supported [SINCE 2.6]",
+ "description": "Proto file to use, multiply files supported [SINCE 2.6]. As of [v2023.1.4], wilcards are allowed in the proto field",
"items": {
"type": "string"
}