Skip to content

Commit dd5686a

Browse files
3.13.0 release notes: use new style rabbitmq.com doc guide paths
1 parent 499658d commit dd5686a

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed

release-notes/3.13.0.md

+16-16
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ The user-facing areas that have seen the biggest improvements in this release ar
1414
* [Khepri](https://www.youtube.com/watch?v=whVqpgvep90) now can be used as an [alternative schema data store](https://github.com/rabbitmq/rabbitmq-server/pull/7206) in RabbitMQ, replacing Mnesia
1515
* [MQTTv5 support](https://blog.rabbitmq.com/posts/2023/07/mqtt5)
1616
* Support for [consumer-side stream filtering](https://github.com/rabbitmq/rabbitmq-server/pull/8207)
17-
* A new [common message container format](https://github.com/rabbitmq/rabbitmq-server/pull/5077) used internally, based on the AMQP 1.0 message container format
17+
* A new [common message container format](https://github.com/rabbitmq/rabbitmq-server/pull/5077) used internally, based on the AMQP 1.0 message format
1818
* Improved classic non-mirrored queue performance with message sizes larger than
1919
4 KiB (or a different customized CQ index embedding threshold)
2020
* Classic queues storage implementation version 2 (CQv2) is now highly recommended for all new deployments.
@@ -27,31 +27,31 @@ See Compatibility Notes below to learn about **breaking or potentially breaking
2727
RabbitMQ releases are distributed via [GitHub](https://github.com/rabbitmq/rabbitmq-server/releases).
2828
[Debian](https://rabbitmq.com/install-debian.html) and [RPM packages](https://rabbitmq.com/install-rpm.html) are available via Cloudsmith mirrors.
2929

30-
[Community Docker image](https://hub.docker.com/_/rabbitmq/), [Chocolatey package](https://community.chocolatey.org/packages/rabbitmq), and the [Homebrew formula](https://rabbitmq.com/install-homebrew.html)
30+
[Community Docker image](https://hub.docker.com/_/rabbitmq/), [Chocolatey package](https://community.chocolatey.org/packages/rabbitmq), and the [Homebrew formula](https://www.rabbitmq.com/docs/install-homebrew)
3131
are other installation options. They are updated with a delay.
3232

3333

3434
## Erlang/OTP Compatibility Notes
3535

36-
This release [requires Erlang 26.x](https://www.rabbitmq.com/which-erlang.html).
36+
This release [requires Erlang 26.x](https://www.rabbitmq.com/docs/which-erlang).
3737

38-
[Provisioning Latest Erlang Releases](https://www.rabbitmq.com/which-erlang.html#erlang-repositories) explains
38+
[Provisioning Latest Erlang Releases](https://www.rabbitmq.com/docs/which-erlang#erlang-repositories) explains
3939
what package repositories and tools can be used to provision latest patch versions of Erlang 26.x.
4040

4141

4242
## Upgrading to 3.13
4343

4444
### Documentation guides on upgrades
4545

46-
See the [Upgrading guide](https://www.rabbitmq.com/upgrade.html) for documentation on upgrades and [RabbitMQ change log](https://www.rabbitmq.com/changelog.html)
47-
for release notes of other releases.
46+
See the [Upgrading guide](https://www.rabbitmq.com/docs/upgrade) for documentation on upgrades and [GitHub releases](https://github.com/rabbitmq/rabbitmq-server/releases)
47+
for release notes of individual releases.
4848

4949
Note that since 3.12.0 requires **all feature flags** to be enabled before upgrading,
5050
there is no upgrade path from 3.11.24 (or a later patch release) straight to 3.13.0.
5151

5252
### Required Feature Flags
5353

54-
This release does not [graduate](https://rabbitmq.com/feature-flags.html#graduation) any feature flags.
54+
This release does not [graduate](https://www.rabbitmq.com/docs/feature-flags#graduation) any feature flags.
5555

5656
However, all users are highly encouraged to enable all feature flags before upgrading to this release from
5757
3.12.x.
@@ -196,7 +196,7 @@ For example, if you set `mqtt.subscription_ttl = 3600000` (1 hour) prior to 3.13
196196
`rabbitmqctl node_health_check` has been deprecated for over three years
197197
and is now a no-op (does nothing).
198198

199-
See the [Health Checks section](https://www.rabbitmq.com/monitoring.html#health-checks) in the monitoring guide
199+
See the [Health Checks section](https://www.rabbitmq.com/docs/monitoring#health-checks) in the monitoring guide
200200
to find out what modern alternatives are available.
201201

202202
### openSUSE Leap Package is not Provided
@@ -245,8 +245,8 @@ Some of it's great features include:
245245
```
246246

247247
In practical terms this means that it will be possible to swap Mnesia for a Raft-based data store
248-
that will **predictably recover from network partitions and node failures**, the same way [quorum queues](https://rabbitmq.com/quorum-queues.html#leader-election)
249-
and [streams](https://rabbitmq.com/streams.html#leader-election) already do. At the same time, this means
248+
that will **predictably recover from network partitions and node failures**, the same way [quorum queues](https://www.rabbitmq.com/docs/quorum-queues#leader-election)
249+
and [streams](https://www.rabbitmq.com/docs/streams#leader-election) already do. At the same time, this means
250250
that RabbitMQ clusters now **must have a majority of nodes online at all times**, or all client operations will be refused.
251251

252252
Like quorum queues and streams, Khepri uses [RabbitMQ's Raft implementation](https://github.com/rabbitmq/ra) under the hood. With Khepri enabled, all key modern features
@@ -272,7 +272,7 @@ Some of it's great features include:
272272

273273
When the number of online replicas of a quorum queue goes below (or above) its target,
274274
new replicas will be automatically placed if enough cluster nodes are available.
275-
This is a more automatic version of how [quorum queue replicas have originally been grown](https://rabbitmq.com/quorum-queues.html#replica-management).
275+
This is a more automatic version of how [quorum queue replicas have originally been grown](https://www.rabbitmq.com/docs/quorum-queues#replica-management).
276276

277277
For automatic shrinking of queue replicas, the user must opt in.
278278

@@ -281,7 +281,7 @@ Some of it's great features include:
281281
GitHub issue: [#8218](https://github.com/rabbitmq/rabbitmq-server/pull/8218)
282282

283283
* Revisited peer discovery implementation that further reduces the probability of two or more
284-
sets of nodes [forming separate clusters](https://www.rabbitmq.com/cluster-formation.html#initial-formation-race-condition) when **all** cluster nodes are created at the same time and boot in parallel.
284+
sets of nodes [forming separate clusters](https://www.rabbitmq.com/docs/cluster-formation#initial-formation-race-condition) when **all** cluster nodes are created at the same time and boot in parallel.
285285

286286
GitHub issue: [#9797](https://github.com/rabbitmq/rabbitmq-server/pull/9797)
287287

@@ -320,7 +320,7 @@ Some of it's great features include:
320320

321321
GitHub issues: [#8834](https://github.com/rabbitmq/rabbitmq-server/pull/8834), [#8927](https://github.com/rabbitmq/rabbitmq-server/pull/8927)
322322

323-
* Classic queue storage version now can be set via [operator policies](https://rabbitmq.com/parameters.html#operator-policies).
323+
* Classic queue storage version now can be set via [operator policies](https://www.rabbitmq.com/docs/parameters#operator-policies).
324324

325325
Contributed by @SimonUnge (AWS).
326326

@@ -353,7 +353,7 @@ Some of it's great features include:
353353

354354
GitHub issue: [#10320](https://github.com/rabbitmq/rabbitmq-server/pull/10320)
355355

356-
* When a [consumer delivery timeout](https://rabbitmq.com/consumers.html#acknowledgement-timeout) hits, a more informative message is now logged.
356+
* When a [consumer delivery timeout](https://www.rabbitmq.com/docs/consumers#acknowledgement-timeout) hits, a more informative message is now logged.
357357

358358
Contributed by @rluvaton.
359359

@@ -426,7 +426,7 @@ This release includes all bug fixes shipped in the `3.12.x` series.
426426

427427
**This is a potentially breaking change**.
428428

429-
Note that [Prometheus](https://rabbitmq.com/prometheus.html) is the recommended option for monitoring,
429+
Note that [Prometheus](https://www.rabbitmq.com/docs/prometheus) is the recommended option for monitoring,
430430
not the management plugin's HTTP API.
431431

432432
GitHub issues: [#9437](https://github.com/rabbitmq/rabbitmq-server/issues/9437), [#9578](https://github.com/rabbitmq/rabbitmq-server/pull/9578), [#9633](https://github.com/rabbitmq/rabbitmq-server/pull/9633)
@@ -502,7 +502,7 @@ This release includes all bug fixes shipped in the `3.12.x` series.
502502

503503
GitHub issue: [#8680](https://github.com/rabbitmq/rabbitmq-server/pull/8680)
504504

505-
* AMQP 1.0 connections are now throttled when the node hits a [resource alarm](https://rabbitmq.com/alarms.html).
505+
* AMQP 1.0 connections are now throttled when the node hits a [resource alarm](https://www.rabbitmq.com/docs/alarms).
506506

507507
GitHub issue: [#9953](https://github.com/rabbitmq/rabbitmq-server/pull/9953)
508508

0 commit comments

Comments
 (0)