Skip to content

Commit d16d134

Browse files
authored
Merge pull request #21 from factorhouse/update-jetty
Update Jetty
2 parents cdba8db + e88afd8 commit d16d134

File tree

5 files changed

+27
-23
lines changed

5 files changed

+27
-23
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# Change Log
22
All notable changes to this project will be documented in this file. This change log follows the conventions of [keepachangelog.com](http://keepachangelog.com/)
33

4+
## [1.1.17] - 2024-09-05
5+
6+
Bump to latest Jetty version (11.0.24 or equivalent)
7+
48
## [1.1.16] - 2024-09-02
59

610
Bump to latest Jetty version (11.0.23 or equivalent)

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66

77
| Jetty Version | Current Jetty Dependency | Clojars Project |
88
| ------------- | ------------------------ | --------------- |
9-
| 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) |
10-
| 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) |
11-
| 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) |
9+
| 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) |
10+
| 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) |
11+
| 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) |
1212
| Jetty 12 | - | Available once Jetty 12 stabilises. |
1313

1414
----

slipway-jetty10/project.clj

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject io.factorhouse/slipway-jetty10 "1.1.16"
1+
(defproject io.factorhouse/slipway-jetty10 "1.1.17"
22

33
:description "A Clojure Companion for Jetty"
44

@@ -12,7 +12,7 @@
1212
[clj-http "3.13.0"]
1313
[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.
1414
[ring/ring-anti-forgery "1.3.1"]
15-
[metosin/reitit-ring "0.7.1" :exclusions [ring/ring-core]]]
15+
[metosin/reitit-ring "0.7.2" :exclusions [ring/ring-core]]]
1616
:resource-paths ["dev-resources" "common/dev-resources"]
1717
:plugins [[lein-cljfmt "0.9.2"]]}
1818
:smoke {:pedantic? :abort}}
@@ -25,11 +25,11 @@
2525
[org.clojure/tools.logging "1.3.0"]
2626
[ring/ring-servlet "1.9.6"]
2727
[com.taoensso/sente "1.17.0"]
28-
[org.eclipse.jetty.websocket/websocket-jetty-api "10.0.23"]
29-
[org.eclipse.jetty.websocket/websocket-jetty-server "10.0.23" :exclusions [org.slf4j/slf4j-api]]
30-
[org.eclipse.jetty.websocket/websocket-servlet "10.0.23" :exclusions [org.slf4j/slf4j-api]]
31-
[org.eclipse.jetty/jetty-server "10.0.23" :exclusions [org.slf4j/slf4j-api]]
32-
[org.eclipse.jetty/jetty-jaas "10.0.23" :exclusions [org.slf4j/slf4j-api]]
28+
[org.eclipse.jetty.websocket/websocket-jetty-api "10.0.24"]
29+
[org.eclipse.jetty.websocket/websocket-jetty-server "10.0.24" :exclusions [org.slf4j/slf4j-api]]
30+
[org.eclipse.jetty.websocket/websocket-servlet "10.0.24" :exclusions [org.slf4j/slf4j-api]]
31+
[org.eclipse.jetty/jetty-server "10.0.24" :exclusions [org.slf4j/slf4j-api]]
32+
[org.eclipse.jetty/jetty-jaas "10.0.24" :exclusions [org.slf4j/slf4j-api]]
3333
[org.slf4j/slf4j-api "2.0.16"]]
3434

3535
:source-paths ["common/src" "common-jetty1x/src" "common-javax/src"]

