File tree 10 files changed +59
-25
lines changed
10 files changed +59
-25
lines changed Original file line number Diff line number Diff line change @@ -14,24 +14,24 @@ jobs:
14
14
15
15
steps :
16
16
- name : Checkout
17
- uses : actions/checkout@v3
17
+ uses : actions/checkout@v4
18
18
19
19
- name : Setup Java8
20
20
if : ${{ matrix.project == 'slipway-jetty9' }}
21
- uses : actions/setup-java@v3
21
+ uses : actions/setup-java@v4
22
22
with :
23
23
distribution : ' temurin'
24
24
java-version : ' 8'
25
25
26
26
- name : Setup Java11
27
27
if : ${{ matrix.project != 'slipway-jetty9' }}
28
- uses : actions/setup-java@v3
28
+ uses : actions/setup-java@v4
29
29
with :
30
30
distribution : ' temurin'
31
31
java-version : ' 11'
32
32
33
33
- name : Install clojure tools
34
- uses : DeLaGuardo/setup-clojure@10 .3
34
+ uses : DeLaGuardo/setup-clojure@12 .3
35
35
with :
36
36
lein : ' latest'
37
37
github-token : ${{ secrets.GITHUB_TOKEN }}
62
62
63
63
- name : Persist NVD
64
64
if : always()
65
- uses : actions/upload-artifact@v3
65
+ uses : actions/upload-artifact@v4
66
66
with :
67
- name : NVD result
67
+ name : nvd-${{ matrix.project }}-${{ github.sha }}
68
68
path : ./${{ matrix.project }}/dependency-check/report/*
69
69
retention-days : 1
Original file line number Diff line number Diff line change 1
1
# Change Log
2
2
All notable changes to this project will be documented in this file. This change log follows the conventions of [ keepachangelog.com] ( http://keepachangelog.com/ )
3
3
4
+ ## [ 1.1.12] - 2024-02-05
5
+
6
+ Bump to latest Jetty version (11.0.20 or equivalent)
7
+
4
8
## [ 1.1.11] - 2024-01-08
5
9
6
10
Bump to latest Jetty version (11.0.19 or equivalent)
Original file line number Diff line number Diff line change 7
7
| Jetty Version | Current Jetty Dependency | Clojars Project |
8
8
| ------------- | ------------------------ | --------------- |
9
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 ) |
10
- | Jetty 10 | 10.0.19 | [ ![ 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.19 | [ ![ 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.20 | [ ![ 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.20 | [ ![ Clojars Project] ( https://img.shields.io/clojars/v/io.factorhouse/slipway-jetty11.svg )] ( https://clojars.org/io.factorhouse/slipway-jetty11 ) |
12
12
| Jetty 12 | - | Available once Jetty 12 stabilises. |
13
13
14
14
----
Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env bash
2
2
3
- VERSION=" 8.4.0 "
3
+ VERSION=" 9.0.9 "
4
4
5
5
if [ ! -d " dependency-check" ]
6
6
then
Original file line number Diff line number Diff line change 7
7
<packageUrl regex =" true" >^pkg:maven/commons\-fileupload/commons\-fileupload@.*$</packageUrl >
8
8
<cve >CVE-2023-24998</cve >
9
9
</suppress >
10
+ <suppress >
11
+ <notes >Clojure false positive</notes >
12
+ <packageUrl regex =" true" >^pkg:maven/org\.clojure/.*$</packageUrl >
13
+ <cve >CVE-2017-20189</cve >
14
+ </suppress >
15
+ <suppress >
16
+ <notes >Clojure false positive</notes >
17
+ <packageUrl regex =" true" >^pkg:maven/ring/ring\-codec@.*$</packageUrl >
18
+ <cve >CVE-2017-20189</cve >
19
+ </suppress >
10
20
</suppressions >
Original file line number Diff line number Diff line change 1
- (defproject io.factorhouse /slipway-jetty10 " 1.1.11 "
1
+ (defproject io.factorhouse /slipway-jetty10 " 1.1.12 "
2
2
3
3
:description " A Clojure Companion for Jetty"
4
4
25
25
[org.clojure/tools.logging " 1.2.4" ]
26
26
[ring/ring-servlet " 1.9.6" ]
27
27
[com.taoensso/sente " 1.17.0" ]
28
- [org.eclipse.jetty.websocket/websocket-jetty-api " 10.0.19 " ]
29
- [org.eclipse.jetty.websocket/websocket-jetty-server " 10.0.19 " :exclusions [org.slf4j/slf4j-api]]
30
- [org.eclipse.jetty.websocket/websocket-servlet " 10.0.19 " :exclusions [org.slf4j/slf4j-api]]
31
- [org.eclipse.jetty/jetty-server " 10.0.19 " :exclusions [org.slf4j/slf4j-api]]
32
- [org.eclipse.jetty/jetty-jaas " 10.0.19 " :exclusions [org.slf4j/slf4j-api]]
33
- [org.slf4j/slf4j-api " 2.0.10 " ]]
28
+ [org.eclipse.jetty.websocket/websocket-jetty-api " 10.0.20 " ]
29
+ [org.eclipse.jetty.websocket/websocket-jetty-server " 10.0.20 " :exclusions [org.slf4j/slf4j-api]]
30
+ [org.eclipse.jetty.websocket/websocket-servlet " 10.0.20 " :exclusions [org.slf4j/slf4j-api]]
31
+ [org.eclipse.jetty/jetty-server " 10.0.20 " :exclusions [org.slf4j/slf4j-api]]
32
+ [org.eclipse.jetty/jetty-jaas " 10.0.20 " :exclusions [org.slf4j/slf4j-api]]
33
+ [org.slf4j/slf4j-api " 2.0.11 " ]]
34
34
35
35
:source-paths [" common/src" " common-jetty1x/src" " common-javax/src" ]
36
36
:test-paths [" test" " common/test" ])
Original file line number Diff line number Diff line change 7
7
<packageUrl regex =" true" >^pkg:maven/commons\-fileupload/commons\-fileupload@.*$</packageUrl >
8
8
<cve >CVE-2023-24998</cve >
9
9
</suppress >
10
+ <suppress >
11
+ <notes >Clojure false positive</notes >
12
+ <packageUrl regex =" true" >^pkg:maven/org\.clojure/.*$</packageUrl >
13
+ <cve >CVE-2017-20189</cve >
14
+ </suppress >
15
+ <suppress >
16
+ <notes >Clojure false positive</notes >
17
+ <packageUrl regex =" true" >^pkg:maven/ring/ring\-codec@.*$</packageUrl >
18
+ <cve >CVE-2017-20189</cve >
19
+ </suppress >
10
20
</suppressions >
Original file line number Diff line number Diff line change 1
- (defproject io.factorhouse /slipway-jetty11 " 1.1.11 "
1
+ (defproject io.factorhouse /slipway-jetty11 " 1.1.12 "
2
2
3
3
:description " A Clojure Companion for Jetty"
4
4
25
25
[org.clojure/tools.logging " 1.2.4" ]
26
26
[ring/ring-servlet " 1.9.6" ]
27
27
[com.taoensso/sente " 1.17.0" ]
28
- [org.eclipse.jetty.websocket/websocket-jetty-api " 11.0.19 " ]
29
- [org.eclipse.jetty.websocket/websocket-jetty-server " 11.0.19 " :exclusions [org.slf4j/slf4j-api]]
30
- [org.eclipse.jetty.websocket/websocket-servlet " 11.0.19 " :exclusions [org.slf4j/slf4j-api]]
31
- [org.eclipse.jetty/jetty-server " 11.0.19 " :exclusions [org.slf4j/slf4j-api]]
32
- [org.eclipse.jetty/jetty-jaas " 11.0.19 " :exclusions [org.slf4j/slf4j-api]]
33
- [org.slf4j/slf4j-api " 2.0.10 " ]]
28
+ [org.eclipse.jetty.websocket/websocket-jetty-api " 11.0.20 " ]
29
+ [org.eclipse.jetty.websocket/websocket-jetty-server " 11.0.20 " :exclusions [org.slf4j/slf4j-api]]
30
+ [org.eclipse.jetty.websocket/websocket-servlet " 11.0.20 " :exclusions [org.slf4j/slf4j-api]]
31
+ [org.eclipse.jetty/jetty-server " 11.0.20 " :exclusions [org.slf4j/slf4j-api]]
32
+ [org.eclipse.jetty/jetty-jaas " 11.0.20 " :exclusions [org.slf4j/slf4j-api]]
33
+ [org.slf4j/slf4j-api " 2.0.11 " ]]
34
34
35
35
:source-paths [" common/src" " common-jetty1x/src" " common-jakarta/src" ]
36
36
:test-paths [" test" " common/test" ])
Original file line number Diff line number Diff line change 7
7
<packageUrl regex =" true" >^pkg:maven/commons\-fileupload/commons\-fileupload@.*$</packageUrl >
8
8
<cve >CVE-2023-24998</cve >
9
9
</suppress >
10
+ <suppress >
11
+ <notes >Clojure false positive</notes >
12
+ <packageUrl regex =" true" >^pkg:maven/org\.clojure/.*$</packageUrl >
13
+ <cve >CVE-2017-20189</cve >
14
+ </suppress >
15
+ <suppress >
16
+ <notes >Clojure false positive</notes >
17
+ <packageUrl regex =" true" >^pkg:maven/ring/ring\-codec@.*$</packageUrl >
18
+ <cve >CVE-2017-20189</cve >
19
+ </suppress >
10
20
</suppressions >
Original file line number Diff line number Diff line change 1
- (defproject io.factorhouse /slipway-jetty9 " 1.1.11 "
1
+ (defproject io.factorhouse /slipway-jetty9 " 1.1.12 "
2
2
3
3
:description " A Clojure Companion for Jetty"
4
4
29
29
[org.eclipse.jetty.websocket/websocket-server " 9.4.53.v20231009" ]
30
30
[org.eclipse.jetty.websocket/websocket-servlet " 9.4.53.v20231009" ]
31
31
[org.eclipse.jetty/jetty-jaas " 9.4.53.v20231009" ]
32
- [org.slf4j/slf4j-api " 2.0.10 " ]]
32
+ [org.slf4j/slf4j-api " 2.0.11 " ]]
33
33
34
34
:source-paths [" src" " common/src" " common-javax/src" ]
35
35
:test-paths [" test" " common/test" ]
You can’t perform that action at this time.
0 commit comments