[undertow] branch master updated (d10c9bb -> 8f9cf1a)

Markus Koschany apo at moszumanska.debian.org
Sat Dec 17 23:26:17 UTC 2016


This is an automated email from the git hooks/post-receive script.

apo pushed a change to branch master
in repository undertow.

      from  d10c9bb   Update changelog
      adds  4346ca8   New upstream version 1.4.7
       new  ad956f5   Merge tag 'upstream/1.4.7'
       new  8f9cf1a   Update changelog

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 core/pom.xml                                       |   4 +-
 core/src/main/java/io/undertow/Undertow.java       |   5 +-
 core/src/main/java/io/undertow/UndertowLogger.java |   6 +
 .../main/java/io/undertow/UndertowMessages.java    |   9 +-
 .../io/undertow/attribute/RemoteHostAttribute.java |   4 +-
 .../io/undertow/attribute/RemoteIPAttribute.java   |  14 +-
 .../io/undertow/client/ajp/AjpClientExchange.java  |   6 +
 .../client/http2/Http2ClientConnection.java        |   2 +-
 .../conduits/ChunkedStreamSourceConduit.java       |   3 +
 .../conduits/FixedLengthStreamSourceConduit.java   |   3 -
 .../undertow/conduits/GzipStreamSourceConduit.java | 113 +++++++
 .../io/undertow/conduits/IdleTimeoutConduit.java   |   5 +-
 .../conduits/InflatingStreamSourceConduit.java     | 203 ++++++++++++
 .../conduits/RateLimitingStreamSinkConduit.java    |   4 +-
 .../conduits/ReadTimeoutStreamSourceConduit.java   |   3 +-
 .../conduits/WriteTimeoutStreamSinkConduit.java    |   3 +-
 .../main/java/io/undertow/io/AsyncSenderImpl.java  |  15 +-
 .../AjpClientRequestClientStreamSinkChannel.java   | 357 +++++++++++----------
 .../protocols/alpn/OpenSSLAlpnProvider.java        |  52 +--
 .../io/undertow/protocols/http2/Http2Channel.java  |  52 ++-
 .../protocols/http2/Http2FramePriority.java        |  59 +++-
 .../protocols/http2/Http2HeaderBlockParser.java    |  11 +-
 .../java/io/undertow/protocols/ssl/SslConduit.java |   2 +-
 .../undertow/security/impl/SimpleNonceManager.java |  16 +-
 .../main/java/io/undertow/server/Connectors.java   |  18 +-
 .../handlers/StuckThreadDetectionHandler.java      |   3 +-
 .../encoding/ContentEncodingRepository.java        |   6 +-
 .../server/handlers/encoding/EncodingHandler.java  |   2 +-
 .../handlers/encoding/RequestEncodingHandler.java  | 116 +++++++
 .../io/undertow/server/handlers/form/FormData.java |   8 +-
 .../handlers/proxy/LoadBalancingProxyClient.java   |  17 +
 .../server/handlers/proxy/ProxyClient.java         |   6 +-
 .../server/handlers/proxy/ProxyConnectionPool.java |  25 +-
 .../server/handlers/proxy/ProxyHandler.java        |  65 ++--
 .../proxy/mod_cluster/ModClusterProxyTarget.java   |  57 +++-
 .../handlers/proxy/mod_cluster/NodePingUtil.java   |   3 +-
 .../server/protocol/ParseTimeoutUpdater.java       |  38 ++-
 .../server/protocol/ajp/AjpReadListener.java       |  11 +-
 .../server/protocol/ajp/AjpRequestParseState.java  |   2 +
 .../server/protocol/ajp/AjpRequestParser.java      |  19 +-
 .../protocol/ajp/AjpServerRequestConduit.java      |  15 +-
 .../server/protocol/http/HttpRequestParser.java    |  16 +-
 .../server/protocol/http/HttpResponseConduit.java  |  52 ++-
 .../server/protocol/http/HttpServerConnection.java |   6 +-
 .../protocol/http2/Http2ReceiveListener.java       |  20 +-
 .../protocol/http2/Http2ServerConnection.java      |  11 +-
 .../server/protocol/http2/Http2UpgradeHandler.java |   2 +
 .../server/session/InMemorySessionManager.java     |   8 +-
 .../java/io/undertow/server/session/Session.java   |   2 -
 .../java/io/undertow/util/ConnectionUtils.java     |   2 +-
 core/src/main/java/io/undertow/util/DateUtils.java |   2 +-
 .../io/undertow/util/ParameterLimitException.java} |  12 +-
 core/src/main/java/io/undertow/util/URLUtils.java  |  14 +-
 .../main/java/io/undertow/util/WorkerUtils.java    |  62 ++++
 .../io/undertow/websockets/core/WebSockets.java    |   3 +-
 .../undertow/client/http/HttpClientTestCase.java   | 101 ------
 .../handlers/LotsOfHeadersRequestTestCase.java     | 177 ++++++++++
 .../handlers/LotsOfQueryParametersTestCase.java    |  88 ++++-
 ...se.java => RequestContentEncodingTestCase.java} | 131 ++++----
 .../proxy/AbstractLoadBalancingProxyTestCase.java  |  73 ++++-
 .../proxy/LoadBalancingProxyAJPTestCase.java       |   3 +
 .../proxy/LoadBalancingProxyHTTP2TestCase.java     | 118 ++++++-
 .../LoadBalancingProxyHTTP2ViaUpgradeTestCase.java |   2 +
 .../proxy/LoadBalancingProxyHttpsTestCase.java     |   2 +
 .../handlers/proxy/LoadBalancingProxyTestCase.java |   3 +
 .../handlers/sse/ServerSentEventTestCase.java      |   3 +-
 .../java/io/undertow/testutils/DefaultServer.java  |  19 +-
 coverage-report/pom.xml                            |   2 +-
 debian/changelog                                   |   6 +
 dist/pom.xml                                       |   4 +-
 examples/pom.xml                                   |   4 +-
 findbugs-exclude.xml                               |   4 +
 mac-jdk-fix/jdk7/KQueueArrayWrapper.java           | 209 ------------
 mac-jdk-fix/jdk7/KQueueSelectorImpl.java           | 248 --------------
 parser-generator/pom.xml                           |   4 +-
 pom.xml                                            |   2 +-
 servlet/pom.xml                                    |   4 +-
 .../servlet/core/DeploymentManagerImpl.java        |   9 +-
 .../servlet/handlers/ServletPathMatches.java       |   7 +
 .../handlers/security/SecurityPathMatches.java     |   9 +-
 .../io/undertow/servlet/spec/AsyncContextImpl.java |   3 +-
 .../servlet/spec/HttpServletRequestImpl.java       |  16 +-
 .../io/undertow/servlet/spec/HttpSessionImpl.java  |  11 +-
 .../test/listener/servletcontext/TestSci.java      |   3 +
 .../servlet/test/multipart/MultiPartTestCase.java  |   2 +-
 .../test/session/SessionIdHandlingTestCase.java    |   2 +-
 websockets-jsr/pom.xml                             |   4 +-
 .../undertow/websockets/jsr/UndertowSession.java   |   3 +-
 88 files changed, 1778 insertions(+), 1072 deletions(-)
 create mode 100644 core/src/main/java/io/undertow/conduits/GzipStreamSourceConduit.java
 create mode 100644 core/src/main/java/io/undertow/conduits/InflatingStreamSourceConduit.java
 create mode 100644 core/src/main/java/io/undertow/server/handlers/encoding/RequestEncodingHandler.java
 copy core/src/{test/java/io/undertow/util/NodeStatusCodesTestCase.java => main/java/io/undertow/util/ParameterLimitException.java} (78%)
 create mode 100644 core/src/main/java/io/undertow/util/WorkerUtils.java
 create mode 100644 core/src/test/java/io/undertow/server/handlers/LotsOfHeadersRequestTestCase.java
 copy core/src/test/java/io/undertow/server/handlers/encoding/{DeflateContentEncodingTestCase.java => RequestContentEncodingTestCase.java} (50%)
 delete mode 100644 mac-jdk-fix/jdk7/KQueueArrayWrapper.java
 delete mode 100644 mac-jdk-fix/jdk7/KQueueSelectorImpl.java

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/undertow.git



More information about the pkg-java-commits mailing list