Skip to content

Commit 535d840

Browse files
committed
[java] Update changelog for 4.1.4
[run java]
1 parent fc8a419 commit 535d840

2 files changed

Lines changed: 23 additions & 2 deletions

File tree

java/CHANGELOG

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
1+
v4.1.4
2+
======
3+
4+
* Supported CDP versions: 85, 99, 100, 101
5+
* [grid] Setting session-timeout as read timeout for http client (#10404)
6+
* Add Windows 11 support to platform enum
7+
* Enabling request retries for session handling (#9528)
8+
* Use class' class loader when looking up `HttpClient` factory. (#10509)
9+
* Fixing search in Java docs (#10415)
10+
* Added fix to intercept PUT request
11+
* [grid] Standalone should also shutdown when it has been drained
12+
* [grid] Draining a Node after X sessions have been created (#9845)
13+
* Fixing options handling for print command
14+
* Fix links in JavaDocs (#10529)
15+
* Introduce common interface for all web storage types (#10528)
16+
* Added PATCH request
17+
* Honoring proxy in ClientConfig (#10531)
18+
* Return friendly names for Windows platforms like Mac does
19+
* Support for sending firefox addon directory as temporary in remote sessions
20+
* [grid] Closing input pipeline when client disconnects
21+
122
v4.1.3
223
======
324

java/src/org/openqa/selenium/netty/server/RequestConverter.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ class RequestConverter extends SimpleChannelInboundHandler<HttpObject> {
6262
private static final Logger LOG = Logger.getLogger(RequestConverter.class.getName());
6363
private static final ExecutorService EXECUTOR = Executors.newSingleThreadExecutor();
6464
private static final ExecutorService SHUTDOWN_EXECUTOR = Executors.newSingleThreadExecutor();
65-
private static final List<io.netty.handler.codec.http.HttpMethod> supportedMethods =
65+
private static final List<io.netty.handler.codec.http.HttpMethod> SUPPORTED_METHODS =
6666
Arrays.asList(DELETE, GET, POST, OPTIONS);
6767
private volatile PipedOutputStream out;
6868

@@ -154,7 +154,7 @@ private HttpRequest createRequest(
154154
HttpMethod method;
155155
if (nettyRequest.method().equals(HEAD)) {
156156
method = HttpMethod.GET;
157-
} else if (supportedMethods.contains(nettyRequest.method())) {
157+
} else if (SUPPORTED_METHODS.contains(nettyRequest.method())) {
158158
try {
159159
method = HttpMethod.valueOf(nettyRequest.method().name());
160160
} catch (IllegalArgumentException e) {

0 commit comments

Comments
 (0)