Skip to content

Commit

Permalink
Upgrade Undertow dependency to the most recent release (#249)
Browse files Browse the repository at this point in the history
Unsure why excavator has not done this yet.
  • Loading branch information
carterkozak authored and bulldozer-bot[bot] committed Feb 25, 2019
1 parent 7dcfb16 commit 3d25741
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 111 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
import io.undertow.server.RoutingHandler;
import io.undertow.server.handlers.BlockingHandler;
import io.undertow.server.handlers.ResponseCodeHandler;
import io.undertow.server.handlers.URLDecodingHandler;
import io.undertow.util.Methods;
import java.util.function.BiFunction;

Expand All @@ -40,7 +41,7 @@ public final class ConjureHandler implements HttpHandler, EndpointRegistry {
// Allow the server to configure UndertowOptions.DECODE_URL = false to allow slashes in parameters.
// Servers which do not configure DECODE_URL will still work properly except for encoded slash values.
// When DECODE_URL has not been disabled, the following handler will no-op
(endpoint, handler) -> new ConjureUrlDecodingHandler(handler, "UTF-8"),
(endpoint, handler) -> new URLDecodingHandler(handler, "UTF-8"),
// no-cache and web-security handlers add listeners for the response to be committed,
// they can be executed on the IO thread.
(endpoint, handler) -> Methods.GET.equals(endpoint.method())
Expand Down

This file was deleted.

2 changes: 1 addition & 1 deletion versions.lock
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ com.palantir.tracing:tracing-api:2.5.0 (1 constraints: 9f0c3e09)
com.palantir.tracing:tracing-undertow:2.5.0 (1 constraints: a5084c7e)
com.squareup:javapoet:1.11.1 (1 constraints: 36052d3b)
info.picocli:picocli:3.7.0 (1 constraints: 0c050f36)
io.undertow:undertow-core:2.0.17.Final (2 constraints: e21953fd)
io.undertow:undertow-core:2.0.18.Final (2 constraints: e3198ffd)
javax.annotation:javax.annotation-api:1.3.2 (1 constraints: 0805fb35)
javax.validation:validation-api:1.1.0.Final (1 constraints: 1c07995a)
javax.ws.rs:javax.ws.rs-api:2.0.1 (1 constraints: 0505f635)
Expand Down
2 changes: 1 addition & 1 deletion versions.props
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ info.picocli:picocli = 3.7.0
io.dropwizard.metrics:metrics-core = 3.2.5
io.dropwizard:dropwizard-core = 1.3.8
io.dropwizard:dropwizard-testing = 1.3.8
io.undertow:undertow-core = 2.0.17.Final
io.undertow:undertow-core = 2.0.18.Final
javax.annotation:javax.annotation-api = 1.3.2
javax.validation:validation-api = 1.1.0.Final
javax.ws.rs:javax.ws.rs-api = 2.0.1
Expand Down

0 comments on commit 3d25741

Please sign in to comment.