Skip to content

Commit be27ab0

Browse files
Merge pull request #11605 from rabbitmq/mk-3.13.4-release-notes
3.13.4 release notes
2 parents 5c59a8e + b339038 commit be27ab0

File tree

1 file changed

+212
-0
lines changed

1 file changed

+212
-0
lines changed

release-notes/3.13.4.md

Lines changed: 212 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,212 @@
1+
## RabbitMQ 3.13.4
2+
3+
RabbitMQ `3.13.4` is a maintenance release in the `3.13.x` [release series](https://www.rabbitmq.com/release-information).
4+
5+
Starting June 1st, 2024, community support for this series will only be provided to [regularly contributing users](https://github.com/rabbitmq/rabbitmq-server/blob/main/COMMUNITY_SUPPORT.md) and those
6+
who hold a valid [commercial support license](https://tanzu.vmware.com/rabbitmq/oss).
7+
8+
Please refer to the upgrade section from the [3.13.0 release notes](https://github.com/rabbitmq/rabbitmq-server/releases/tag/v3.13.0)
9+
if upgrading from a version prior to 3.13.0.
10+
11+
This release requires Erlang 26 and supports Erlang versions up to `26.2.x`.
12+
[RabbitMQ and Erlang/OTP Compatibility Matrix](https://www.rabbitmq.com/docs/which-erlang) has more details on
13+
Erlang version requirements for RabbitMQ.
14+
15+
16+
### Minimum Supported Erlang Version
17+
18+
As of 3.13.0, RabbitMQ requires Erlang 26. Nodes **will fail to start** on older Erlang releases.
19+
20+
Users upgrading from 3.12.x (or older releases) on Erlang 25 to 3.13.x on Erlang 26
21+
(both RabbitMQ *and* Erlang are upgraded at the same time) **must** consult
22+
the [v3.12.0 release notes](https://github.com/rabbitmq/rabbitmq-server/releases/tag/v3.12.0) and [v3.13.0 release notes](https://github.com/rabbitmq/rabbitmq-server/releases/tag/v3.13.0) first.
23+
24+
25+
## Changes Worth Mentioning
26+
27+
Release notes can be found on GitHub at [rabbitmq-server/release-notes](https://github.com/rabbitmq/rabbitmq-server/tree/v3.13.x/release-notes).
28+
29+
30+
### Core Broker
31+
32+
#### Bug Fix
33+
34+
* A rolling upgrade from `3.12.14` to `3.13.x` could run into an exception.
35+
36+
GitHub issue: [#11380](https://github.com/rabbitmq/rabbitmq-server/issues/11380)
37+
38+
* When an existing virtual host was re-imported from a definitions file,
39+
its default queue type (DQT) was cleared (reset) if was missing in the imported
40+
definitions.
41+
42+
Now the existing DQT is preserved.
43+
44+
GitHub issue: [#11457](https://github.com/rabbitmq/rabbitmq-server/pull/11457)
45+
46+
* When a queue was declared without an explicitly provided `x-queue-type` but a default
47+
queue type (DQT) set (for its virtual host), its redeclaration did not consider
48+
the DQT during the [property equivalence check](https://www.rabbitmq.com/docs/queues#property-equivalence) stage.
49+
50+
GitHub issue: [#11541](https://github.com/rabbitmq/rabbitmq-server/pull/11541)
51+
52+
* Feature flag controller could run into a deadlock in some upgrade scenarios.
53+
54+
GitHub issue: [#11414](https://github.com/rabbitmq/rabbitmq-server/pull/11414)
55+
56+
* In mixed `3.13.x` and `3.12.x` clusters, when a [Direct Reply-to](https://www.rabbitmq.com/docs/direct-reply-to) client (the app that initiates requests)
57+
was connected to the `3.13` node and the server (the app that responds) was connected to the `3.12` node,
58+
the response was lost due to a message format conversion exception.
59+
60+
GitHub issue: [#11401](https://github.com/rabbitmq/rabbitmq-server/pull/11401)
61+
62+
#### Enhancements
63+
64+
* In some parallel cluster formation scenarios where definitions were [imported on node boot](),
65+
the virtual hosts created by the import can only be started on a subset of nodes. This is so
66+
because not all cluster peers are known at virtual host creation time.
67+
68+
To reconcile (repair) this state, nodes will periodically check that all virtual hosts are initialized
69+
on all cluster nodes. This happens every thirty seconds for the first five minutes
70+
since node boot. As long as the cluster is fully formed within that amount of time,
71+
all nodes will have performed initialization for all virtual hosts that exist.
72+
73+
GitHub issue: [#11408](https://github.com/rabbitmq/rabbitmq-server/pull/11408)
74+
75+
* Quorum queue leader replicas now initiate reconciliation (repair) of their
76+
replicas, if there are any missing, more frequently, making quorum queues
77+
more defensive in the case of (**highly discouraged**) [grow-then-shrink upgrades](https://www.rabbitmq.com/docs/upgrade#grow-then-shrink).
78+
79+
As part of this change, the CPU cost of reconciliation was reduced, now accounting
80+
for less than 1% of the CPU with 10K quorum queues in some test environments.
81+
82+
Contributed by @SimonUnge.
83+
84+
GitHub issue: [#11029](https://github.com/rabbitmq/rabbitmq-server/discussions/11029)
85+
86+
* In the case where the `vhost_max` node limit is reached, the node will log specific errors
87+
when a new virtual host is (unsuccessfully) added.
88+
89+
Contributed by @SimonUnge.
90+
91+
GitHub issue: [#11589](https://github.com/rabbitmq/rabbitmq-server/pull/11589)
92+
93+
* Elapsed time in the logs is now measured using [monotonic time](https://www.erlang.org/doc/apps/erts/time_correction.html).
94+
95+
GitHub issue: [#11396](https://github.com/rabbitmq/rabbitmq-server/pull/11396)
96+
97+
98+
### CLI Tools
99+
100+
#### Bug Fixes
101+
102+
* `rabbitmq-diagnostics check_if_node_is_quorum_critical` could report a false positive
103+
when some quorum queue replcas where very recently added or very recently restarted.
104+
105+
GitHub issue: [#11524](https://github.com/rabbitmq/rabbitmq-server/pull/11524)
106+
107+
* `rabbitmqctl list_unresponsive_queues` ran into exception of there were connected MQTT clients
108+
with QoS 0 subscriptions.
109+
110+
Partially contributed by @gomoripeti.
111+
112+
GitHub issue: [#11434](https://github.com/rabbitmq/rabbitmq-server/issues/11434)
113+
114+
#### Enhancements
115+
116+
* CLI tools now can be built with Elixir 1.17.x.
117+
118+
Contributed by @VlkrS.
119+
120+
GitHub issue: [#11529](https://github.com/rabbitmq/rabbitmq-server/pull/11529)
121+
122+
123+
### OAuth 2 Plugin
124+
125+
#### Enhancenements
126+
127+
* OpenID Connection endpoint now can be overridden for identity providers with
128+
non-standard configurations.
129+
130+
GitHub issue: [#11103](https://github.com/rabbitmq/rabbitmq-server/issues/11103)
131+
132+
133+
### Management Plugin
134+
135+
#### Bug Fixes
136+
137+
* Virtual host metadata was not included into definition files exported via the HTTP API.
138+
139+
GitHub issue: [#10515](https://github.com/rabbitmq/rabbitmq-server/issues/10515)
140+
141+
* When Khepri was enabled and a majority of cluster members were down, adding a virtual host
142+
failed with an unhelpful exception.
143+
144+
GitHub issue: [#11590](https://github.com/rabbitmq/rabbitmq-server/pull/11590)
145+
146+
#### Enhancements
147+
148+
* When default queue type is set on a virtual host but not for individual queues,
149+
the exported queues will have `x-queue-type` set to the default type in the
150+
exported definitions document.
151+
152+
GitHub issue: [#10515](https://github.com/rabbitmq/rabbitmq-server/issues/10515)
153+
154+
* Management UI will now display the number of cores available to the node.
155+
156+
GitHub issue: [#11382](https://github.com/rabbitmq/rabbitmq-server/pull/11382)
157+
158+
* OAuth 2-specific JavaScript files are now only loaded if the OAuth 2 plugin is enabled
159+
on the node.
160+
161+
GitHub issue: [#11421](https://github.com/rabbitmq/rabbitmq-server/issues/11421)
162+
163+
164+
### HTTP AuthN/AuthZ Backend Plugin
165+
166+
#### Enhancements
167+
168+
* TLS-related settings, in particular related to [peer certificate chain verification](https://www.rabbitmq.com/docs/ssl#peer-verification), now can be
169+
configured for this plugin:
170+
171+
``` ini
172+
auth_http.ssl_options.verify = verify_none
173+
auth_http.ssl_options.fail_if_no_peer_cert = false
174+
```
175+
176+
Please remember that disabling peer certificate chain verification makes the system
177+
less secure and susceptible to [Man-in-the-Middle attacks](https://en.wikipedia.org/wiki/Man-in-the-middle_attack).
178+
Consider enabling the verification in production systems when possible.
179+
180+
GitHub issue: [#10281](https://github.com/rabbitmq/rabbitmq-server/issues/10281)
181+
182+
183+
### etcd Peer Discovery Plugin
184+
185+
#### Bug Fixes
186+
187+
* The plugin failed to extract discovered nodes name correctly in earlier `3.13.x`
188+
releases.
189+
190+
GitHub issue: [#11445](https://github.com/rabbitmq/rabbitmq-server/pull/11445)
191+
192+
193+
### Tracing Plugin
194+
195+
#### Enhancements
196+
197+
* `tracing.dir`, `tracing.username` and `tracing.password` are the three Tracing plugin
198+
settings that can be set via `rabbitmq.conf`.
199+
200+
GitHub issue: [#11554](https://github.com/rabbitmq/rabbitmq-server/issues/11554)
201+
202+
203+
### Dependency Changes
204+
205+
* Ra was [upgraded to `2.11.0`](https://github.com/rabbitmq/ra/releases)
206+
* Osiris was [upgraded to `1.8.2`](https://github.com/rabbitmq/osiris/releases)
207+
* Jose was [upgraded to `1.11.10`](https://github.com/potatosalad/erlang-jose/releases)
208+
209+
## Source Code Archives
210+
211+
To obtain source code of the entire distribution, please download the archive named `rabbitmq-server-3.13.4.tar.xz`
212+
instead of the source tarball produced by GitHub.

0 commit comments

Comments
 (0)