File tree Expand file tree Collapse file tree
src/org/openqa/selenium/netty/server Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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+
122v4.1.3
223======
324
Original file line number Diff line number Diff 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 ) {
You can’t perform that action at this time.
0 commit comments