Merge remote-tracking branch 'origin/jetty-9.3.x' into jetty-9.4.x
This commit is contained in:
commit
78450cb843
49
VERSION.txt
49
VERSION.txt
|
@ -1,10 +1,40 @@
|
|||
jetty-9.4.3-SNAPSHOT
|
||||
|
||||
jetty-9.3.17.v20170317 - 17 March 2017
|
||||
+ 329 Javadoc for HttpTester and ServletTester needs to reference limited HTTP
|
||||
version scope
|
||||
+ 609 websocket ClientCloseTest testServerNoCloseHandshake is failing
|
||||
+ 1015 Ensure jetty-distribution excludes git / temp files
|
||||
+ 1047 ReadPendingException and then thread death
|
||||
+ 1049 test-jetty-osgi test exits/crashes the surefire forked JVM
|
||||
+ 1282 ByteArrayEndPointTest.testIdle() failure
|
||||
+ 1296 Introduce HTTP parser "content complete" event
|
||||
+ 1326 Jetty shutdown command got NullPointerException (http2 module added to
|
||||
start)
|
||||
+ 1328 Response.setBufferSize(int) ISE should be more clear on reason
|
||||
+ 1340 PushCacheFilter question
|
||||
+ 1342 Improve ByteBufferPool scalability
|
||||
+ 1351 StringIndexOutOfBoundsException thrown on incomplete Accept-Language
|
||||
header
|
||||
+ 1357 RolloverFileOutputStream: No rollout performed at midnight
|
||||
+ 1374 When `Server.start` fails, beans ought to be stopped
|
||||
+ 1375 Support pushed resources in HTTP client
|
||||
+ 1378 Slow TLS clients may hang the server
|
||||
+ 1383 javadoc build on JDK 8u121 fails due to scripts
|
||||
+ 1384 Expose StatisticsServlet to webapp
|
||||
+ 1387 Windows and paxexam failure due to "renaming bundle"
|
||||
+ 1389 Update to gcloud datastore-0.9.4-beta
|
||||
+ 1390 HashLoginService and "this.web-inf.url" property are incompatible
|
||||
+ 1394 Default OS Locale/Encoding/Charset can cause test failures
|
||||
+ 1396 Set-Cookie produced by Jetty is invalid for RFC6265 and Chrome
|
||||
+ 1399 SlowClientTest is failing on CI
|
||||
+ 1401 HttpOutput.recycle() does not clear the write listener
|
||||
|
||||
jetty-9.4.2.v20170220 - 20 February 2017
|
||||
+ 612 Support HTTP Trailer
|
||||
+ 1047 ReadPendingException and then thread death
|
||||
+ 1150 Rationalize the session tests
|
||||
+ 1226 Undefined JETTY_LOGS breaks jetty.sh
|
||||
+ 1226 Undefined JETTY_LOGS breaks jetty.sh
|
||||
+ 1282 ByteArrayEndPointTest.testIdle() failure
|
||||
+ 1284 IllegalStateException updating session inactive interval
|
||||
+ 1290 http2-hpack not visible in OSGi
|
||||
|
@ -80,19 +110,19 @@ jetty-9.4.1.v20170120 - 20 January 2017
|
|||
with WEB-INF/lib/jetty-http.jar present
|
||||
+ 1234 onBadMessage called from with handled message
|
||||
+ 1239 Charset=unknown produces Exception during testing
|
||||
+ 1242
|
||||
+ 1242
|
||||
org.eclipse.jetty.client.HttpRequestAbortTest.testAbortOnCommitWithContent[1]()
|
||||
results in EofException
|
||||
+ 1243
|
||||
+ 1243
|
||||
org.eclipse.jetty.proxy.ProxyServletFailureTest.testServerException[0]()
|
||||
results in ServletException
|
||||
+ 1244
|
||||
+ 1244
|
||||
ProxyServletFailureTest.testProxyRequestStallsContentServerIdlesTimeout()
|
||||
has TimeoutException visible
|
||||
+ 1248
|
||||
+ 1248
|
||||
org.eclipse.jetty.http2.client.StreamResetTest.testServerExceptionConsumesQueuedData
|
||||
results in visible Stacktrace
|
||||
+ 1252
|
||||
+ 1252
|
||||
HttpClientStreamTest.testInputStreamContentProviderThrowingWhileReading[transport:
|
||||
HTTPS]() results in Early EOF
|
||||
+ 1254 9.4.x Server resource handler welcome files forwarding not working
|
||||
|
@ -206,6 +236,13 @@ jetty-9.3.15.v20161220 - 20 December 2016
|
|||
+ 1186 Where can i find SocketConnector .java and
|
||||
BlockingChannelConnector.java etc?
|
||||
|
||||
jetty-9.2.21.v20170120 - 20 January 2017
|
||||
+ 592 Support no-value Host header in HttpParser
|
||||
+ 1229 ClassLoader constraint issue when using NativeWebSocketConfiguration
|
||||
with WEB-INF/lib/jetty-http.jar present
|
||||
+ 1267 Request.getRemoteUser can throw undeclared IllegalStateException via
|
||||
DeferredAuthentication & FormAuthenticator
|
||||
|
||||
jetty-9.4.0.RC3 - 05 December 2016
|
||||
+ 1051 NCSARequestLog/RolloverFileOutputStream does not roll day after DST
|
||||
ends
|
||||
|
|
4
pom.xml
4
pom.xml
|
@ -7,7 +7,7 @@
|
|||
<groupId>org.eclipse.jetty</groupId>
|
||||
<artifactId>jetty-project</artifactId>
|
||||
<version>9.4.3-SNAPSHOT</version>
|
||||
|
||||
|
||||
<name>Jetty :: Project</name>
|
||||
<description>The Eclipse Jetty Project</description>
|
||||
<packaging>pom</packaging>
|
||||
|
@ -565,7 +565,7 @@
|
|||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-site-plugin</artifactId>
|
||||
<version>3.6</version>
|
||||
<version>3.6</version>
|
||||
<dependencies>
|
||||
<dependency><!-- add support for ssh/scp -->
|
||||
<groupId>org.apache.maven.wagon</groupId>
|
||||
|
|
Loading…
Reference in New Issue