Skip to content

Commit 411802e

Browse files
3.2.0 release notes
1 parent 9edb65e commit 411802e

File tree

2 files changed

+21
-2
lines changed

2 files changed

+21
-2
lines changed

ChangeLog.md

+19
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
## Changes Between 3.2.0 and 3.3.0 (in development)
2+
3+
No changes yet.
4+
5+
6+
## Changes Between 3.1.0 and 3.2.0 (Apr 2, 2025)
7+
8+
### New Federation Upstream Fields
9+
10+
`FederationDefinition` now has two new fields:
11+
12+
* `QueueType`: an enum, one of: `classic`, `quorum`, `stream`
13+
* `ResourceCleanupMode`: an enum, the supported values are: `default` or `never`
14+
15+
Contributed by @jaroslaw-bochniak.
16+
17+
GitHub issue: [#341](https://github.com/michaelklishin/rabbit-hole/pull/341)
18+
19+
120
## Changes Between 2.16.0 and 3.1.0 (Oct 31, 2024)
221

322
### Why the Major Version Bump?

federation.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ import (
55
"net/url"
66
)
77

8-
// FederationDefinition represents settings
9-
// that will be used by federation links.
8+
// FederationDefinition represents a federation upstream definition.
9+
// Note that these settings will actually be used by federation links.
1010
type FederationDefinition struct {
1111
Uri URISet `json:"uri"`
1212
Expires int `json:"expires,omitempty"`

0 commit comments

Comments
 (0)