Skip to content

Commit aa58813

Browse files
michaelklishinmergify[bot]
authored andcommitted
3.11.14 release notes
(cherry picked from commit 9679d74) (cherry picked from commit fddb3ef)
1 parent 55969f9 commit aa58813

File tree

1 file changed

+78
-1
lines changed

1 file changed

+78
-1
lines changed

release-notes/3.11.14.md

Lines changed: 78 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,87 @@ Release notes can be found on GitHub at [rabbitmq-server/release-notes](https://
3131

3232
GitHub issue: [#7777](https://github.com/rabbitmq/rabbitmq-server/issues/7777)
3333

34+
* It is now possible to limit how many shovels or federation links can run on a node
35+
using `rabbitmq.conf`:
36+
37+
``` ini
38+
runtime_parameters.limits.shovel = 10
39+
runtime_parameters.limits.federation = 10
40+
```
41+
42+
Contributed by @illotum (AWS).
43+
44+
GitHub issue: [#7917](https://github.com/rabbitmq/rabbitmq-server/pull/7917)
45+
46+
* Quorum queues will now log if they could not apply policy changes, for example,
47+
because there was no quorum of replicas online, or the queue was going through
48+
a leader election.
49+
50+
GitHub issue: [#7853](https://github.com/rabbitmq/rabbitmq-server/pull/7853)
51+
52+
#### Bug Fixes
53+
54+
* [Superstream](https://blog.rabbitmq.com/posts/2022/07/rabbitmq-3-11-feature-preview-super-streams/) could fail
55+
to elect a single active consumer (SAC) in certain consumer churn conditions.
56+
57+
GitHub issue: [#7743](https://github.com/rabbitmq/rabbitmq-server/issues/7743)
58+
59+
60+
### CLI Tools
61+
62+
#### Enhancements
63+
64+
* `rabbitmqctl update_vhost_metadata` is a new command that can be used to update
65+
the description, default queue type, or tags of a virtual host:
66+
67+
``` shell
68+
rabbitmqctl update_vhost_metadata vh1 --tags qa,quorum,team3,project2
69+
70+
rabbitmqctl update_vhost_metadata vh1 --description "QA env 1 for issue 37483"
71+
72+
rabbitmqctl update_vhost_metadata vh1 --description "QQs all the way" --default-queue-type "quorum"
73+
74+
rabbitmqctl update_vhost_metadata vh1 --description "streaming my brain out" --default-queue-type "stream"
75+
```
76+
77+
GitHub issue: [#7914](https://github.com/rabbitmq/rabbitmq-server/pull/7914)
78+
79+
80+
### Management Plugin
81+
82+
#### Bug Fixes
83+
84+
* It was impossible to return to a tab that had a filter expression
85+
that was not a valid regular expressions.
86+
87+
Now such expressions will be used as regular text filters.
88+
89+
GitHub issue: [#8008](https://github.com/rabbitmq/rabbitmq-server/issues/8008)
90+
91+
92+
### OAuth 2 AuthN/AuthZ Backend Plugin
93+
94+
#### Enhancement
95+
96+
* Several variables (`{username}`, `{vhost}` and JWT claims that are single string values)
97+
now can be used (expanded) in topic operation authorization.
98+
99+
GitHub issue: [#7178](https://github.com/rabbitmq/rabbitmq-server/issues/7178)
100+
101+
102+
### HTTPS AuthN/AuthZ Backend Plugin
103+
104+
#### Bug Fixes
105+
106+
* The authorization backend could run into an exception when used in
107+
combination with other backends.
108+
109+
GitHub issue: [#7864](https://github.com/rabbitmq/rabbitmq-server/issues/7864)
110+
34111

35112
## Dependency Upgrades
36113

37-
None in this release.
114+
* [`cowlib`](https://github.com/ninenines/cowlib) was upgraded to `2.12.1`
38115

39116

40117
## Source Code Archives

0 commit comments

Comments
 (0)