File tree Expand file tree Collapse file tree
main/java/org/apache/felix/http/jetty/internal
test/java/org/apache/felix/http/jetty/it Expand file tree Collapse file tree Original file line number Diff line number Diff line change 4242
4343 <properties >
4444 <felix .java.version>17</felix .java.version>
45- <jetty .version>12.0.16 </jetty .version>
45+ <jetty .version>12.0.17 </jetty .version>
4646 <baseline .skip>true</baseline .skip>
4747 <org .ops4j.pax.exam.version>4.13.3</org .ops4j.pax.exam.version>
4848 <!-- To debug the pax process, override this with -D -->
Original file line number Diff line number Diff line change 1616 */
1717package org .apache .felix .http .jetty .internal ;
1818
19+ import static org .eclipse .jetty .http .UriCompliance .JETTY_11 ;
1920import static org .eclipse .jetty .http .UriCompliance .LEGACY ;
2021import static org .eclipse .jetty .http .UriCompliance .UNAMBIGUOUS ;
2122import static org .eclipse .jetty .http .UriCompliance .UNSAFE ;
@@ -716,7 +717,8 @@ private void configureHttpConnectionFactory(HttpConnectionFactory connFactory)
716717 UriCompliance compliance = UriCompliance .valueOf (uriComplianceMode );
717718 config .setUriCompliance (compliance );
718719
719- if (LEGACY .equals (compliance ) || UNSAFE .equals (compliance ) || UNAMBIGUOUS .equals (compliance )) {
720+ if (LEGACY .equals (compliance ) || UNSAFE .equals (compliance ) ||
721+ UNAMBIGUOUS .equals (compliance ) || JETTY_11 .equals (compliance )) {
720722 // See https://github.com/jetty/jetty.project/issues/11448#issuecomment-1969206031
721723 this .server .getContainedBeans (ServletHandler .class )
722724 .forEach (handler -> handler .setDecodeAmbiguousURIs (true ));
Original file line number Diff line number Diff line change 4545import org .slf4j .LoggerFactory ;
4646
4747public abstract class AbstractJettyTestSupport {
48- protected static final String JETTY_VERSION = "12.0.16 " ;
48+ protected static final String JETTY_VERSION = "12.0.17 " ;
4949
5050 protected final Logger logger = LoggerFactory .getLogger (getClass ());
5151
Original file line number Diff line number Diff line change 3939 </scm >
4040
4141 <properties >
42- <jetty .version>12.0.16 </jetty .version>
42+ <jetty .version>12.0.17 </jetty .version>
4343 </properties >
4444
4545 <build >
You can’t perform that action at this time.
0 commit comments