Skip to content

Commit 15fe5fc

Browse files
committed
.NET bindings version 2.53.1 to work with Firefox 47.0.1
1 parent 135b6f5 commit 15fe5fc

File tree

5 files changed

+35
-12
lines changed

5 files changed

+35
-12
lines changed

dotnet/CHANGELOG

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
v2.53.1
2+
=======
3+
* Update to allow .NET bindings to work with Firefox 47.0.1.
4+
5+
v2.53.0
6+
=======
7+
* This will be the final full release in the 2.x series. There may be
8+
small point releases going forward, but future development will
9+
concentrate on 3.0.
10+
* (on behalf of arnonaxelrod) Added an overload of ExecuteJavaScript
11+
extension method that doesn't accept a generic argument and doesn't
12+
return a value.
13+
* (on behalf of mohammadsavadkuhi) Corrected argument name in
14+
exceptions thrown by DefaultWait<T>.
15+
* Corrected trace categories for Chrome perf logging prefs in .NET.
16+
* Added device metrics to Chrome options for mobile emulation.
17+
* Removed .NET type-safe option for setting IE cookie capability. The
18+
'ie.validateCookieDocumentType' has been obsolete since 2.47 of WebDriver.
19+
This commit marks the 'ValidateCookieDocumentType' property of the
20+
'InternetExplorerOptions' object as obsolete, and no longer sends that
21+
capability to the driver. This property will be removed in a future
22+
version of the .NET bindings.
23+
124
v2.52.0
225
=======
326
* Updated Firefox driver to include ability to disable overlapping element

dotnet/src/core/Properties/AssemblyInfo.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
[assembly: AssemblyConfiguration("")]
1111
[assembly: AssemblyCompany("Selenium Committers")]
1212
[assembly: AssemblyProduct("Selenium")]
13-
[assembly: AssemblyCopyright("Copyright © Software Freedom Conservancy 2014")]
13+
[assembly: AssemblyCopyright("Copyright © Software Freedom Conservancy 2016")]
1414

1515
// Mark the assembly as CLSCompliant for use with all CLS languages
1616
[assembly: CLSCompliant(true)]
@@ -21,5 +21,5 @@
2121
// Minor Version
2222
// Build Number
2323
// Revision
24-
[assembly: AssemblyVersion("2.52.0.0")]
25-
[assembly: AssemblyFileVersion("2.52.0.0")]
24+
[assembly: AssemblyVersion("2.53.1.0")]
25+
[assembly: AssemblyFileVersion("2.53.1.0")]

dotnet/src/support/Properties/AssemblyInfo.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
[assembly: AssemblyConfiguration("")]
2929
[assembly: AssemblyCompany("Selenium Committers")]
3030
[assembly: AssemblyProduct("Selenium")]
31-
[assembly: AssemblyCopyright("Copyright © Software Freedom Conservancy 2014")]
31+
[assembly: AssemblyCopyright("Copyright © Software Freedom Conservancy 2016")]
3232
[assembly: AssemblyTrademark("")]
3333
[assembly: AssemblyCulture("")]
3434

@@ -49,5 +49,5 @@
4949
// Minor Version
5050
// Build Number
5151
// Revision
52-
[assembly: AssemblyVersion("2.52.0.0")]
53-
[assembly: AssemblyFileVersion("2.52.0.0")]
52+
[assembly: AssemblyVersion("2.53.1.0")]
53+
[assembly: AssemblyFileVersion("2.53.1.0")]

dotnet/src/webdriver/Properties/AssemblyInfo.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
[assembly: AssemblyConfiguration("")]
2828
[assembly: AssemblyCompany("Selenium Committers")]
2929
[assembly: AssemblyProduct("Selenium")]
30-
[assembly: AssemblyCopyright("Copyright © Software Freedom Conservancy 2014")]
30+
[assembly: AssemblyCopyright("Copyright © Software Freedom Conservancy 2016")]
3131
[assembly: AssemblyTrademark("")]
3232
[assembly: AssemblyCulture("")]
3333

@@ -48,5 +48,5 @@
4848
// Minor Version
4949
// Build Number
5050
// Revision
51-
[assembly: AssemblyVersion("2.52.0.0")]
52-
[assembly: AssemblyFileVersion("2.52.0.0")]
51+
[assembly: AssemblyVersion("2.53.1.0")]
52+
[assembly: AssemblyFileVersion("2.53.1.0")]

dotnet/src/webdriverbackedselenium/Properties/AssemblyInfo.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
[assembly: AssemblyConfiguration("")]
2929
[assembly: AssemblyCompany("Selenium Committers")]
3030
[assembly: AssemblyProduct("Selenium")]
31-
[assembly: AssemblyCopyright("Copyright © Software Freedom Conservancy 2014")]
31+
[assembly: AssemblyCopyright("Copyright © Software Freedom Conservancy 2016")]
3232
[assembly: AssemblyTrademark("")]
3333
[assembly: AssemblyCulture("")]
3434

@@ -49,5 +49,5 @@
4949
// Minor Version
5050
// Build Number
5151
// Revision
52-
[assembly: AssemblyVersion("2.52.0.0")]
53-
[assembly: AssemblyFileVersion("2.52.0.0")]
52+
[assembly: AssemblyVersion("2.53.1.0")]
53+
[assembly: AssemblyFileVersion("2.53.1.0")]

0 commit comments

Comments
 (0)