File tree Expand file tree Collapse file tree 3 files changed +21
-6
lines changed Expand file tree Collapse file tree 3 files changed +21
-6
lines changed Original file line number Diff line number Diff line change 1- ## Changes Between 3.0 .0 and 3.1 .0 (unreleased )
1+ ## Changes Between 3.1 .0 and 3.2 .0 (in development )
22
33No changes yet.
44
55
6+ ## Changes Between 3.0.0 and 3.1.0 (Nov 4, 2025)
7+
8+ ### Dependency Updates
9+
10+ * ` addressable ` to ` 2.8 `
11+ * ` faraday ` to ` 2.14 `
12+ * ` faraday-follow_redirects ` to ` 0.4 `
13+ * ` hashie ` to ` 5.0 `
14+ * ` multi_json ` to ` 1.17 `
15+
16+ Contributed by @fretb .
17+
18+ GitHub issue: [ #67 ] ( https://github.com/ruby-amqp/rabbitmq_http_api_client/pull/67 )
19+
20+
621## Changes Between 2.2.0 and 3.0.0 (July 20, 2024)
722
823### Why the Major Version Bump?
Original file line number Diff line number Diff line change 11# RabbitMQ HTTP API Client for Ruby
22
3- This gem is a [ RabbitMQ HTTP API] ( ) client for Ruby. It supports
3+ This gem is a [ RabbitMQ HTTP API] ( https://www.rabbitmq.com/docs/http-api-reference ) client for Ruby. It supports
44
55 * Getting cluster overview information
66 * Getting cluster nodes status (# file descriptors used, RAM consumption and so on)
@@ -25,7 +25,7 @@ and will support more HTTP API features in the future
2525
2626This library targets [ RabbitMQ release series covered by community support] ( https://www.rabbitmq.com/release-information ) .
2727
28- All versions require [ RabbitMQ Management UI plugin] ( https://www.rabbitmq.com/docs/management/ ) to be installed and enabled.
28+ All versions require the [ Management UI plugin] ( https://www.rabbitmq.com/docs/management/ ) to be enabled.
2929
3030## Installation
3131
@@ -34,15 +34,15 @@ use the latest version of this library:
3434
3535``` ruby
3636# Depends on Faraday 2.x
37- gem ' rabbitmq_http_api_client' , ' >= 3.0 .0'
37+ gem ' rabbitmq_http_api_client' , ' >= 3.1 .0'
3838```
3939
4040If you ** absolutely must** use Faraday 1.x, use the 2.x series:
4141
4242``` ruby
4343# Depends on Faraday 1.x.
4444# Consider using 3.0.0 and later versions.
45- gem ' rabbitmq_http_api_client' , ' >= 2.2.0'
45+ gem ' rabbitmq_http_api_client' , ' ~> 2.2.0'
4646```
4747
4848And then execute:
Original file line number Diff line number Diff line change 11module RabbitMQ
22 module HTTP
33 class Client
4- VERSION = "3.1.0.pre "
4+ VERSION = "3.1.0"
55 end
66 end
77end
You can’t perform that action at this time.
0 commit comments