Skip to content

Commit

Permalink
Updating release version to 3.12.1 for .NET
Browse files Browse the repository at this point in the history
  • Loading branch information
jimevans committed May 29, 2018
1 parent 8d664f4 commit 7a00482
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 3 deletions.
20 changes: 20 additions & 0 deletions dotnet/CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
v3.12.1
=======
* Updated .NET escaping of CSS selectors for the find-by-ID and find-by-name
cases. This is especially important for drivers that adhere to the W3C
WebDriver Specification.
* The .NET bindings no longer swallow exceptions for navigation to malformed
URLs.
* Added inadvertently omitted FirefoxDriver constructor for .NET.
To maintain consistency with other drivers, we are adding a constructor
that takes a FirefoxDriverService and a FirefoxOptions. All other drivers
have a "service and options" constructor, making Firefox the outlier.
* Updated use of command-line args for protocol selection for Edge in .NET.
The UseSpecCompliantProtocol property of the EdgeDriverService object now
is a nullable boolean instead of just a boolean. If the property is
assigned a value (true or false), it will add the appropriate command-line
argument ("--w3c" or "--jwp", respectively) to the executable command
line. Users using versions of MicrosoftWebDriver.exe that do not support
those command-line arguments should leave the property unset (as a null
value).

v3.12.0
=======
* Updated unhandled JavaScript errors to throw WebDriverException in .NET.
Expand Down
4 changes: 2 additions & 2 deletions dotnet/selenium-dotnet-version.bzl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# BUILD FILE SYNTAX: SKYLARK

SE_VERSION = '3.12.0'
ASSEMBLY_VERSION = '3.12.0.0'
SE_VERSION = '3.12.1'
ASSEMBLY_VERSION = '3.12.1.0'
2 changes: 1 addition & 1 deletion dotnet/test/common/appconfig.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"DriverServiceLocation": "",
"ActiveDriverConfig": "Chrome",
"ActiveDriverConfig": "Edge",
"ActiveWebsiteConfig": "HostsFileRedirect",
"WebsiteConfigs": {
"Default": {
Expand Down

0 comments on commit 7a00482

Please sign in to comment.