slipway-jetty11/project.clj

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject io.factorhouse/slipway-jetty11 "1.1.16"
1+
(defproject io.factorhouse/slipway-jetty11 "1.1.17"
22

33
:description "A Clojure Companion for Jetty"
44

@@ -12,7 +12,7 @@
1212
[clj-http "3.13.0"]
1313
[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.
1414
[ring/ring-anti-forgery "1.3.1"]
15-
[metosin/reitit-ring "0.7.1" :exclusions [ring/ring-core]]]
15+
[metosin/reitit-ring "0.7.2" :exclusions [ring/ring-core]]]
1616
:resource-paths ["dev-resources" "common/dev-resources"]
1717
:plugins [[lein-cljfmt "0.9.2"]]}
1818
:smoke {:pedantic? :abort}}
@@ -25,11 +25,11 @@
2525
[org.clojure/tools.logging "1.3.0"]
2626
[ring/ring-servlet "1.9.6"]
2727
[com.taoensso/sente "1.17.0"]
28-
[org.eclipse.jetty.websocket/websocket-jetty-api "11.0.23"]
29-
[org.eclipse.jetty.websocket/websocket-jetty-server "11.0.23" :exclusions [org.slf4j/slf4j-api]]
30-
[org.eclipse.jetty.websocket/websocket-servlet "11.0.23" :exclusions [org.slf4j/slf4j-api]]
31-
[org.eclipse.jetty/jetty-server "11.0.23" :exclusions [org.slf4j/slf4j-api]]
32-
[org.eclipse.jetty/jetty-jaas "11.0.23" :exclusions [org.slf4j/slf4j-api]]
28+
[org.eclipse.jetty.websocket/websocket-jetty-api "11.0.24"]
29+
[org.eclipse.jetty.websocket/websocket-jetty-server "11.0.24" :exclusions [org.slf4j/slf4j-api]]
30+
[org.eclipse.jetty.websocket/websocket-servlet "11.0.24" :exclusions [org.slf4j/slf4j-api]]
31+
[org.eclipse.jetty/jetty-server "11.0.24" :exclusions [org.slf4j/slf4j-api]]
32+
[org.eclipse.jetty/jetty-jaas "11.0.24" :exclusions [org.slf4j/slf4j-api]]
3333
[org.slf4j/slf4j-api "2.0.16"]]
3434

3535
:source-paths ["common/src" "common-jetty1x/src" "common-jakarta/src"]

slipway-jetty9/project.clj

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject io.factorhouse/slipway-jetty9 "1.1.16"
1+
(defproject io.factorhouse/slipway-jetty9 "1.1.17"
22

33
:description "A Clojure Companion for Jetty"
44

@@ -12,7 +12,7 @@
1212
[clj-http "3.13.0"]
1313
[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.
1414
[ring/ring-anti-forgery "1.3.1"]
15-
[metosin/reitit-ring "0.7.1" :exclusions [ring/ring-core]]]
15+
[metosin/reitit-ring "0.7.2" :exclusions [ring/ring-core]]]
1616
:resource-paths ["dev-resources" "common/dev-resources"]
1717
:plugins [[lein-cljfmt "0.9.2"]]}
1818
:smoke {:pedantic? :abort}}
@@ -25,10 +25,10 @@
2525
[org.clojure/tools.logging "1.3.0"]
2626
[ring/ring-servlet "1.9.6"]
2727
[com.taoensso/sente "1.17.0"]
28-
[org.eclipse.jetty/jetty-server "9.4.55.v20240627"]
29-
[org.eclipse.jetty.websocket/websocket-server "9.4.55.v20240627"]
30-
[org.eclipse.jetty.websocket/websocket-servlet "9.4.55.v20240627"]
31-
[org.eclipse.jetty/jetty-jaas "9.4.55.v20240627"]
28+
[org.eclipse.jetty/jetty-server "9.4.56.v20240826"]
29+
[org.eclipse.jetty.websocket/websocket-server "9.4.56.v20240826"]
30+
[org.eclipse.jetty.websocket/websocket-servlet "9.4.56.v20240826"]
31+
[org.eclipse.jetty/jetty-jaas "9.4.56.v20240826"]
3232
[org.slf4j/slf4j-api "2.0.16"]]
3333

3434
:source-paths ["src" "common/src" "common-javax/src"]

0 commit comments

Comments
 (0)