Skip to content

Commit

Permalink
5.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelklishin committed Oct 23, 2024
1 parent b066a72 commit b6416b5
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 5 deletions.
29 changes: 27 additions & 2 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,33 @@
## Changes between Langohr 5.4.0 and 5.5.0 (unreleased)
## Changes between Langohr 5.4.0 and 5.5.0 (October 22)

### HTTP 2 Client

Contributed by @jimpil.

GitHub issue: [#119](https://github.com/michaelklishin/langohr/pull/119)

### Support for More (Java Client's) ConnectionFactory Options

Contributd by @vincentjames501.

GitHub issue: [#122](https://github.com/michaelklishin/langohr/pull/122)

### Default Consumer Had an Incorrect Signature of handleRecoveryOk

Contributed by @jimpil.

GitHub issue: [#116](https://github.com/michaelklishin/langohr/issues/116)

### Correctly Pick TLS Port (5671) When Only :ssl is Passed in Connection Options

Contributed by @vincentjames501.

GitHub issue: [#114](https://github.com/michaelklishin/langohr/issues/114)

### RabbitMQ Java Client Upgrade

RabbitMQ Java client dependency has been updated to `5.16.x`.
RabbitMQ Java client dependency has been updated to `5.22.x`.


## Changes between Langohr 5.3.0 and 5.4.0 (April 24, 2022)

Expand Down
2 changes: 1 addition & 1 deletion project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject com.novemberain/langohr "6.0.0-SNAPSHOT"
(defproject com.novemberain/langohr "5.5.0"
:description "A Clojure client for RabbitMQ that embraces the underlying protocol. Built on top of the RabbitMQ Java client"
:min-lein-version "2.5.1"
:license {:name "Eclipse Public License"}
Expand Down
4 changes: 2 additions & 2 deletions src/clojure/langohr/core.clj
Original file line number Diff line number Diff line change
Expand Up @@ -305,8 +305,8 @@
"information" "See http://clojurerabbitmq.info/"
"platform" (platform-string)
"capabilities" (get (AMQConnection/defaultClientProperties) "capabilities")
"copyright" "Copyright (C) 2011-2020 Michael S. Klishin, Alex Petrov"
"version" "5.3.0-SNAPSHOT"})
"copyright" "Copyright (C) 2011-2024 Michael S. Klishin, Alex Petrov"
"version" "5.5.0"})

(defn- auth-mechanism->sasl-config
[{:keys [authentication-mechanism]}]
Expand Down

0 comments on commit b6416b5

Please sign in to comment.