summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Klishin <michael@clojurewerkz.org>2023-05-17 21:14:58 +0400
committerMichael Klishin <michael@clojurewerkz.org>2023-05-17 21:14:58 +0400
commitf3fbc9341ae41c5c9bad76f51b79bd641d5f64ff (patch)
tree42c2549fac02da8b0dc5dc24c4ef05426a775e72
parent3298051664bf3a8d3577b19956e5635f458733d8 (diff)
downloadrabbitmq-server-git-f3fbc9341ae41c5c9bad76f51b79bd641d5f64ff.tar.gz
Update 3.12.0 release notes
-rw-r--r--release-notes/3.12.0.md18
1 files changed, 15 insertions, 3 deletions
diff --git a/release-notes/3.12.0.md b/release-notes/3.12.0.md
index 926ef1251b..f12b3a2617 100644
--- a/release-notes/3.12.0.md
+++ b/release-notes/3.12.0.md
@@ -4,13 +4,13 @@ RabbitMQ `3.12.0-rc.2` is a candidate of a new feature release.
## Highlights
-This release includes several new features and optimizations and graduates (makes mandatory) a number of feature flags.
+This release includes several new features, optimizations, and graduates (makes mandatory) a number of feature flags.
The user-facing areas that have seen the biggest improvements in this release are
+ * [Optimizations](https://blog.rabbitmq.com/posts/2023/05/rabbitmq-3.12-performance-improvements/) for both quorum and classic queues: improved throughput, lower throughput variability, lower latency, lower memory footprint
+ * More mature and efficient implementation of (non-mirrored) classic queues v2 (CQv2)
* Significantly [reduced MQTT and Web MQTT memory footprint per connection](https://blog.rabbitmq.com/posts/2023/03/native-mqtt/)
- * Reduced quorum queue memory footprint, improved throughput stability under load
- * Classic queue message store memory efficiency and footprint predictability
* OAuth 2, OIDC, IDP support
This release also features many internal API improvements in preparation to 4.0
@@ -337,6 +337,18 @@ This release includes all bug fixes shipped in the `3.11.x` series.
#### Enhancement
+ * It is now possible to configure (or strip) the scope prefix used by this plugin when translating
+ token scopes to RabbitMQ permissions.
+
+ To do so, override `auth_oauth2.scope_prefix` in `rabbitmq.conf`:
+
+ ``` ini
+ # "rabbitmq." is the default prefix
+ auth_oauth2.scope_prefix = rabbitmq.
+ ```
+
+ GitHub issue: [#8001](https://github.com/rabbitmq/rabbitmq-server/pull/8001)
+
* Several variables (`{username}`, `{vhost}` and JWT claims that are single string values)
now can be used (expanded) in topic operation authorization.