Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support for RabbitMq versions 3.9 and 3.10 #40

Merged
merged 3 commits into from
Nov 24, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ env:
- RABBITMQ_USERNAME="guest"
- RABBITMQ_PASSWORD="guest"
jobs:
- RABBITMQ_VERSION=3.10
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actually Travis is not used anymore, I should remove this file 🤦‍♂️
I removed it on master so you can merge it in your branch

- RABBITMQ_VERSION=3.9
- RABBITMQ_VERSION=3.8
- RABBITMQ_VERSION=3.7

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ $ make build
Using the provider
------------------

The provider supports verions `3.8.x` and `3.7.x` of RabbitMQ. It may still work with version`3.6.x`, however this version is no longer supported.
The provider supports versions `3.10.x`,`3.9.x`,`3.8.x` and `3.7.x` of RabbitMQ. It may still work with version`3.6.x`, however this version is no longer supported.
mryan43 marked this conversation as resolved.
Show resolved Hide resolved

For information on RabbitMQ versions, see the RabbitMQ [version documentation](https://www.rabbitmq.com/versions.html) and [changelog](https://www.rabbitmq.com/changelog.html).

Expand Down
4 changes: 2 additions & 2 deletions scripts/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ version: "3"

services:
rabbitmq:
image: rabbitmq:${RABBITMQ_VERSION:-3.8}-management-alpine
image: rabbitmq:${RABBITMQ_VERSION:-3.10}-management-alpine
environment:
RABBITMQ_DEFAULT_USER: ${RABBITMQ_USERNAME:-guest}
RABBITMQ_DEFAULT_PASS: ${RABBITMQ_PASSWORD:-guest}
ports:
- 15672:15672
volumes:
- ./enabled_plugins:/etc/rabbitmq/enabled_plugins
- ./enabled_plugins:/etc/rabbitmq/enabled_plugins