Skip to content

Commit 5bb60fa

Browse files
committed
Updating version numbers for .NET assemblies for impending 2.47 release
1 parent 28a167a commit 5bb60fa

File tree

5 files changed

+34
-8
lines changed

5 files changed

+34
-8
lines changed

Diff for: dotnet/CHANGELOG

+26
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,29 @@
1+
v2.47.0
2+
=======
3+
* Supports native events for Firefox version 31 (immediately previous ESR).
4+
Native event support has been discontinued for versions of Firefox later
5+
than 33. Synthetic events tested on Firefox versions 31 (immediately
6+
previous ESR), 38 (immediately previous release and current ESR), and 39
7+
(current release).
8+
* (provided by Microsoft) Added language bindings for Microsoft Edge browser.
9+
* Added support for authentication dialogs in the .NET bindings.
10+
* Replaced DotNetZip with ZipStorer library. Adds the ability to use the .NET
11+
bindings with Firefox on Linux and OS X via Mono. The replacement library
12+
uses the internal System.IO.Compression classes along with custom code for
13+
reading and writing the central director structure of .zip files. The
14+
resulting .zip files created may be slightly larger than those produced via
15+
DotNetZip, but we will sacrifice that small size difference in exchange for
16+
cross-platform usability.
17+
* Fixing cookie parsing error in .NET bindings. The JSON response for cookie
18+
expiration date is a number, not an integer. The .NET bindings were not
19+
handling the fact that a floating point number could be included in the JSON
20+
object as an expiration time.
21+
* Added support to .NET bindings for HTTP-only cookies.
22+
* Added ITakesScreenshot to .NET RemoteWebElement for spec compatibility Note
23+
that no driver implements this at present, so attempting to use this within
24+
any test will result in a NotImplementedException.
25+
* Fixed dynamic assembly generation for .NET PageFactory for .NET 3.5.
26+
127
v2.46.0
228
=======
329
* Supports native events for Firefox version 31 (immediately previous ESR).

Diff for: dotnet/src/core/Properties/AssemblyInfo.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,5 @@
2121
// Minor Version
2222
// Build Number
2323
// Revision
24-
[assembly: AssemblyVersion("2.46.0.0")]
25-
[assembly: AssemblyFileVersion("2.46.0.0")]
24+
[assembly: AssemblyVersion("2.47.0.0")]
25+
[assembly: AssemblyFileVersion("2.47.0.0")]

Diff for: dotnet/src/support/Properties/AssemblyInfo.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -50,5 +50,5 @@
5050
// Minor Version
5151
// Build Number
5252
// Revision
53-
[assembly: AssemblyVersion("2.46.0.0")]
54-
[assembly: AssemblyFileVersion("2.46.0.0")]
53+
[assembly: AssemblyVersion("2.47.0.0")]
54+
[assembly: AssemblyFileVersion("2.47.0.0")]

Diff for: dotnet/src/webdriver/Properties/AssemblyInfo.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -49,5 +49,5 @@
4949
// Minor Version
5050
// Build Number
5151
// Revision
52-
[assembly: AssemblyVersion("2.46.0.0")]
53-
[assembly: AssemblyFileVersion("2.46.0.0")]
52+
[assembly: AssemblyVersion("2.47.0.0")]
53+
[assembly: AssemblyFileVersion("2.47.0.0")]

Diff for: dotnet/src/webdriverbackedselenium/Properties/AssemblyInfo.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -50,5 +50,5 @@
5050
// Minor Version
5151
// Build Number
5252
// Revision
53-
[assembly: AssemblyVersion("2.46.0.0")]
54-
[assembly: AssemblyFileVersion("2.46.0.0")]
53+
[assembly: AssemblyVersion("2.47.0.0")]
54+
[assembly: AssemblyFileVersion("2.47.0.0")]

0 commit comments

Comments
 (0)