Skip to content

Commit

Permalink
Updating .NET bindings version numbers for impending 2.43 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
jimevans committed Sep 9, 2014
1 parent 437dd18 commit 9640cf9
Show file tree
Hide file tree
Showing 5 changed files with 36 additions and 8 deletions.
28 changes: 28 additions & 0 deletions dotnet/CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,31 @@
v2.43.0
=======
* Supports native events for Firefox versions 32 (current), 31 (immediately
previous release and current ESR), and 24 (immediately previous ESR).
* Integrated the Microsoft Internet Explorer driver implementation into the
.NET bindings. By setting the Implementation property of the .NET bindings'
InternetExplorerDriverService class, the user can now force the driver to
use the Microsoft implementation. Note that the default is to use the
existing open-source implementation based on the Automation Atoms.
Over time as the Microsoft implementation matures, this will be switched to
use the Microsoft implementation, first by default, then exclusively.

To use the Microsoft implementation, the user must have the August 2014
updates to Internet Explorer installed through Windows Update, and must
install the IE Web Driver Tool for Internet Explorer 11 download from
Microsoft (http://www.microsoft.com/en-us/download/details.aspx?id=44069).
* Added safe check for window.localStorage in .NET WebDriverBackedSelenium
implementation. Patch provided by Timofey Vasenin.
* Implemented pluggable element locator factories for .NET PageFactory. This
change allows the user to specify a custom IElementLocatorFactory for
locating elements when used with the PageFactory. This gives much more
control over the algorithm used to locate elements, and allows the
incorporation of things like retries or handling of specific exceptions.
* Issue #7367: Set Json.NET to ignore dates when parsing response values.
* Issue #7419: Added support for SwitchTo().ParentFrame() in .NET bindings.
This brings the .NET bindings into parity with other languages.
* Belatedly removed long-obsolete .NET tests for AndroidDriver.

v2.42.0
=======
* Supports native events for Firefox versions 29 (current), 28 (immediately
Expand Down
4 changes: 2 additions & 2 deletions dotnet/src/core/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,5 @@
// Minor Version
// Build Number
// Revision
[assembly: AssemblyVersion("2.42.0.0")]
[assembly: AssemblyFileVersion("2.42.0.0")]
[assembly: AssemblyVersion("2.43.0.0")]
[assembly: AssemblyFileVersion("2.43.0.0")]
4 changes: 2 additions & 2 deletions dotnet/src/support/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -50,5 +50,5 @@
// Minor Version
// Build Number
// Revision
[assembly: AssemblyVersion("2.42.0.0")]
[assembly: AssemblyFileVersion("2.42.0.0")]
[assembly: AssemblyVersion("2.43.0.0")]
[assembly: AssemblyFileVersion("2.43.0.0")]
4 changes: 2 additions & 2 deletions dotnet/src/webdriver/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -49,5 +49,5 @@
// Minor Version
// Build Number
// Revision
[assembly: AssemblyVersion("2.42.99.5")]
[assembly: AssemblyFileVersion("2.42.99.5")]
[assembly: AssemblyVersion("2.43.0.0")]
[assembly: AssemblyFileVersion("2.42.0.0")]
4 changes: 2 additions & 2 deletions dotnet/src/webdriverbackedselenium/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -50,5 +50,5 @@
// Minor Version
// Build Number
// Revision
[assembly: AssemblyVersion("2.42.0.0")]
[assembly: AssemblyFileVersion("2.42.0.0")]
[assembly: AssemblyVersion("2.43.0.0")]
[assembly: AssemblyFileVersion("2.43.0.0")]

0 comments on commit 9640cf9

Please sign in to comment.