From 696ec6b74c33c2e2368b086a82549712c96d8a08 Mon Sep 17 00:00:00 2001 From: Manuel Ryan Date: Thu, 24 Nov 2022 11:29:39 +0100 Subject: [PATCH] Support for RabbitMq versions 3.9 and 3.10 (#40) * Bump version of rmq to 3.10 * Update README.md Co-authored-by: Cyril Gaudin Co-authored-by: Manuel Ryan Co-authored-by: Cyril Gaudin --- README.md | 2 +- scripts/docker-compose.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 5c049d10..ee55a568 100644 --- a/README.md +++ b/README.md @@ -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` and `3.9.x` of RabbitMQ. It may still work with versions `3.8.x` and `3.7.x`, however these versions are no longer officialy supported. For information on RabbitMQ versions, see the RabbitMQ [version documentation](https://www.rabbitmq.com/versions.html) and [changelog](https://www.rabbitmq.com/changelog.html). diff --git a/scripts/docker-compose.yml b/scripts/docker-compose.yml index 4390d215..1edc5ecd 100644 --- a/scripts/docker-compose.yml +++ b/scripts/docker-compose.yml @@ -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 \ No newline at end of file + - ./enabled_plugins:/etc/rabbitmq/enabled_plugins