Skip to content

Commit c8372b6

Browse files
committed
Updating to version 12.1.0
1 parent 2623240 commit c8372b6

File tree

441 files changed

+629
-603
lines changed

Some content is hidden

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

441 files changed

+629
-603
lines changed

VERSION.txt

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,29 @@
1+
12.1.0 - 15 August 2025
2+
+ 13187 Missing API to increase QueuedThreadPool maxThreads by leased threads + QoSHandler bug of exceeding maxRequestCount by 1
3+
+ 13346 TCP half-close during WebSocket session close causes ClosedChannelException
4+
+ 13403 EE8 Servlet API throws exceptions in normal control flow
5+
+ 13439 ServletHolder::initJspServlet() throws NPE after #13363
6+
7+
12.1.0.beta3 - 11 August 2025
8+
+ 12300 Use of RewriteHandler.LastRuleHandler without a child handler should produce a clear error message. (@sanjerai)
9+
+ 12735 Provide better documentation of JettyWebSocketServletContainerInitializer and jetty-${ee-version}-websocket-jetty-server modules
10+
+ 13187 Missing API to increase QueuedThreadPool maxThreads by leased threads + QoSHandler bug of exceeding maxRequestCount by 1
11+
+ 13284 jetty-openid library swallows provider errors when getting auth code
12+
+ 13330 Content negotiation for Accept-Language (static pages) ?
13+
+ 13356 Executing `--dry-run` via shell `$()` can fail when certain JVM options are used.
14+
+ 13364 Deploy warnings for ee8 demos
15+
+ 13366 Introduce MimeTypes.Mutable.clear() API
16+
+ 13368 Valid query sequences are still reported as violations to ComplianceViolation.Listener
17+
+ 13375 WebSocketClient attempts to use HTTP/2 on servers without SETTINGS_ENABLE_CONNECT_PROTOCOL
18+
+ 13393 EE11 TCK failure: getWriter
19+
+ 13395 EE11 TCK failure: AsyncContext.dispatch(context, path)
20+
+ 13403 EE8 Servlet API throws exceptions in normal control flow
21+
+ 13405 Use distinct method names for task consumption in AdaptiveExecutionStrategy
22+
+ 13419 testRemoveAndReleaseFromCompoundPool fails when user locale is en_DE (@afarber)
23+
+ 13422 moved context demo fails with ee10 environment
24+
+ 13429 ConnectionLimit has inacurate deprecation version
25+
+ 13439 ServletHolder::initJspServlet() throws NPE after #13363
26+
127
12.1.0.beta2 - 18 July 2025
228

329
+ 9632 Jetty 12 - conditional headers handling for welcome files

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.1.0-SNAPSHOT</version>
11+
<version>12.1.0</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.1.0-SNAPSHOT</version>
8+
<version>12.1.0</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.1.0-SNAPSHOT</version>
8+
<version>12.1.0</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.1.0-SNAPSHOT</version>
8+
<version>12.1.0</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.1.0-SNAPSHOT</version>
8+
<version>12.1.0</version>
99
</parent>
1010
<groupId>org.eclipse.jetty.documentation</groupId>
1111
<artifactId>documentation</artifactId>

jetty-core/jetty-alpn/jetty-alpn-bouncycastle-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.1.0-SNAPSHOT</version>
9+
<version>12.1.0</version>
1010
</parent>
1111
<artifactId>jetty-alpn-bouncycastle-client</artifactId>
1212
<name>Core :: ALPN :: Bouncy Castle Client</name>

jetty-core/jetty-alpn/jetty-alpn-bouncycastle-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.1.0-SNAPSHOT</version>
8+
<version>12.1.0</version>
99
</parent>
1010
<artifactId>jetty-alpn-bouncycastle-server</artifactId>
1111
<name>Core :: ALPN :: Bouncy Castle Server</name>

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.1.0-SNAPSHOT</version>
7+
<version>12.1.0</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.1.0-SNAPSHOT</version>
9+
<version>12.1.0</version>
1010
</parent>
1111
<artifactId>jetty-alpn-conscrypt-client</artifactId>
1212
<name>Core :: ALPN :: Conscrypt Client</name>

0 commit comments

Comments
 (0)