Skip to content

Commit

Permalink
Upgraded camel to 3.13.0. Removed deprecated function (#39)
Browse files Browse the repository at this point in the history
  • Loading branch information
taraktikos authored Nov 17, 2021
1 parent d0484af commit d922108
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 10 deletions.
2 changes: 1 addition & 1 deletion examples/simple/deps.edn
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
ch.qos.logback/logback-core {:mvn/version "1.2.3"}
org.slf4j/slf4j-api {:mvn/version "1.7.30"}

takeoff/clj-camel {:mvn/version "1.1.0"}}
takeoff/clj-camel {:mvn/version "2.1.0"}}
:aliases
{:test {:extra-paths ["test"]
:extra-deps {org.clojure/test.check {:mvn/version "1.0.0"}}}
Expand Down
4 changes: 2 additions & 2 deletions project.clj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
(def camel-version "3.11.0")
(def camel-version "3.13.0")

(defproject takeoff/clj-camel "2.0.1"
(defproject takeoff/clj-camel "2.1.0"
:description "Clojure wrapper for Apache Camel"
:url "https://github.com/TakeoffTech/clj-camel"
:license {:name "Apache License Version 2.0"
Expand Down
6 changes: 0 additions & 6 deletions src/main/clj/clj_camel/core.clj
Original file line number Diff line number Diff line change
Expand Up @@ -566,12 +566,6 @@
[^ProcessorDefinition pd & [^DataFormatDefinition data-format-definition]]
(.unmarshal pd data-format-definition))

(defn ^:deprecated unmarshall
"Deprecated misspelling, keep for backward compatibility for existing
implementations."
[^ProcessorDefinition pd & [^DataFormatDefinition data-format-definition]]
(.unmarshal pd data-format-definition))

(defmacro on-completion
"Adds a hook that invoke this route as a callback when the
Exchange has finished being processed."
Expand Down
2 changes: 1 addition & 1 deletion src/test/resources/aggregate.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<setBody id="1">
<constant>test</constant>
</setBody>
<aggregate completionSize="1000" completionTimeout="1000" completionTimeoutCheckerInterval="1s" id="1">
<aggregate completionSize="1000" completionTimeout="1000" completionTimeoutCheckerInterval="1000" id="1">
<correlationExpression>
<expressionDefinition/>
</correlationExpression>
Expand Down

0 comments on commit d922108

Please sign in to comment.