Skip to content

Commit

Permalink
Change log updates for 2.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelklishin committed Apr 14, 2021
1 parent 4b4f7ff commit 41bc03b
Showing 1 changed file with 28 additions and 1 deletion.
29 changes: 28 additions & 1 deletion ChangeLog.md
@@ -1,7 +1,34 @@
## Changes Between 2.7.0 and 2.8.0 (in development)
## Changes Between 2.8.0 and 2.9.0 (in development)

No changes yet.

## Changes Between 2.7.0 and 2.8.0 (Apr 12, 2021)

### Global Runtime Parameters

The library now supports global runtime parameters:

``` go
// list all global parameters
params, err := rmqc.ListGlobalParameters()
// => []GlobalRuntimeParameter, error
// get a global parameter
p, err := rmqc.GetGlobalParameter("name")
// => *GlobalRuntimeParameter, error
// declare or update a global parameter
resp, err := rmqc.PutGlobalParameter("name", map[string]interface{
endpoints: "amqp://server-name",
})
// => *http.Response, error
// delete a global parameter
resp, err := rmqc.DeleteGlobalParameter("name")
// => *http.Response, error
```

Contributed by @ChunyiLyu.

GitHub issue: [#180](https://github.com/michaelklishin/rabbit-hole/pull/180)

## Changes Between 2.6.0 and 2.7.0 (Mar 30, 2021)

This release contains **minor breaking public API changes**
Expand Down

0 comments on commit 41bc03b

Please sign in to comment.