Joakim Erdfelt
ad1273d6b5
Updating to version 11.0.22
2024-06-27 11:21:37 -05:00
Olivier Lamy
f6ac9c4d55
Updating to version 11.0.22-SNAPSHOT
2024-05-27 03:19:34 +02:00
Olivier Lamy
c5af9e265b
Updating to version 11.0.21
2024-05-27 03:19:34 +02:00
Joakim Erdfelt
dd641b2736
Updating to version 11.0.21-SNAPSHOT
2024-01-29 15:17:40 -06:00
Joakim Erdfelt
922f8dc188
Updating to version 11.0.20
2024-01-29 15:03:56 -06:00
Simone Bordet
5d7dc7182d
Merged branch 'jetty-10.0.x' into 'jetty-11.0.x'.
...
Signed-off-by: Simone Bordet <simone.bordet@gmail.com>
2024-01-08 09:27:31 +01:00
Simone Bordet
9b2cfc4483
Fixes #11223 - WebSocketClient.connect with URI including query parameters don't work for HTTP2 connector
...
Fixed concatenation of path and query for HTTP/2 and HTTP/3 when creating `MetaData.ConnectRequest` to "tunnel" the WebSocket upgrade.
Signed-off-by: Simone Bordet <simone.bordet@gmail.com>
2024-01-08 09:26:22 +01:00
Joakim Erdfelt
2f3c9257d1
Results of: mvn spotless:apply
2024-01-03 10:40:38 -06:00
Joakim Erdfelt
9a18dc8722
Results of: mvn spotless:apply
2024-01-03 03:12:56 -06:00
Joakim Erdfelt
fd81c80194
Updating to version 11.0.20-SNAPSHOT
2023-12-15 15:09:03 -06:00
Joakim Erdfelt
f781e475c8
Updating to version 11.0.19
2023-12-15 14:54:13 -06:00
Joakim Erdfelt
c91e3fbc48
Updating to version 10.0.20-SNAPSHOT
2023-12-15 14:49:33 -06:00
Joakim Erdfelt
8492d1c78f
Updating to version 10.0.19
2023-12-15 14:38:06 -06:00
Simone Bordet
0d5d4d4edb
Merged branch 'jetty-10.0.x' into 'jetty-11.0.x'.
...
Signed-off-by: Simone Bordet <simone.bordet@gmail.com>
2023-11-29 13:49:45 +01:00
Gary Gregory
0efee0bf95
Use String#isEmpty()
2023-11-28 17:46:42 -05:00
Simone Bordet
6ea2f68da0
Merged branch 'jetty-10.0.x' into 'jetty-11.0.x'.
...
Signed-off-by: Simone Bordet <simone.bordet@gmail.com>
2023-11-27 15:34:24 +01:00
Ludovic Orban
65c8b58843
#9900 backport Accurate implementation of H2 Request.beginNanoTime()
...
Signed-off-by: Ludovic Orban <lorban@bitronix.be>
2023-11-27 15:30:56 +01:00
Simone Bordet
b5af73e086
Merged branch 'jetty-10.0.x' into 'jetty-11.0.x'.
...
Signed-off-by: Simone Bordet <simone.bordet@gmail.com>
2023-11-19 17:41:10 +01:00
Simone Bordet
f82844e2a2
Fixes #10891 - Support the "Partitioned" cookie attribute.
...
Added support in oej.http.HttpCookie.
Bridged support for Servlet cookies via the cookie Comment attribute.
Signed-off-by: Simone Bordet <simone.bordet@gmail.com>
2023-11-19 17:37:18 +01:00
Joakim Erdfelt
1e2b356b80
Updating to version 11.0.19-SNAPSHOT
2023-10-26 21:24:54 -05:00
Joakim Erdfelt
5a9a771a9f
Updating to version 11.0.18
2023-10-26 21:14:03 -05:00
Joakim Erdfelt
c50aa2f61b
Updating to version 10.0.19-SNAPSHOT
2023-10-26 21:10:08 -05:00
Joakim Erdfelt
8545fd9bf4
Updating to version 10.0.18
2023-10-26 20:59:27 -05:00
Joakim Erdfelt
c8829f75bf
Updating to version 11.0.18-SNAPSHOT
2023-10-09 13:49:23 -05:00
Joakim Erdfelt
48e7716b94
Updating to version 11.0.17
2023-10-09 13:38:47 -05:00
Joakim Erdfelt
722b97ad6a
Updating to version 10.0.18-SNAPSHOT
2023-10-09 13:32:28 -05:00
Joakim Erdfelt
af15f12297
Updating to version 10.0.17
2023-10-09 13:21:53 -05:00
Ludovic Orban
a31ecf654b
Merge remote-tracking branch 'origin/jetty-10.0.x' into jetty-11.0.x
2023-09-25 17:18:36 +02:00
Joakim Erdfelt
43eb08b146
Backport #10540 to `jetty-10.0.x` Fixed deadlock in class initialization. ( #10545 )
...
* Fixed deadlock in class initialization. (#10540 )
* Thread T1 may initialize HttpTester.Message that extends MutableHttpFields, so grabs the lock for the initialization of class MutableHttpFields.
* Thread T2 may initialize HttpFields, so grabs the lock for HttpFields and initializes field EMPTY, which calls new MutableHttpFields.
* To initialize MutableHttpFields, T1 must initialize HttpFields, but sees that its lock is taken and waits.
* To initialize HttpFields, T2 must create an instance and therefore initialize MutableHttpFields, but sees that its lock is taken and waits.
* Deadlock.
The solution is to use another class, EmptyHttpFields, to initialize HttpFields.EMPTY, so that there is no deadlock.
Signed-off-by: Joakim Erdfelt <joakim.erdfelt@gmail.com>
Co-authored-by: Simone Bordet <simone.bordet@gmail.com>
2023-09-18 13:00:11 -05:00
Joakim Erdfelt
0543583f65
Merge pull request #10447 from eclipse/release/11.0.16
...
Merge `release/11.0.16` into `jetty-11.0.x` HEAD
2023-08-31 15:12:22 -05:00
Joakim Erdfelt
5d2489a0e8
Merge pull request #10446 from eclipse/release/10.0.16
...
Merge `release/10.0.16` into `jetty-10.0.x` HEAD
2023-08-31 15:12:12 -05:00
Ludovic Orban
475a706fd1
Merge remote-tracking branch 'origin/jetty-10.0.x' into jetty-11.0.x
2023-08-31 09:30:01 +02:00
Ludovic Orban
1965a943f9
#9928 backport Request.beginNanoTime() from 12.0.x
...
Signed-off-by: Ludovic Orban <lorban@bitronix.be>
2023-08-31 09:25:54 +02:00
Joakim Erdfelt
cb8c4b6ab2
Updating to version 11.0.17-SNAPSHOT
2023-08-25 14:55:08 -05:00
Joakim Erdfelt
bedff458c4
Updating to version 11.0.16
2023-08-25 14:43:04 -05:00
Joakim Erdfelt
896dee2466
Updating to version 10.0.17-SNAPSHOT
2023-08-25 14:27:38 -05:00
Joakim Erdfelt
a2735a9ae9
Updating to version 10.0.16
2023-08-25 14:10:55 -05:00
gregw
04eeb0c075
Merge remote-tracking branch 'origin/jetty-10.0.x' into jetty-11.0.x
2023-08-18 17:21:20 +10:00
Greg Wilkins
003e46cae4
Various cleanups in HttpParser ( #10329 )
...
Various cleanups in HttpParser
Signed-off-by: gregw <gregw@webtide.com>
---------
Signed-off-by: gregw <gregw@webtide.com>
2023-08-18 17:09:17 +10:00
Simone Bordet
939f1362f6
Merged branch 'jetty-10.0.x' into 'jetty-11.0.x'.
...
Signed-off-by: Simone Bordet <simone.bordet@gmail.com>
2023-08-17 17:02:13 +02:00
yokotaso
e33d026259
chore: Fix javadoc following the source code
2023-08-17 17:01:14 +02:00
Jan Bartel
cc7cd7c7aa
Merge remote-tracking branch 'origin/jetty-10.0.x' into jetty-11.0.x
2023-06-22 11:48:46 +02:00
Basil Crow
73dfac9732
Use non-deprecated WOFF MIME type ( #9922 )
...
Signed-off-by: Basil Crow <me@basilcrow.com>
2023-06-22 11:47:53 +02:00
Lachlan Roberts
c7745ee0e6
Merge remote-tracking branch 'origin/jetty-10.0.x' into jetty-11.0.x
2023-05-29 16:43:26 +10:00
Lachlan Roberts
c855f4ca55
PR #9798 - changes from review
...
Signed-off-by: Lachlan Roberts <lachlan@webtide.com>
2023-05-26 17:19:54 +10:00
Lachlan Roberts
dca4e9832e
review and cleanup of HTTP/3 Integer and String encoding
...
Signed-off-by: Lachlan Roberts <lachlan@webtide.com>
2023-05-25 23:09:24 +10:00
Lachlan Roberts
975782b2ca
Merge remote-tracking branch 'origin/jetty-10.0.x' into jetty-11.0.x
2023-05-08 12:49:10 +10:00
Lachlan
a8c9eea75b
Merge pull request #9634 from eclipse/jetty-10.0.x-9554-qpack-hpack
...
Issue #9554 - move common hpack/qpack code to jetty-http (jetty-10)
2023-05-08 12:48:48 +10:00
Simone Bordet
017fec7940
Merged branch 'jetty-10.0.x' into 'jetty-11.0.x'.
...
Signed-off-by: Simone Bordet <simone.bordet@gmail.com>
2023-05-04 11:04:30 +02:00
Lachlan Roberts
03d6afae91
Issue #9554 - rename NBitIntegerParser and NBitStringParser to decoders
...
Signed-off-by: Lachlan Roberts <lachlan@webtide.com>
2023-05-04 09:31:20 +10:00