summaryrefslogtreecommitdiff
path: root/release-notes
diff options
context:
space:
mode:
authorMichael Klishin <michael@clojurewerkz.org>2023-03-22 01:12:03 +0400
committerMichael Klishin <michael@clojurewerkz.org>2023-03-22 01:12:03 +0400
commite860be1ded7e7fa96283766ecc824481115293c3 (patch)
treeb5e08a0edc4a2cc049ddd9b1e832335342640d8f /release-notes
parent8309cad83ae004d171b4c119ba1cee1d28cc9757 (diff)
downloadrabbitmq-server-git-e860be1ded7e7fa96283766ecc824481115293c3.tar.gz
Update 3.10.20 release notes
Diffstat (limited to 'release-notes')
-rw-r--r--release-notes/3.10.20.md24
1 files changed, 24 insertions, 0 deletions
diff --git a/release-notes/3.10.20.md b/release-notes/3.10.20.md
index eb290334d1..f2f18f9caa 100644
--- a/release-notes/3.10.20.md
+++ b/release-notes/3.10.20.md
@@ -30,6 +30,18 @@ Release notes can be found on GitHub at [rabbitmq-server/release-notes](https://
### Bug Fixes
+ * Boot time import of definitions from a `conf.d`-style directory failed unless
+ `definitions.skip_if_unchanged` was set to `true`, for example, like in this
+ `rabbitmq.conf`:
+
+ ``` ini
+ definitions.skip_if_unchanged = false
+ definitions.import_backend = local_filesystem
+ definitions.local.path = /path/to/RabbitMQ/definitions/conf.d/
+ ```
+
+ GitHub issue: [#7705](https://github.com/rabbitmq/rabbitmq-server/pull/7705)
+
* Improved resiliency of dead-lettering.
GitHib issue: [#7677](https://github.com/rabbitmq/rabbitmq-server/pull/7677)
@@ -46,6 +58,18 @@ Release notes can be found on GitHub at [rabbitmq-server/release-notes](https://
GitHub issue: [#7657](https://github.com/rabbitmq/rabbitmq-server/pull/7657)
+## Management Plugin
+
+### Bug Fixes
+
+ * HTTP API will now respond with a `405 Method Not Allowed` instead of a 500 when
+ an unsupported method is used by the client.
+
+ Contributed by @gomoripeti (CloudAMQP).
+
+ GitHub issue: [#7675](https://github.com/rabbitmq/rabbitmq-server/pull/7675)
+
+
### etcd Peer Discovery Plugin
#### Bug Fixes