1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165
|
RabbitMQ `3.12.11` is a maintenance release in the `3.12.x` [release series](https://www.rabbitmq.com/versions.html).
Please refer to the upgrade section from the [3.12.0 release notes](https://github.com/rabbitmq/rabbitmq-server/releases/tag/v3.12.0)
if upgrading from a version prior to 3.12.0.
This release requires Erlang 25 and supports Erlang versions up to `26.1.x`.
[RabbitMQ and Erlang/OTP Compatibility Matrix](https://www.rabbitmq.com/which-erlang.html) has more details on
Erlang version requirements for RabbitMQ.
### Minimum Supported Erlang Version
As of 3.12.0, RabbitMQ requires Erlang 25. Nodes **will fail to start** on older Erlang releases.
Users upgrading from 3.11.x (or older releases) on Erlang 25 to 3.12.x on Erlang 26
(both RabbitMQ *and* Erlang are upgraded at the same time) **must** consult
the [v3.12.0 release notes](https://github.com/rabbitmq/rabbitmq-server/releases/tag/v3.12.0) first.
## Changes Worth Mentioning
Release notes can be found on GitHub at [rabbitmq-server/release-notes](https://github.com/rabbitmq/rabbitmq-server/tree/v3.12.x/release-notes).
### Core Broker
#### Bug Fixes
* Quorum queue declared when one of cluster nodes was down could trigger
connection exceptions.
GitHub issue: [#10007](https://github.com/rabbitmq/rabbitmq-server/issues/10007)
* Avoids a rare exception that could stop TCP socket writes on a client connection.
GitHub issues: [#9991](https://github.com/rabbitmq/rabbitmq-server/issues/9991), [#9803](https://github.com/rabbitmq/rabbitmq-server/discussions/9803)
* `queue_deleted` and `queue_created` [internal events](https://rabbitmq.com/logging.html#internal-events) now include queue type as a module name,
and not an inconsistent (with the other queue and stream types) value `classic`.
GitHub issue: [#10142](https://github.com/rabbitmq/rabbitmq-server/pull/10142)
#### Enhancements
* Definition files that are virtual host-specific cannot be imported on boot. Such files will now be
detected early and the import process will terminate after logging a more informative message.
Previously the import process would run into an obscure exception.
GitHub issues: [#10068](https://github.com/rabbitmq/rabbitmq-server/issues/10068), [#10085](https://github.com/rabbitmq/rabbitmq-server/pull/10085)
### AMQP 1.0 Plugin
#### Bug Fixes
* Several AMQP 1.0 application properties are now more correctly converted
to AMQP 0-9-1 headers by cross-protocol Shovels.
The priority property now populates an AMQP 1.0 header with the same name,
per AMQP 1.0 spec.
This is a **potentially breaking change**.
Contributed by @luos (Erlang Solutions).
GitHub issues: [#10037](https://github.com/rabbitmq/rabbitmq-server/pull/10037), [#7508](https://github.com/rabbitmq/rabbitmq-server/issues/7508)
### Prometheus Plugin
#### Enhancements
* Metric label values now escape certain non-ASCII characters.
Contributed by @gomoripeti (CloudAMQP).
GitHub issue: [#10196](https://github.com/rabbitmq/rabbitmq-server/pull/10196)
### MQTT Plugin
#### Bug Fixes
* Avoids an exception when an MQTT client that used a QoS 0 subscription reconnects
and its original connection node is down.
GitHub issue: [#10205](https://github.com/rabbitmq/rabbitmq-server/pull/10205)
* Avoids an exception when an MQTT client connection was force-closed via the HTTP API.
GitHub issue: [#10140](https://github.com/rabbitmq/rabbitmq-server/pull/10140)
### CLI Tools
#### Bug Fixes
* Certain CLI commands could not be run in a shell script loop, unless the script explicitly
redirected standard input.
GitHub issue: [#10131](https://github.com/rabbitmq/rabbitmq-server/pull/10131)
#### Enhancements
* `rabbitmq-diagnostics cluster_status` now responds much quicker when a cluster node
has gone down, were shut down, or otherwise has become unreachable by the rest of the cluster.
GitHub issue: [#10126](https://github.com/rabbitmq/rabbitmq-server/pull/10126)
### Management Plugin
#### Bug Fixes
* Reverted a change to `DELETE /api/queues/{vhost}/{name}` that allowed removal of
exclusive queues and introduced unexpected side effects.
GitHub issue: [#10178](https://github.com/rabbitmq/rabbitmq-server/pull/10178)
* `DELETE /api/policies/{vhost}/{policy}` returned a 500 response instead of a 404 one
when target virtual host did not exist.
GitHub issue: [#9983](https://github.com/rabbitmq/rabbitmq-server/issues/9983)
* Avoid log noise when an HTTP API request is issued against a booting
or very freshly booted node.
Contributed by @gomoripeti (CloudAMQP).
GitHub issue: [#10187](https://github.com/rabbitmq/rabbitmq-server/pull/10187)
#### Enhancements
* HTTP API endpoints that involves contacting multiple nodes now respond much quicker when a cluster node
has gone down, were shut down, or otherwise has become unreachable by the rest of the cluster
GitHub issue: [#10123](https://github.com/rabbitmq/rabbitmq-server/pull/10123)
* Definition exported for just one virtual host cannot be imported at node boot time.
Now such files are detected early with a clear log message and immediate node boot process termination.
GitHub issues: [#10068](https://github.com/rabbitmq/rabbitmq-server/issues/10068), [#10072](https://github.com/rabbitmq/rabbitmq-server/pull/10072)
### AWS Peer Discovery Plugin
#### Enhancements
* Type spec and test corrections.
Contributed by @illotum (AWS).
GitHub issue: [#10134](https://github.com/rabbitmq/rabbitmq-server/pull/10134)
## Dependency Upgrades
* `osiris` was updated to [`1.7.2`](https://github.com/rabbitmq/osiris/releases)
## Source Code Archives
To obtain source code of the entire distribution, please download the archive named `rabbitmq-server-3.12.11.tar.xz`
instead of the source tarball produced by GitHub.
|