Skip to content

Commit 8281ae9

Browse files
committed
Updating to version 12.0.15
1 parent 9151518 commit 8281ae9

File tree

352 files changed

+515
-490
lines changed

Some content is hidden

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

352 files changed

+515
-490
lines changed

VERSION.txt

Lines changed: 30 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,29 @@
1-
jetty-12.0.15-SNAPSHOT
1+
jetty-12.0.15 - 05 November 2024
2+
+ 5685 AsyncProxyServlet calls onProxyResponseSuccess() when internally it
3+
throws "Response header too large" exception
4+
+ 5888 Limit usage of HTTP/2 connections
5+
+ 9980 Add format option to CustomRequestLog for request authority and request
6+
authority scheme
7+
+ 11492 Auto add AliasChecker for custom Base Resource in DefaultServlet
8+
+ 11749 InvalidArgumentExceptions due to invalid status codes are not handled
9+
properly
10+
+ 12268 `IteratingCallback` may iterate too much when `process()` returns
11+
Action.IDLE
12+
+ 12313 Jetty 12 ee9/ee10 doesn't invoke callbacks when h2 client sends
13+
RST_STREAM
14+
+ 12341 QPack encoder must not send any encoder instructions when
15+
SETTINGS_QPACK_MAX_TABLE_CAPACITY is 0
16+
+ 12348 HttpClientTransportDynamic does not initialize low-level clients
17+
+ 12350 LdapLoginModule support for Jetty Password obfuscation
18+
+ 12356 RuntimeIOException: Parser is terminated when doing lots of requests
19+
with Connection: Keep-Alive
20+
+ 12378 Change default value for `SslContextFactory.renegotiationAllowed` to
21+
`false`
22+
+ 12397 `.tgz` files are double-gzipped
23+
+ 12404 Parsing URI with HttpUri.from(String uri) throws
24+
"IllegalArgumentException: Bad authority" when path is empty
25+
+ 12430 Correct PrivilegedThreadFactory javadoc
26+
+ 12435 Improve connection closing when stopping
227

328
jetty-12.0.14 - 30 September 2024
429
+ 929 Implement a utility class to save large downloads to a file (@arsenalzp)
@@ -25,7 +50,7 @@ jetty-12.0.14 - 30 September 2024
2550
is enabled.
2651
+ 12268 `IteratingCallback` may iterate too much when `process()` returns
2752
Action.IDLE
28-
+ 12279 org.eclipse.jetty.maven.ServerSupport.configureHandlers(Server,
53+
+ 12279 org.eclipse.jetty.maven.ServerSupport.configureHandlers(Server
2954
List<ContextHandler>, RequestLog) removes handlers
3055
+ 12284 Excessive heap consumption by SSLSessionImpl by Jetty Server with TLS
3156
1.3 and long-lived client
@@ -39,8 +64,6 @@ jetty-12.0.13 - 03 September 2024
3964
+ 3184 Make LifeCycle implement AutoCloseable
4065
+ 3553 Support sslSession() in Jetty Client
4166
+ 6514 How to warm up SslConnection
42-
+ 9121 Jetty 12 - Flaky
43-
BlockedWritesWithSmallThreadPoolTest.testServerThreadsBlockedInWrites()
4467
+ 11322 Change jetty-nosql MongoDB dependency from unmaintained
4568
mongo-java-driver to mongodb-driver-sync
4669
+ 11408 Jetty start module property values with ${expr} are not being expanded
@@ -96,7 +119,8 @@ jetty-12.0.12 - 25 July 2024
96119
+ 11965 Client: Some HTTP/2 requests are never sent
97120
+ 11996 mTLS: client cert verification for QUIC/HTTP3
98121
+ 12000 Cannot use Paths that have spaces with `jetty-ee10-maven-plugin`
99-
+ 12012 Added a UriCompliance.Violation.USER_INFO to deprecate user info in HttpURI (CVE-2024-6763)
122+
+ 12012 Added a UriCompliance.Violation.USER_INFO to deprecate user info in
123+
HttpURI (CVE-2024-6763)
100124
+ 12018 NPE when passing null value to Request.param
101125
+ 12019 External property file not being read
102126
+ 12022 Intermittent NPE in OutputStream.close with GzipHandler
@@ -14074,3 +14098,4 @@ jetty-1.0 - 01 January 1998
1407414098
+ Won the Australian Java Programming Contest!
1407514099
+ HTTP Server
1407614100
+ Issue tracking application
14101+

build/build-resources/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
-->
99
<groupId>org.eclipse.jetty</groupId>
1010
<artifactId>build-resources</artifactId>
11-
<version>12.0.15-SNAPSHOT</version>
11+
<version>12.0.15</version>
1212
<packaging>jar</packaging>
1313
<name>Build :: Resources</name>
1414

build/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.eclipse.jetty</groupId>
77
<artifactId>jetty-project</artifactId>
8-
<version>12.0.15-SNAPSHOT</version>
8+
<version>12.0.15</version>
99
</parent>
1010
<groupId>org.eclipse.jetty.build</groupId>
1111
<artifactId>build</artifactId>

documentation/jetty/modules/code/examples/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.eclipse.jetty.documentation</groupId>
77
<artifactId>documentation</artifactId>
8-
<version>12.0.15-SNAPSHOT</version>
8+
<version>12.0.15</version>
99
<relativePath>../../../../pom.xml</relativePath>
1010
</parent>
1111
<artifactId>code-examples</artifactId>

documentation/jetty/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.eclipse.jetty.documentation</groupId>
77
<artifactId>documentation</artifactId>
8-
<version>12.0.15-SNAPSHOT</version>
8+
<version>12.0.15</version>
99
</parent>
1010
<artifactId>jetty</artifactId>
1111
<packaging>pom</packaging>

documentation/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.eclipse.jetty</groupId>
77
<artifactId>jetty-project</artifactId>
8-
<version>12.0.15-SNAPSHOT</version>
8+
<version>12.0.15</version>
99
</parent>
1010
<groupId>org.eclipse.jetty.documentation</groupId>
1111
<artifactId>documentation</artifactId>

javadoc/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.eclipse.jetty</groupId>
77
<artifactId>jetty-project</artifactId>
8-
<version>12.0.15-SNAPSHOT</version>
8+
<version>12.0.15</version>
99
</parent>
1010
<artifactId>javadoc</artifactId>
1111
<packaging>jar</packaging>

jetty-core/jetty-alpn/jetty-alpn-client/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</groupId>
66
<artifactId>jetty-alpn</artifactId>
7-
<version>12.0.15-SNAPSHOT</version>
7+
<version>12.0.15</version>
88
</parent>
99
<artifactId>jetty-alpn-client</artifactId>
1010
<name>Core :: ALPN :: Client</name>

jetty-core/jetty-alpn/jetty-alpn-conscrypt-client/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.eclipse.jetty</groupId>
88
<artifactId>jetty-alpn</artifactId>
9-
<version>12.0.15-SNAPSHOT</version>
9+
<version>12.0.15</version>
1010
</parent>
1111
<artifactId>jetty-alpn-conscrypt-client</artifactId>
1212
<name>Core :: ALPN :: Conscrypt Client</name>

jetty-core/jetty-alpn/jetty-alpn-conscrypt-server/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.eclipse.jetty</groupId>
77
<artifactId>jetty-alpn</artifactId>
8-
<version>12.0.15-SNAPSHOT</version>
8+
<version>12.0.15</version>
99
</parent>
1010
<artifactId>jetty-alpn-conscrypt-server</artifactId>
1111
<name>Core :: ALPN :: Conscrypt Server</name>

0 commit comments

Comments
 (0)