Skip to content

Commit c3f88ba

Browse files
committed
Updating to version 12.0.16
1 parent 9d39936 commit c3f88ba

File tree

352 files changed

+509
-486
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

+509
-486
lines changed

VERSION.txt

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,27 @@
1-
jetty-12.0.16-SNAPSHOT
1+
jetty-12.0.16 - 09 December 2024
2+
+ 9529 Expose TCP connection establishment information
3+
+ 11413 Conscrypt does not support server-side SNI
4+
+ 12153 Failed to serve resource java.lang.IllegalStateException: s=HANDLING
5+
rs=ASYNC os=OPEN is=IDLE awp=false se=false i=true al=0
6+
+ 12272 Potential deadlock with Vaadin
7+
+ 12323 AsyncMiddleManServlet response flushing
8+
+ 12429 HandshakeRequest getHeaders are case sensitive.
9+
+ 12469 Content.Sink.write(sink, last, utf8Content, callback) could become
10+
faster
11+
+ 12481 Exception when a Content-Length is set on a 304 response
12+
+ 12482 CustomRequestLog %q inconsistency with a doc
13+
+ 12488 HTTP/2 headers may not be split in CONTINUATION frames
14+
+ 12496 MultiPartFormData.Parser question.
15+
+ 12520 Numerous stack traces logged at warning level when running under
16+
HTTP/2 (regression in 12.0.15)
17+
+ 12553 Execute immediately HTTP/2 failures
18+
+ 12577 org.eclipse.jetty.http.HttpURI.getDecodedPath() throws an NPE when
19+
there is no path
20+
+ 12578 HttpServletRequest.getParameterMap - UnmodifiableMap does not wrap a
21+
jetty MultiMap
22+
+ 12588 oejhs.AbstractHTTP2ServerConnectionFactory installs the
23+
HTTP2SessionContainer bean twice
24+
+ 12603 ee9 / UnsupportedOperationException: Read Only
225

326
jetty-12.0.15 - 05 November 2024
427
+ 5685 AsyncProxyServlet calls onProxyResponseSuccess() when internally it

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.16-SNAPSHOT</version>
11+
<version>12.0.16</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.16-SNAPSHOT</version>
8+
<version>12.0.16</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.16-SNAPSHOT</version>
8+
<version>12.0.16</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.16-SNAPSHOT</version>
8+
<version>12.0.16</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.16-SNAPSHOT</version>
8+
<version>12.0.16</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.16-SNAPSHOT</version>
8+
<version>12.0.16</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.16-SNAPSHOT</version>
7+
<version>12.0.16</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.16-SNAPSHOT</version>
9+
<version>12.0.16</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.16-SNAPSHOT</version>
8+
<version>12.0.16</version>
99
</parent>
1010
<artifactId>jetty-alpn-conscrypt-server</artifactId>
1111
<name>Core :: ALPN :: Conscrypt Server</name>

0 commit comments

Comments
 (0)