Skip to content

Commit b905b0f

Browse files
authored
Merge pull request #15 from factorhouse/update-jetty
bump-jetty
2 parents e0f772b + 687323d commit b905b0f

File tree

5 files changed

+22
-18
lines changed

5 files changed

+22
-18
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.13] - 2024-02-23
5+
6+
Bump to latest Jetty9 sponsored support version (9.4.54.v20240208) other Jetty versions remain the same at 11.0.20 or equivalent.
7+
48
## [1.1.12] - 2024-02-05
59

610
Bump to latest Jetty version (11.0.20 or equivalent)

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
| Jetty Version | Current Jetty Dependency | Clojars Project |
88
| ------------- | ------------------------ | --------------- |
9-
| Jetty 9 | 9.4.53.v20231009 | [![Clojars Project](https://img.shields.io/clojars/v/io.factorhouse/slipway-jetty9.svg)](https://clojars.org/io.factorhouse/slipway-jetty9) |
9+
| Jetty 9 | 9.4.54.v20240208 | [![Clojars Project](https://img.shields.io/clojars/v/io.factorhouse/slipway-jetty9.svg)](https://clojars.org/io.factorhouse/slipway-jetty9) |
1010
| Jetty 10 | 10.0.20 | [![Clojars Project](https://img.shields.io/clojars/v/io.factorhouse/slipway-jetty10.svg)](https://clojars.org/io.factorhouse/slipway-jetty10) |
1111
| Jetty 11 | 11.0.20 | [![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. |

slipway-jetty10/project.clj

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject io.factorhouse/slipway-jetty10 "1.1.12"
1+
(defproject io.factorhouse/slipway-jetty10 "1.1.13"
22

33
:description "A Clojure Companion for Jetty"
44

@@ -22,15 +22,15 @@
2222
"fmt" ["with-profile" "+smoke" "cljfmt" "check"]}
2323

2424
:dependencies [[org.clojure/clojure "1.11.1"]
25-
[org.clojure/tools.logging "1.2.4"]
25+
[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.websocket/websocket-jetty-api "10.0.20"]
2929
[org.eclipse.jetty.websocket/websocket-jetty-server "10.0.20" :exclusions [org.slf4j/slf4j-api]]
3030
[org.eclipse.jetty.websocket/websocket-servlet "10.0.20" :exclusions [org.slf4j/slf4j-api]]
3131
[org.eclipse.jetty/jetty-server "10.0.20" :exclusions [org.slf4j/slf4j-api]]
3232
[org.eclipse.jetty/jetty-jaas "10.0.20" :exclusions [org.slf4j/slf4j-api]]
33-
[org.slf4j/slf4j-api "2.0.11"]]
33+
[org.slf4j/slf4j-api "2.0.12"]]
3434

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

slipway-jetty11/project.clj

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject io.factorhouse/slipway-jetty11 "1.1.12"
1+
(defproject io.factorhouse/slipway-jetty11 "1.1.13"
22

33
:description "A Clojure Companion for Jetty"
44

@@ -22,15 +22,15 @@
2222
"fmt" ["with-profile" "+smoke" "cljfmt" "check"]}
2323

2424
:dependencies [[org.clojure/clojure "1.11.1"]
25-
[org.clojure/tools.logging "1.2.4"]
25+
[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.websocket/websocket-jetty-api "11.0.20"]
2929
[org.eclipse.jetty.websocket/websocket-jetty-server "11.0.20" :exclusions [org.slf4j/slf4j-api]]
3030
[org.eclipse.jetty.websocket/websocket-servlet "11.0.20" :exclusions [org.slf4j/slf4j-api]]
3131
[org.eclipse.jetty/jetty-server "11.0.20" :exclusions [org.slf4j/slf4j-api]]
3232
[org.eclipse.jetty/jetty-jaas "11.0.20" :exclusions [org.slf4j/slf4j-api]]
33-
[org.slf4j/slf4j-api "2.0.11"]]
33+
[org.slf4j/slf4j-api "2.0.12"]]
3434

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

slipway-jetty9/project.clj

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

33
:description "A Clojure Companion for Jetty"
44

@@ -8,28 +8,28 @@
88
:url "https://github.com/factorhosue/slipway/blob/main/LICENSE"}
99

1010
:profiles {:dev {:dependencies [[com.fasterxml.jackson.core/jackson-core "2.16.1"] ;; required for internal inconsistency within clj-kondo, kept at latest for CVE avoidance
11-
[clj-kondo "2023.12.15"]
12-
[clj-http "3.12.3" :exclusions [commons-io]]
13-
[ch.qos.logback/logback-classic "1.3.14"]
11+
[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
12+
[clj-http "3.12.3" :exclusions [commons-io commons-codec]]
13+
[ch.qos.logback/logback-classic "1.3.14"] ;; 1.3 branch is for Java EE / Java 8 so we will keep aligned here.
1414
[ring/ring-anti-forgery "1.3.0" :exclusions [crypto-random crypto-equality]]
1515
[metosin/reitit-ring "0.6.0"]]
1616
:resource-paths ["dev-resources" "common/dev-resources"]
17-
:plugins [[lein-cljfmt "0.8.2"]]}
17+
:plugins [[lein-cljfmt "0.9.2"]]}
1818
:smoke {:pedantic? :abort}}
1919

2020
:aliases {"check" ["with-profile" "+smoke" "check"]
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

2424
:dependencies [[org.clojure/clojure "1.11.1"]
25-
[org.clojure/tools.logging "1.2.4"]
25+
[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.53.v20231009"]
29-
[org.eclipse.jetty.websocket/websocket-server "9.4.53.v20231009"]
30-
[org.eclipse.jetty.websocket/websocket-servlet "9.4.53.v20231009"]
31-
[org.eclipse.jetty/jetty-jaas "9.4.53.v20231009"]
32-
[org.slf4j/slf4j-api "2.0.11"]]
28+
[org.eclipse.jetty/jetty-server "9.4.54.v20240208"]
29+
[org.eclipse.jetty.websocket/websocket-server "9.4.54.v20240208"]
30+
[org.eclipse.jetty.websocket/websocket-servlet "9.4.54.v20240208"]
31+
[org.eclipse.jetty/jetty-jaas "9.4.54.v20240208"]
32+
[org.slf4j/slf4j-api "2.0.12"]]
3333

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

0 commit comments

Comments
 (0)