Skip to content

Commit 3f5b13d

Browse files
Merge branch 'main' into mk-virtual-host-protection-from-accidental-deletion
2 parents c95a95f + ac7dcc9 commit 3f5b13d

File tree

1,525 files changed

+2410
-2207
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,525 files changed

+2410
-2207
lines changed

.git-blame-ignore-revs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,6 @@
44
1de9fcf582def91d1cee6bea457dd24e8a53a431
55
# Remove unsed imports
66
cfa3de4b2b1a07e9f4ef90d0aa6b22252238bc47
7+
# (c) bump 2025
8+
d56522a8e3f22430fd7424f86ebda4b011c03a6e
9+
968eefa1bb048e2857a3b2617234b52c9a344767

.github/workflows/gazelle-scheduled.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
run: |
3131
bazel run gazelle
3232
- name: CREATE PULL REQUEST
33-
uses: peter-evans/[email protected].5
33+
uses: peter-evans/[email protected].6
3434
with:
3535
token: ${{ secrets.REPO_SCOPED_TOKEN }}
3636
committer: GitHub <[email protected]>

.github/workflows/gazelle.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
run: |
2626
bazel run gazelle
2727
- name: CREATE PULL REQUEST
28-
uses: peter-evans/[email protected].5
28+
uses: peter-evans/[email protected].6
2929
with:
3030
token: ${{ secrets.REPO_SCOPED_TOKEN }}
3131
committer: GitHub <[email protected]>

.github/workflows/test-make-target.yaml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
uses: dsaltares/fetch-gh-release-asset@master
5858
if: inputs.mixed_clusters
5959
with:
60-
version: 'tags/v4.0.3'
60+
version: 'tags/v4.0.5'
6161
regex: true
6262
file: "rabbitmq-server-generic-unix-\\d.+\\.tar\\.xz"
6363
target: ./
@@ -76,12 +76,6 @@ jobs:
7676
7777
echo "SECONDARY_DIST=${GITHUB_WORKSPACE}/rabbitmq_server-$archive_version" >> $GITHUB_ENV
7878
79-
- name: SETUP DOTNET (rabbit)
80-
uses: actions/setup-dotnet@v4
81-
if: inputs.plugin == 'rabbit'
82-
with:
83-
dotnet-version: '8.0'
84-
8579
- name: SETUP SLAPD (rabbitmq_auth_backend_ldap)
8680
if: inputs.plugin == 'rabbitmq_auth_backend_ldap'
8781
run: |

.github/workflows/test-plugin-mixed.yaml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -72,10 +72,6 @@ jobs:
7272
bazelisk info release
7373
#! - name: Setup tmate session
7474
#! uses: mxschmitt/action-tmate@v3
75-
- uses: actions/setup-dotnet@v4
76-
if: inputs.plugin == 'rabbit'
77-
with:
78-
dotnet-version: '8.0'
7975
- name: deps/amqp10_client SETUP
8076
if: inputs.plugin == 'amqp10_client'
8177
run: |

.github/workflows/test-plugin.yaml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -72,10 +72,6 @@ jobs:
7272
bazelisk info release
7373
#! - name: Setup tmate session
7474
#! uses: mxschmitt/action-tmate@v3
75-
- uses: actions/setup-dotnet@v4
76-
if: inputs.plugin == 'rabbit'
77-
with:
78-
dotnet-version: '8.0'
7975
- name: deps/amqp10_client SETUP
8076
if: inputs.plugin == 'amqp10_client'
8177
run: |

CONTRIBUTING.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,21 @@ gmake ct-rabbit_mgmt_http t="all_tests_with_prefix:users_test"
6464
gmake ct-rabbit_mgmt_http t="all_tests_with_prefix:queues_test"
6565
```
6666

67+
### Running Tests with a Specific Schema Data Store
68+
69+
Set `RABBITMQ_METADATA_STORE` to either `khepri` or `mnesia` to make the Common Test suites
70+
use a specific [schema data store]() (metadata store):
71+
72+
``` shell
73+
RABBITMQ_METADATA_STORE=khepri gmake ct-quorum_queue
74+
```
75+
76+
Or, with Nu shell:
77+
78+
```nu
79+
with-env {'RABBITMQ_METADATA_STORE': 'khepri'} { gmake ct-quorum_queue }
80+
```
81+
6782

6883
## Running Single Nodes from Source
6984

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,4 +91,4 @@ document explains the open source RabbitMQ support policy adopted by the RabbitM
9191

9292
## Copyright
9393

94-
(c) 2007-2024 Broadcom. All Rights Reserved. The term “Broadcom” refers to Broadcom Inc. and/or its subsidiaries.
94+
(c) 2007-2025 Broadcom. All Rights Reserved. The term “Broadcom” refers to Broadcom Inc. and/or its subsidiaries.

bazel/BUILD.horus

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ filegroup(
5050
filegroup(
5151
name = "private_hdrs",
5252
srcs = [
53+
"src/horus_cover.hrl",
5354
"src/horus_error.hrl",
5455
"src/horus_fun.hrl",
5556
],

deps/amqp10_client/src/amqp10_client.erl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
%% License, v. 2.0. If a copy of the MPL was not distributed with this
33
%% file, You can obtain one at https://mozilla.org/MPL/2.0/.
44
%%
5-
%% Copyright (c) 2007-2024 Broadcom. All Rights Reserved. The term “Broadcom” refers to Broadcom Inc. and/or its subsidiaries. All rights reserved.
5+
%% Copyright (c) 2007-2025 Broadcom. All Rights Reserved. The term “Broadcom” refers to Broadcom Inc. and/or its subsidiaries. All rights reserved.
66
%%
77

88
-module(amqp10_client).

0 commit comments

Comments
 (0)