Skip to content

Commit 3b74ce2

Browse files
committed
Bumping version resources and CHANGELOG for .NET 3.5.1 point-release
1 parent 0498835 commit 3b74ce2

File tree

4 files changed

+34
-9
lines changed

4 files changed

+34
-9
lines changed

dotnet/CHANGELOG

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,28 @@
1+
v3.5.1
2+
======
3+
* Added ability to detect spec-compliant capabilities in .NET. This
4+
release updates the .NET DesiredCapabilities class to allow the
5+
language bindings to construct the correct type of payload for the new
6+
session command before sending the command to the remote end. This will
7+
remove the burden from intermediate nodes (like the Java standalone server
8+
and grid) from incorrectly parsing a driver using the legacy protocol
9+
dialect (Edge, Safari, Chrome) and throwing an error on session creation.
10+
Fixes issue #4443.
11+
* Deprecated the static methods on the DesiredCapabilities class's methods
12+
for specific browsers in .NET. For over a year, the guidance for .NET
13+
users has been to use a browser-specific options class (FirefoxOptions,
14+
InternetExplorerOptions, etc.) to set specific capabilities for the driver
15+
to be instaniated. To use the options classes with the Java standalone
16+
remote server or grid, call the `ToCapabilities` method on the options
17+
object.
18+
* Removed deprecated screenshot methods. These have been deprecated
19+
since 3.1.0.
20+
* Removed IsJavaScriptEnabled property from DesiredCapabilities. Since
21+
virtually all driver implementations and all browsers support JavaScript
22+
and cannot run properly without it being enabled, this property is nearly
23+
useless. Use SetCapability("javascriptEnabled", true) if you require this
24+
functionality.
25+
126
v3.5.0
227
======
328
* (on behalf of Matthew Lymer) Fixing the parsing of logging levels to match

dotnet/src/support/Properties/AssemblyInfo.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,6 @@
4949
// Minor Version
5050
// Build Number
5151
// Revision
52-
[assembly: AssemblyVersion("3.5.0.0")]
53-
[assembly: AssemblyFileVersion("3.5.0.0")]
54-
[assembly: AssemblyInformationalVersion("3.5.0")]
52+
[assembly: AssemblyVersion("3.5.1.0")]
53+
[assembly: AssemblyFileVersion("3.5.1.0")]
54+
[assembly: AssemblyInformationalVersion("3.5.1")]

dotnet/src/webdriver/Properties/AssemblyInfo.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,6 @@
4949
// Minor Version
5050
// Build Number
5151
// Revision
52-
[assembly: AssemblyVersion("3.5.0.0")]
53-
[assembly: AssemblyFileVersion("3.5.0.0")]
54-
[assembly: AssemblyInformationalVersion("3.5.0")]
52+
[assembly: AssemblyVersion("3.5.1.0")]
53+
[assembly: AssemblyFileVersion("3.5.1.0")]
54+
[assembly: AssemblyInformationalVersion("3.5.1")]

dotnet/src/webdriverbackedselenium/Properties/AssemblyInfo.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,6 @@
4949
// Minor Version
5050
// Build Number
5151
// Revision
52-
[assembly: AssemblyVersion("3.5.0.0")]
53-
[assembly: AssemblyFileVersion("3.5.0.0")]
54-
[assembly: AssemblyInformationalVersion("3.5.0")]
52+
[assembly: AssemblyVersion("3.5.1.0")]
53+
[assembly: AssemblyFileVersion("3.5.1.0")]
54+
[assembly: AssemblyInformationalVersion("3.5.1")]

0 commit comments

Comments
 (0)