Skip to content

Commit cdba8db

Browse files
authored
Merge pull request #20 from factorhouse/update-jetty
Update Jetty Dependencies
2 parents a032319 + 72caaed commit cdba8db

File tree

5 files changed

+28
-24
lines changed

5 files changed

+28
-24
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.16] - 2024-09-02
5+
6+
Bump to latest Jetty version (11.0.23 or equivalent)
7+
48
## [1.1.15] - 2024-07-24
59

610
Bump to latest Jetty version (11.0.22 or equivalent)

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
| Jetty Version | Current Jetty Dependency | Clojars Project |
88
| ------------- | ------------------------ | --------------- |
99
| 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.22 | [![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.22 | [![Clojars Project](https://img.shields.io/clojars/v/io.factorhouse/slipway-jetty11.svg)](https://clojars.org/io.factorhouse/slipway-jetty11) |
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) |
1212
| Jetty 12 | - | Available once Jetty 12 stabilises. |
1313

1414
----

slipway-jetty10/project.clj

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

33
:description "A Clojure Companion for Jetty"
44

@@ -7,7 +7,7 @@
77
:license {:name "MIT License"
88
:url "https://github.com/factorhouse/slipway/blob/main/LICENSE"}
99

10-
:profiles {:dev {:dependencies [[com.fasterxml.jackson.core/jackson-core "2.16.2"] ;; required for internal inconsistency within clj-kondo, kept at latest for CVE avoidance
10+
:profiles {:dev {:dependencies [[com.fasterxml.jackson.core/jackson-core "2.17.2"] ;; required for internal inconsistency within clj-kondo, kept at latest for CVE avoidance
1111
[clj-kondo "2023.12.15"]
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.
@@ -21,16 +21,16 @@
2121
"kondo" ["with-profile" "+smoke" "run" "-m" "clj-kondo.main" "--lint" "common/src:common-jetty1x/src:test:common/test" "--parallel"]
2222
"fmt" ["with-profile" "+smoke" "cljfmt" "check"]}
2323

24-
:dependencies [[org.clojure/clojure "1.11.3"]
24+
:dependencies [[org.clojure/clojure "1.11.4"]
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.22"]
29-
[org.eclipse.jetty.websocket/websocket-jetty-server "10.0.22" :exclusions [org.slf4j/slf4j-api]]
30-
[org.eclipse.jetty.websocket/websocket-servlet "10.0.22" :exclusions [org.slf4j/slf4j-api]]
31-
[org.eclipse.jetty/jetty-server "10.0.22" :exclusions [org.slf4j/slf4j-api]]
32-
[org.eclipse.jetty/jetty-jaas "10.0.22" :exclusions [org.slf4j/slf4j-api]]
33-
[org.slf4j/slf4j-api "2.0.13"]]
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]]
33+
[org.slf4j/slf4j-api "2.0.16"]]
3434

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

slipway-jetty11/project.clj

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

33
:description "A Clojure Companion for Jetty"
44

@@ -7,7 +7,7 @@
77
:license {:name "MIT License"
88
:url "https://github.com/factorhouse/slipway/blob/main/LICENSE"}
99

10-
:profiles {:dev {:dependencies [[com.fasterxml.jackson.core/jackson-core "2.16.2"] ;; required for internal inconsistency within clj-kondo, kept at latest for CVE avoidance
10+
:profiles {:dev {:dependencies [[com.fasterxml.jackson.core/jackson-core "2.17.2"] ;; required for internal inconsistency within clj-kondo, kept at latest for CVE avoidance
1111
[clj-kondo "2023.12.15"]
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.
@@ -21,16 +21,16 @@
2121
"kondo" ["with-profile" "+smoke" "run" "-m" "clj-kondo.main" "--lint" "common/src:common-jetty1x/src:test:common/test" "--parallel"]
2222
"fmt" ["with-profile" "+smoke" "cljfmt" "check"]}
2323

24-
:dependencies [[org.clojure/clojure "1.11.3"]
24+
:dependencies [[org.clojure/clojure "1.11.4"]
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.22"]
29-
[org.eclipse.jetty.websocket/websocket-jetty-server "11.0.22" :exclusions [org.slf4j/slf4j-api]]
30-
[org.eclipse.jetty.websocket/websocket-servlet "11.0.22" :exclusions [org.slf4j/slf4j-api]]
31-
[org.eclipse.jetty/jetty-server "11.0.22" :exclusions [org.slf4j/slf4j-api]]
32-
[org.eclipse.jetty/jetty-jaas "11.0.22" :exclusions [org.slf4j/slf4j-api]]
33-
[org.slf4j/slf4j-api "2.0.13"]]
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]]
33+
[org.slf4j/slf4j-api "2.0.16"]]
3434

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

slipway-jetty9/project.clj

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

33
:description "A Clojure Companion for Jetty"
44

@@ -7,7 +7,7 @@
77
:license {:name "MIT License"
88
:url "https://github.com/factorhosue/slipway/blob/main/LICENSE"}
99

10-
:profiles {:dev {:dependencies [[com.fasterxml.jackson.core/jackson-core "2.16.2"] ;; required for internal inconsistency within clj-kondo, kept at latest for CVE avoidance
10+
:profiles {:dev {:dependencies [[com.fasterxml.jackson.core/jackson-core "2.17.2"] ;; required for internal inconsistency within clj-kondo, kept at latest for CVE avoidance
1111
[clj-kondo "2023.12.15"] ;; https://github.com/clj-kondo/clj-kondo/issues/2277 leave at this version until we move to Clojure 1.12.x and can fix
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.
@@ -21,15 +21,15 @@
2121
"kondo" ["with-profile" "+smoke" "run" "-m" "clj-kondo.main" "--lint" "src:common/src:test:common/test" "--parallel"]
2222
"fmt" ["with-profile" "+smoke" "cljfmt" "check"]}
2323

24-
:dependencies [[org.clojure/clojure "1.11.3"]
24+
:dependencies [[org.clojure/clojure "1.11.4"]
2525
[org.clojure/tools.logging "1.3.0"]
2626
[ring/ring-servlet "1.9.6"]
2727
[com.taoensso/sente "1.17.0"]
2828
[org.eclipse.jetty/jetty-server "9.4.55.v20240627"]
2929
[org.eclipse.jetty.websocket/websocket-server "9.4.55.v20240627"]
3030
[org.eclipse.jetty.websocket/websocket-servlet "9.4.55.v20240627"]
3131
[org.eclipse.jetty/jetty-jaas "9.4.55.v20240627"]
32-
[org.slf4j/slf4j-api "2.0.13"]]
32+
[org.slf4j/slf4j-api "2.0.16"]]
3333

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

0 commit comments

Comments
 (0)