Skip to content

Commit

Permalink
Upgrade to Jetty 9.4.45.v20220203
Browse files Browse the repository at this point in the history
Closes gh-29791
  • Loading branch information
snicoll committed Feb 14, 2022
1 parent 96e4cbb commit dc171c6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion spring-boot-project/spring-boot-dependencies/build.gradle
Expand Up @@ -904,7 +904,7 @@ bom {
]
}
}
library("Jetty", "9.4.44.v20210927") {
library("Jetty", "9.4.45.v20220203") {
prohibit("[10.0.0-alpha0,)") {
because "it requires Java 11"
}
Expand Down
@@ -1,5 +1,5 @@
/*
* Copyright 2012-2019 the original author or authors.
* Copyright 2012-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -59,7 +59,7 @@ static class JettyCustomizerConfig {
JettyServerCustomizer jettyServerCustomizer() {
return (server) -> {
ContextHandler handler = (ContextHandler) server.getHandler();
handler.addAliasCheck(new ContextHandler.ApproveAliases());
handler.addAliasCheck((path, resource) -> true);
};
}

Expand Down

0 comments on commit dc171c6

Please sign in to comment.