-
Notifications
You must be signed in to change notification settings - Fork 161
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
RabbitMQ 3.12.12 Core Broker Bug Fixes Environments with a lot of quorum queues could experience a large Erlang process build-up. The build-up was temporary but with a sufficiently large number of quorum queues it could last until the next round of periodic operations, making it permanent and depriving the node of CPU resources. RabbitMQ core failed to propagate more authentication and authorization context, for example, MQTT client ID in case of MQTT connections, to authN and authZ backends. This was not intentional. Nodes now takes more precaution about persisting feature flag state (specifically the effects of in-flight changes) during node shutdown. Enhancements Simplified some type specs. Contributed by @ariel-anieli. Stream Plugin One returned error value did not match the RabbitMQ Stream Protocol specification. MQTT Plugin Bug Fixes Recovering connections from QoS 0 consumers (subscribers) could fail if they were previously connected to a failed node.
- Loading branch information
adam
committed
Jan 6, 2024
1 parent
811a33d
commit 6c289c3
Showing
4 changed files
with
74 additions
and
58 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
$NetBSD: distinfo,v 1.83 2023/11/20 09:15:53 adam Exp $ | ||
$NetBSD: distinfo,v 1.84 2024/01/06 18:33:23 adam Exp $ | ||
|
||
BLAKE2s (rabbitmq-server-3.12.9.tar.xz) = beb1c6fe11dec116df46bab0bd78f3c92256595e84d29122f88271b68e064e66 | ||
SHA512 (rabbitmq-server-3.12.9.tar.xz) = c6015ee9593336104fc043ed20d99a476e7b36802ae36798f23c2caf91a01a71913963fdbe6de249f234cb3ba82379e5c5b2976e07d098c287ee72e3f238f2eb | ||
Size (rabbitmq-server-3.12.9.tar.xz) = 4437392 bytes | ||
BLAKE2s (rabbitmq-server-3.12.12.tar.xz) = 913dcca638969099d1a28d20cc7bfd97bcb3793950fb290904a74c17a3b06464 | ||
SHA512 (rabbitmq-server-3.12.12.tar.xz) = 92e1f35af8b043df2f06ac25d6bd037244ca12df76c20e65660830bb0f31370b0eb960d5001bb99992434ebe7fea53bf41b3381c8e62b0f8d1eb7a98c463da91 | ||
Size (rabbitmq-server-3.12.12.tar.xz) = 4450344 bytes | ||
SHA1 (patch-Makefile) = 588638e2aa993fa59ab316a598840384d74a0a32 | ||
SHA1 (patch-deps_rabbit__common_src_rabbit__env.erl) = a717f620387e3c954e2f751c9b8921c93a1826f4 | ||
SHA1 (patch-deps_rabbit_scripts_rabbitmq-env) = 10f56071b2af001ef2fad6bc916f03bd4f299e8b | ||
SHA1 (patch-deps_rabbitmq__cli_mix.exs) = bf029d0abec6bbdc24d11291fbca62079565d0c3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
$NetBSD: patch-deps_rabbitmq__cli_mix.exs,v 1.6 2024/01/06 18:33:23 adam Exp $ | ||
|
||
Allow Elixir 1.16. | ||
|
||
--- deps/rabbitmq_cli/mix.exs.orig 2024-01-06 18:18:30.421394433 +0000 | ||
+++ deps/rabbitmq_cli/mix.exs | ||
@@ -11,7 +11,7 @@ defmodule RabbitMQCtl.MixfileBase do | ||
[ | ||
app: :rabbitmqctl, | ||
version: "3.12.1", | ||
- elixir: ">= 1.13.4 and < 1.16.0", | ||
+ elixir: ">= 1.13.4 and < 1.17.0", | ||
build_embedded: Mix.env() == :prod, | ||
start_permanent: Mix.env() == :prod, | ||
escript: [ |