Skip to content

Commit

Permalink
1.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
wavejumper committed Jul 14, 2022
1 parent 41cfff8 commit 56e55df
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 26 deletions.
12 changes: 6 additions & 6 deletions slipway-core/project.clj
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
(defproject io.operatr/slipway-core "1.0.6"
(defproject io.operatr/slipway-core "1.0.7"
:description "A Jetty ring adapter for enterprise Clojure development."
:url "https://github.com/operatr-io/slipway"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:profiles {:dev {:dependencies [[clj-kondo "2022.05.31"]]
:profiles {:dev {:dependencies [[clj-kondo "2022.06.22"]]
:plugins [[lein-cljfmt "0.8.0"]]}
:kaocha {:dependencies [[lambdaisland/kaocha "1.66.1034" :exclusions [org.clojure/tools.reader]]]}
:kaocha {:dependencies [[lambdaisland/kaocha "1.68.1059" :exclusions [org.clojure/tools.reader]]]}
:smoke {:pedantic? :abort}}
:aliases {"check" ["with-profile" "+smoke" "check"]
"kaocha" ["with-profile" "+kaocha,+smoke" "run" "-m" "kaocha.runner"]
Expand All @@ -15,8 +15,8 @@

:dependencies [[org.clojure/clojure "1.11.1"]
[org.clojure/tools.logging "1.2.4"]
[com.taoensso/sente "1.16.2" :scope "provided"]
[org.eclipse.jetty.websocket/websocket-jetty-server "10.0.9" :scope "provided"]
[org.eclipse.jetty/jetty-jaas "10.0.9" :scope "provided"]
[com.taoensso/sente "1.17.0" :scope "provided"]
[org.eclipse.jetty.websocket/websocket-jetty-server "10.0.11" :scope "provided"]
[org.eclipse.jetty/jetty-jaas "10.0.11" :scope "provided"]
;; explicit due to cve in 2.1.3 brough in by jetty-jaas 10.0.9 (three minor bumps should be fine)
[org.apache.mina/mina-core "2.1.6" :scope "provided"]])
22 changes: 11 additions & 11 deletions slipway-jetty10/project.clj
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
(defproject io.operatr/slipway-jetty10 "1.0.6"
(defproject io.operatr/slipway-jetty10 "1.0.7"
:description "A Jetty ring adapter for enterprise Clojure development."
:url "https://github.com/operatr-io/slipway"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:profiles {:dev {:dependencies [[clj-kondo "2022.05.31"]
:profiles {:dev {:dependencies [[clj-kondo "2022.06.22"]
[clj-http "3.12.3"]
[commons-io "2.11.0"]]
:resource-paths ["dev-resources"]
:plugins [[lein-cljfmt "0.8.0"]]}
:kaocha {:dependencies [[lambdaisland/kaocha "1.66.1034"]]}
:kaocha {:dependencies [[lambdaisland/kaocha "1.68.1059"]]}
:smoke {:pedantic? :abort}}
:aliases {"check" ["with-profile" "+smoke" "check"]
"kaocha" ["with-profile" "+kaocha,+smoke" "run" "-m" "kaocha.runner"]
Expand All @@ -19,13 +19,13 @@
:dependencies [[org.clojure/clojure "1.11.1"]
[org.clojure/tools.logging "1.2.4"]
[ring/ring-servlet "1.9.5"]
[io.operatr/slipway-core "1.0.6"]
[org.eclipse.jetty.websocket/websocket-jetty-api "10.0.9" :exclusions [org.slf4j/slf4j-api]]
[org.eclipse.jetty.websocket/websocket-jetty-server "10.0.9" :exclusions [org.slf4j/slf4j-api]]
[org.eclipse.jetty.websocket/websocket-servlet "10.0.9" :exclusions [org.slf4j/slf4j-api]]
[org.eclipse.jetty/jetty-alpn-server "10.0.9" :exclusions [org.slf4j/slf4j-api]]
[org.eclipse.jetty/jetty-alpn-java-server "10.0.9" :exclusions [org.slf4j/slf4j-api]]
[org.eclipse.jetty/jetty-server "10.0.9" :exclusions [org.slf4j/slf4j-api]]
[org.eclipse.jetty/jetty-jaas "10.0.9" :exclusions [org.slf4j/slf4j-api]]
[io.operatr/slipway-core "1.0.7"]
[org.eclipse.jetty.websocket/websocket-jetty-api "10.0.11" :exclusions [org.slf4j/slf4j-api]]
[org.eclipse.jetty.websocket/websocket-jetty-server "10.0.11" :exclusions [org.slf4j/slf4j-api]]
[org.eclipse.jetty.websocket/websocket-servlet "10.0.11" :exclusions [org.slf4j/slf4j-api]]
[org.eclipse.jetty/jetty-alpn-server "10.0.11" :exclusions [org.slf4j/slf4j-api]]
[org.eclipse.jetty/jetty-alpn-java-server "10.0.11" :exclusions [org.slf4j/slf4j-api]]
[org.eclipse.jetty/jetty-server "10.0.11" :exclusions [org.slf4j/slf4j-api]]
[org.eclipse.jetty/jetty-jaas "10.0.11" :exclusions [org.slf4j/slf4j-api]]
;; Explicit due to cve in 2.1.3 brought in by jetty-jaas 10.0.9 (three minor bumps should be fine)
[org.apache.mina/mina-core "2.1.6"]])
18 changes: 9 additions & 9 deletions slipway-jetty9/project.clj
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
(defproject io.operatr/slipway-jetty9 "1.0.6"
(defproject io.operatr/slipway-jetty9 "1.0.7"
:description "A Jetty ring adapter for enterprise Clojure development."
:url "https://github.com/operatr-io/slipway"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:profiles {:dev {:dependencies [[clj-kondo "2022.05.31"]
:profiles {:dev {:dependencies [[clj-kondo "2022.06.22"]
[clj-http "3.12.3"]
[commons-io "2.11.0"]]
:resource-paths ["dev-resources"]
:plugins [[lein-cljfmt "0.8.0"]]}
:kaocha {:dependencies [[lambdaisland/kaocha "1.66.1034"]]}
:kaocha {:dependencies [[lambdaisland/kaocha "1.68.1059"]]}
:smoke {:pedantic? :abort}}
:aliases {"check" ["with-profile" "+smoke" "check"]
"kaocha" ["with-profile" "+kaocha,+smoke" "run" "-m" "kaocha.runner"]
Expand All @@ -18,9 +18,9 @@

:dependencies [[org.clojure/clojure "1.11.1"]
[ring/ring-servlet "1.9.5"]
[io.operatr/slipway-core "1.0.6"]
[org.eclipse.jetty/jetty-server "9.4.46.v20220331"]
[org.eclipse.jetty.websocket/websocket-server "9.4.46.v20220331"]
[org.eclipse.jetty.websocket/websocket-servlet "9.4.46.v20220331"]
[org.eclipse.jetty/jetty-alpn-server "9.4.46.v20220331"]
[org.eclipse.jetty/jetty-jaas "9.4.46.v20220331"]])
[io.operatr/slipway-core "1.0.7"]
[org.eclipse.jetty/jetty-server "9.4.48.v20220622"]
[org.eclipse.jetty.websocket/websocket-server "9.4.48.v20220622"]
[org.eclipse.jetty.websocket/websocket-servlet "9.4.48.v20220622"]
[org.eclipse.jetty/jetty-alpn-server "9.4.48.v20220622"]
[org.eclipse.jetty/jetty-jaas "9.4.48.v20220622"]])

0 comments on commit 56e55df

Please sign in to comment.