Skip to content

Commit f857c6b

Browse files
committed
Updating .NET CHANGELOG for 3.10 release
1 parent 8a6536d commit f857c6b

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

dotnet/CHANGELOG

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,30 @@
1+
v3.10.0
2+
=======
3+
* Removed Proxy property from instance of HttpWebRequest in .NET. This
4+
fixes the case for .NET Core when running RemoteWebDriver by avoiding
5+
a platform-specific property of the ServicePoint object. This obviates
6+
the need for creating a custom IWebProxy implementation simply for fixing
7+
this issue, and prevents a bloat of the number of RemoteWebDriver
8+
constructors for creating an instance of that proxy object. While there
9+
may be a compelling use case for supporting an IWebProxy implementation
10+
for use with WebDriver to proxy communication between the language bindings
11+
and the driver, this use case is not it. Fixes issue #4770.
12+
* (on behalf of dnknitro) Added no-cache header to HTTP GET command of
13+
RemoteWebDriver. When Selenium RemoteWebDriver is connecting to Selenium
14+
Server (e.g. SauceLabs) through HTTP proxy, same/repetitive HTTP commands
15+
can be cached by the proxy. This leads to unexpected and unwanted behavior
16+
that HTTP commands return cached and outdated data from the server (e.g.
17+
screenshots). Fixes issue #5404.
18+
* Removed support for timeline perf logging preference in .NET ChromeDriver.
19+
According to chromedriver bug #2034
20+
(https://bugs.chromium.org/p/chromedriver/issues/detail?id=2034),
21+
the enableTimeline performance logging preference is no longer accepted
22+
by chromedriver.exe. The .NET language bindings will no longer send that
23+
preference to the driver executable. Additionally, the peroperty setting
24+
the preference has been deprecated, and will generate a compile-time
25+
warning. The property will be remvoed in a future release. Fixes
26+
issue #5481.
27+
128
v3.9.1
229
======
330
* Updated build process and packaging to correctly distribute strongly-

0 commit comments

Comments
 (0)