summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Klishin <michael@clojurewerkz.org>2023-03-22 01:30:40 +0400
committerMichael Klishin <michael@clojurewerkz.org>2023-03-22 01:30:40 +0400
commitbf8b10bac75b1cb3778fecec7f55042bc050436c (patch)
treed51602e6e2a33870350f0dfdab4a978666084095
parent5a01201a58a8d911adf1613c31e80be11e7d74f2 (diff)
downloadrabbitmq-server-git-bf8b10bac75b1cb3778fecec7f55042bc050436c.tar.gz
Update 3.11.11 release notes
-rw-r--r--release-notes/3.11.11.md28
1 files changed, 28 insertions, 0 deletions
diff --git a/release-notes/3.11.11.md b/release-notes/3.11.11.md
index 0fa304df85..59de8337a5 100644
--- a/release-notes/3.11.11.md
+++ b/release-notes/3.11.11.md
@@ -36,6 +36,22 @@ Release notes can be found on GitHub at [rabbitmq-server/release-notes](https://
GitHub issue: [#7548](https://github.com/rabbitmq/rabbitmq-server/pull/7548)
+ * 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)
+
#### Enhancements
* There is now a way to pre-configure users and their permissions for newly created virtual hosts:
@@ -56,6 +72,18 @@ Release notes can be found on GitHub at [rabbitmq-server/release-notes](https://
GitHub issue: [#7208](https://github.com/rabbitmq/rabbitmq-server/issues/7208).
+## 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)
+
+
### STOMP Plugin
#### Enhancements