Skip to content

Commit b9645a1

Browse files
committed
Updating to version 10.0.0
1 parent 0a034db commit b9645a1

File tree

146 files changed

+238
-214
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

146 files changed

+238
-214
lines changed

VERSION.txt

Lines changed: 27 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,27 @@
1-
jetty-10.0.0-SNAPSHOT
1+
jetty-10.0.0 - 02 December 2020
2+
+ 1923 GCThreadLeakPreventer won't work with Java 9
3+
+ 4711 Reset trailers on recycled response
4+
+ 5272 The UserStore and PropertyUserStore classes are hard to re-use for
5+
caching eg JDBC data
6+
+ 5310 Jetty Http2 client discards the response fames when there is GOAWAY and
7+
sends RST_STREAM
8+
+ 5320 Using WebSocketClient with jetty-websocket-httpclient.xml in a Jetty
9+
web application causes ClassCastException
10+
+ 5486 PropertyFileLoginModule retains PropertyUserStores
11+
+ 5488 jetty-dir.css not found when using JPMS
12+
+ 5493 StatisticsHandler broken for async applications
13+
+ 5498 Review ServletHolder.getServlet
14+
+ 5521 ResourceCollection NPE in list()
15+
+ 5535 Support regex in SslContextFactory include/exclude of protocols
16+
+ 5539 StatisticsServlet output is not valid
17+
+ 5555 NPE for servlet with no mapping
18+
+ 5562 ArrayTernaryTrie consumes too much memory
19+
+ 5575 Add SEARCH as a known HttpMethod
20+
+ 5605 java.io.IOException: unconsumed input during http request parsing
21+
+ 5633 Allow to configure HttpClient request authority
22+
+ 5679 Distro argument --list-all-modules does not work
23+
+ 5680 No way to see which modules are enabled for the distro
24+
+ 5691 HttpInput may skip setting fill interest
225

326
jetty-10.0.0.beta3 - 21 October 2020
427
+ 5022 Cleanup ServletHandler, specifically with respect to making filter
@@ -29,7 +52,8 @@ jetty-9.4.35.v20201120 - 20 November 2020
2952
+ 5539 StatisticsServlet output is not valid
3053
+ 5562 ArrayTernaryTrie consumes too much memory
3154
+ 5575 Add SEARCH as a known HttpMethod
32-
+ 5605 CVE-2020-27218 java.io.IOException: unconsumed input during http request parsing
55+
+ 5605 CVE-2020-27218 java.io.IOException: unconsumed input during http
56+
request parsing
3357
+ 5633 Allow to configure HttpClient request authority
3458

3559
jetty-9.4.34.v20201102 - 02 November 2020
@@ -98,7 +122,7 @@ jetty-10.0.0.beta2 - 02 October 2020
98122
be empty string, but is `"/"`
99123
+ 5064 NotSerializableException for OpenIdConfiguration
100124
+ 5069 HttpClientTimeoutTests can occasionally fail due to unreachable network
101-
+ 5079 :authority header for IPv6 address not having square brackets
125+
+ 5079 authority header for IPv6 address not having square brackets
102126
+ 5081 Review HouseKeeper locking
103127
+ 5083 Convert synchronized usages to AutoLock
104128
+ 5096 using JettyWebSocketServlet without having a WebSocketUpgradeFilter

apache-jsp/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<parent>
33
<groupId>org.eclipse.jetty</groupId>
44
<artifactId>jetty-project</artifactId>
5-
<version>10.0.0-SNAPSHOT</version>
5+
<version>10.0.0</version>
66
</parent>
77

88
<modelVersion>4.0.0</modelVersion>

apache-jstl/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<parent>
33
<groupId>org.eclipse.jetty</groupId>
44
<artifactId>jetty-project</artifactId>
5-
<version>10.0.0-SNAPSHOT</version>
5+
<version>10.0.0</version>
66
</parent>
77
<modelVersion>4.0.0</modelVersion>
88
<artifactId>apache-jstl</artifactId>

build-resources/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<modelVersion>4.0.0</modelVersion>
33
<groupId>org.eclipse.jetty</groupId>
44
<artifactId>build-resources</artifactId>
5-
<version>10.0.0-SNAPSHOT</version>
5+
<version>10.0.0</version>
66
<name>Jetty :: Build Resources</name>
77
<packaging>jar</packaging>
88

demos/demo-async-rest/demo-async-rest-jar/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<parent>
33
<groupId>org.eclipse.jetty.demos</groupId>
44
<artifactId>demo-async-rest-parent</artifactId>
5-
<version>10.0.0-SNAPSHOT</version>
5+
<version>10.0.0</version>
66
</parent>
77

88
<modelVersion>4.0.0</modelVersion>

demos/demo-async-rest/demo-async-rest-server/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<parent>
33
<groupId>org.eclipse.jetty.demos</groupId>
44
<artifactId>demo-async-rest-parent</artifactId>
5-
<version>10.0.0-SNAPSHOT</version>
5+
<version>10.0.0</version>
66
</parent>
77

88
<modelVersion>4.0.0</modelVersion>

demos/demo-async-rest/demo-async-rest-webapp/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<parent>
33
<groupId>org.eclipse.jetty.demos</groupId>
44
<artifactId>demo-async-rest-parent</artifactId>
5-
<version>10.0.0-SNAPSHOT</version>
5+
<version>10.0.0</version>
66
</parent>
77

88
<modelVersion>4.0.0</modelVersion>

demos/demo-async-rest/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<parent>
33
<groupId>org.eclipse.jetty.demos</groupId>
44
<artifactId>demos-parent</artifactId>
5-
<version>10.0.0-SNAPSHOT</version>
5+
<version>10.0.0</version>
66
</parent>
77

88
<modelVersion>4.0.0</modelVersion>

demos/demo-jaas-webapp/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>org.eclipse.jetty.demos</groupId>
66
<artifactId>demos-parent</artifactId>
7-
<version>10.0.0-SNAPSHOT</version>
7+
<version>10.0.0</version>
88
</parent>
99
<artifactId>demo-jaas-webapp</artifactId>
1010
<name>Demo :: JAAS :: WebApp</name>

demos/demo-jetty-webapp/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<groupId>org.eclipse.jetty.demos</groupId>
55
<artifactId>demos-parent</artifactId>
6-
<version>10.0.0-SNAPSHOT</version>
6+
<version>10.0.0</version>
77
<relativePath>../pom.xml</relativePath>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>

0 commit comments

Comments
 (0)