Skip to content

Commit 9640cf9

Browse files
committed
Updating .NET bindings version numbers for impending 2.43 release.
1 parent 437dd18 commit 9640cf9

File tree

5 files changed

+36
-8
lines changed

5 files changed

+36
-8
lines changed

dotnet/CHANGELOG

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,31 @@
1+
v2.43.0
2+
=======
3+
* Supports native events for Firefox versions 32 (current), 31 (immediately
4+
previous release and current ESR), and 24 (immediately previous ESR).
5+
* Integrated the Microsoft Internet Explorer driver implementation into the
6+
.NET bindings. By setting the Implementation property of the .NET bindings'
7+
InternetExplorerDriverService class, the user can now force the driver to
8+
use the Microsoft implementation. Note that the default is to use the
9+
existing open-source implementation based on the Automation Atoms.
10+
Over time as the Microsoft implementation matures, this will be switched to
11+
use the Microsoft implementation, first by default, then exclusively.
12+
13+
To use the Microsoft implementation, the user must have the August 2014
14+
updates to Internet Explorer installed through Windows Update, and must
15+
install the IE Web Driver Tool for Internet Explorer 11 download from
16+
Microsoft (http://www.microsoft.com/en-us/download/details.aspx?id=44069).
17+
* Added safe check for window.localStorage in .NET WebDriverBackedSelenium
18+
implementation. Patch provided by Timofey Vasenin.
19+
* Implemented pluggable element locator factories for .NET PageFactory. This
20+
change allows the user to specify a custom IElementLocatorFactory for
21+
locating elements when used with the PageFactory. This gives much more
22+
control over the algorithm used to locate elements, and allows the
23+
incorporation of things like retries or handling of specific exceptions.
24+
* Issue #7367: Set Json.NET to ignore dates when parsing response values.
25+
* Issue #7419: Added support for SwitchTo().ParentFrame() in .NET bindings.
26+
This brings the .NET bindings into parity with other languages.
27+
* Belatedly removed long-obsolete .NET tests for AndroidDriver.
28+
129
v2.42.0
230
=======
331
* Supports native events for Firefox versions 29 (current), 28 (immediately

dotnet/src/core/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,5 @@
2121
// Minor Version
2222
// Build Number
2323
// Revision
24-
[assembly: AssemblyVersion("2.42.0.0")]
25-
[assembly: AssemblyFileVersion("2.42.0.0")]
24+
[assembly: AssemblyVersion("2.43.0.0")]
25+
[assembly: AssemblyFileVersion("2.43.0.0")]

dotnet/src/support/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,5 +50,5 @@
5050
// Minor Version
5151
// Build Number
5252
// Revision
53-
[assembly: AssemblyVersion("2.42.0.0")]
54-
[assembly: AssemblyFileVersion("2.42.0.0")]
53+
[assembly: AssemblyVersion("2.43.0.0")]
54+
[assembly: AssemblyFileVersion("2.43.0.0")]

dotnet/src/webdriver/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,5 +49,5 @@
4949
// Minor Version
5050
// Build Number
5151
// Revision
52-
[assembly: AssemblyVersion("2.42.99.5")]
53-
[assembly: AssemblyFileVersion("2.42.99.5")]
52+
[assembly: AssemblyVersion("2.43.0.0")]
53+
[assembly: AssemblyFileVersion("2.42.0.0")]

dotnet/src/webdriverbackedselenium/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,5 +50,5 @@
5050
// Minor Version
5151
// Build Number
5252
// Revision
53-
[assembly: AssemblyVersion("2.42.0.0")]
54-
[assembly: AssemblyFileVersion("2.42.0.0")]
53+
[assembly: AssemblyVersion("2.43.0.0")]
54+
[assembly: AssemblyFileVersion("2.43.0.0")]

0 commit comments

Comments
 (0)