diff --git a/CHANGELOG.md b/CHANGELOG.md index c26cae64..33e29776 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ # Change Log All notable changes to this project will be documented in this file. This change log follows the conventions of [keepachangelog.com](http://keepachangelog.com/) +## [1.1.17] - 2024-09-05 + +Bump to latest Jetty version (11.0.24 or equivalent) + ## [1.1.16] - 2024-09-02 Bump to latest Jetty version (11.0.23 or equivalent) diff --git a/README.md b/README.md index 6e79612d..0ddb11f8 100644 --- a/README.md +++ b/README.md @@ -6,9 +6,9 @@ | Jetty Version | Current Jetty Dependency | Clojars Project | | ------------- | ------------------------ | --------------- | -| Jetty 9 | 9.4.55.v20240627 | [![Clojars Project](https://img.shields.io/clojars/v/io.factorhouse/slipway-jetty9.svg)](https://clojars.org/io.factorhouse/slipway-jetty9) | -| Jetty 10 | 10.0.23 | [![Clojars Project](https://img.shields.io/clojars/v/io.factorhouse/slipway-jetty10.svg)](https://clojars.org/io.factorhouse/slipway-jetty10) | -| Jetty 11 | 11.0.23 | [![Clojars Project](https://img.shields.io/clojars/v/io.factorhouse/slipway-jetty11.svg)](https://clojars.org/io.factorhouse/slipway-jetty11) | +| Jetty 9 | 9.4.56.v20240826 | [![Clojars Project](https://img.shields.io/clojars/v/io.factorhouse/slipway-jetty9.svg)](https://clojars.org/io.factorhouse/slipway-jetty9) | +| Jetty 10 | 10.0.24 | [![Clojars Project](https://img.shields.io/clojars/v/io.factorhouse/slipway-jetty10.svg)](https://clojars.org/io.factorhouse/slipway-jetty10) | +| Jetty 11 | 11.0.24 | [![Clojars Project](https://img.shields.io/clojars/v/io.factorhouse/slipway-jetty11.svg)](https://clojars.org/io.factorhouse/slipway-jetty11) | | Jetty 12 | - | Available once Jetty 12 stabilises. | ---- diff --git a/slipway-jetty10/project.clj b/slipway-jetty10/project.clj index 4f85ece6..61ea42bd 100644 --- a/slipway-jetty10/project.clj +++ b/slipway-jetty10/project.clj @@ -1,4 +1,4 @@ -(defproject io.factorhouse/slipway-jetty10 "1.1.16" +(defproject io.factorhouse/slipway-jetty10 "1.1.17" :description "A Clojure Companion for Jetty" @@ -12,7 +12,7 @@ [clj-http "3.13.0"] [ch.qos.logback/logback-classic "1.3.14"] ;; Logback 1.3.x supports the Java EE edition whereas logback 1.4.x supports Jakarta EE, otherwise the two versions are feature identical. The 1.5.x continues the 1.4.x series but with logback-access relocated to its own repository. [ring/ring-anti-forgery "1.3.1"] - [metosin/reitit-ring "0.7.1" :exclusions [ring/ring-core]]] + [metosin/reitit-ring "0.7.2" :exclusions [ring/ring-core]]] :resource-paths ["dev-resources" "common/dev-resources"] :plugins [[lein-cljfmt "0.9.2"]]} :smoke {:pedantic? :abort}} @@ -25,11 +25,11 @@ [org.clojure/tools.logging "1.3.0"] [ring/ring-servlet "1.9.6"] [com.taoensso/sente "1.17.0"] - [org.eclipse.jetty.websocket/websocket-jetty-api "10.0.23"] - [org.eclipse.jetty.websocket/websocket-jetty-server "10.0.23" :exclusions [org.slf4j/slf4j-api]] - [org.eclipse.jetty.websocket/websocket-servlet "10.0.23" :exclusions [org.slf4j/slf4j-api]] - [org.eclipse.jetty/jetty-server "10.0.23" :exclusions [org.slf4j/slf4j-api]] - [org.eclipse.jetty/jetty-jaas "10.0.23" :exclusions [org.slf4j/slf4j-api]] + [org.eclipse.jetty.websocket/websocket-jetty-api "10.0.24"] + [org.eclipse.jetty.websocket/websocket-jetty-server "10.0.24" :exclusions [org.slf4j/slf4j-api]] + [org.eclipse.jetty.websocket/websocket-servlet "10.0.24" :exclusions [org.slf4j/slf4j-api]] + [org.eclipse.jetty/jetty-server "10.0.24" :exclusions [org.slf4j/slf4j-api]] + [org.eclipse.jetty/jetty-jaas "10.0.24" :exclusions [org.slf4j/slf4j-api]] [org.slf4j/slf4j-api "2.0.16"]] :source-paths ["common/src" "common-jetty1x/src" "common-javax/src"] diff --git a/slipway-jetty11/project.clj b/slipway-jetty11/project.clj index 738a9bb9..9fa4d45b 100644 --- a/slipway-jetty11/project.clj +++ b/slipway-jetty11/project.clj @@ -1,4 +1,4 @@ -(defproject io.factorhouse/slipway-jetty11 "1.1.16" +(defproject io.factorhouse/slipway-jetty11 "1.1.17" :description "A Clojure Companion for Jetty" @@ -12,7 +12,7 @@ [clj-http "3.13.0"] [ch.qos.logback/logback-classic "1.3.14"] ;; Logback 1.3.x supports the Java EE edition whereas logback 1.4.x supports Jakarta EE, otherwise the two versions are feature identical. The 1.5.x continues the 1.4.x series but with logback-access relocated to its own repository. [ring/ring-anti-forgery "1.3.1"] - [metosin/reitit-ring "0.7.1" :exclusions [ring/ring-core]]] + [metosin/reitit-ring "0.7.2" :exclusions [ring/ring-core]]] :resource-paths ["dev-resources" "common/dev-resources"] :plugins [[lein-cljfmt "0.9.2"]]} :smoke {:pedantic? :abort}} @@ -25,11 +25,11 @@ [org.clojure/tools.logging "1.3.0"] [ring/ring-servlet "1.9.6"] [com.taoensso/sente "1.17.0"] - [org.eclipse.jetty.websocket/websocket-jetty-api "11.0.23"] - [org.eclipse.jetty.websocket/websocket-jetty-server "11.0.23" :exclusions [org.slf4j/slf4j-api]] - [org.eclipse.jetty.websocket/websocket-servlet "11.0.23" :exclusions [org.slf4j/slf4j-api]] - [org.eclipse.jetty/jetty-server "11.0.23" :exclusions [org.slf4j/slf4j-api]] - [org.eclipse.jetty/jetty-jaas "11.0.23" :exclusions [org.slf4j/slf4j-api]] + [org.eclipse.jetty.websocket/websocket-jetty-api "11.0.24"] + [org.eclipse.jetty.websocket/websocket-jetty-server "11.0.24" :exclusions [org.slf4j/slf4j-api]] + [org.eclipse.jetty.websocket/websocket-servlet "11.0.24" :exclusions [org.slf4j/slf4j-api]] + [org.eclipse.jetty/jetty-server "11.0.24" :exclusions [org.slf4j/slf4j-api]] + [org.eclipse.jetty/jetty-jaas "11.0.24" :exclusions [org.slf4j/slf4j-api]] [org.slf4j/slf4j-api "2.0.16"]] :source-paths ["common/src" "common-jetty1x/src" "common-jakarta/src"] diff --git a/slipway-jetty9/project.clj b/slipway-jetty9/project.clj index c58fad3a..d7f590a5 100644 --- a/slipway-jetty9/project.clj +++ b/slipway-jetty9/project.clj @@ -1,4 +1,4 @@ -(defproject io.factorhouse/slipway-jetty9 "1.1.16" +(defproject io.factorhouse/slipway-jetty9 "1.1.17" :description "A Clojure Companion for Jetty" @@ -12,7 +12,7 @@ [clj-http "3.13.0"] [ch.qos.logback/logback-classic "1.3.14"] ;; Logback 1.3.x supports the Java EE edition whereas logback 1.4.x supports Jakarta EE, otherwise the two versions are feature identical. The 1.5.x continues the 1.4.x series but with logback-access relocated to its own repository. [ring/ring-anti-forgery "1.3.1"] - [metosin/reitit-ring "0.7.1" :exclusions [ring/ring-core]]] + [metosin/reitit-ring "0.7.2" :exclusions [ring/ring-core]]] :resource-paths ["dev-resources" "common/dev-resources"] :plugins [[lein-cljfmt "0.9.2"]]} :smoke {:pedantic? :abort}} @@ -25,10 +25,10 @@ [org.clojure/tools.logging "1.3.0"] [ring/ring-servlet "1.9.6"] [com.taoensso/sente "1.17.0"] - [org.eclipse.jetty/jetty-server "9.4.55.v20240627"] - [org.eclipse.jetty.websocket/websocket-server "9.4.55.v20240627"] - [org.eclipse.jetty.websocket/websocket-servlet "9.4.55.v20240627"] - [org.eclipse.jetty/jetty-jaas "9.4.55.v20240627"] + [org.eclipse.jetty/jetty-server "9.4.56.v20240826"] + [org.eclipse.jetty.websocket/websocket-server "9.4.56.v20240826"] + [org.eclipse.jetty.websocket/websocket-servlet "9.4.56.v20240826"] + [org.eclipse.jetty/jetty-jaas "9.4.56.v20240826"] [org.slf4j/slf4j-api "2.0.16"]] :source-paths ["src" "common/src" "common-javax/src"]