Skip to content

Commit 0e4837e

Browse files
committed
Updating version information for 2.47.0 release
1 parent 5bb60fa commit 0e4837e

File tree

5 files changed

+68
-8
lines changed

5 files changed

+68
-8
lines changed

Rakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ end
5050
verbose($DEBUG)
5151

5252
def version
53-
"2.46.0"
53+
"2.47.0"
5454
end
5555
ide_version = "2.8.0"
5656

java/CHANGELOG

Lines changed: 63 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,67 @@
1-
v2.47.0 in development
2-
======================
1+
v2.47.0
2+
=======
3+
WebDriver:
4+
* Supports native events for Firefox version 31 (immediately previous
5+
ESR). Native event support has been discontinued for versions of
6+
Firefox later than 33. Synthetic events tested on Firefox versions 31
7+
(immediately previous ESR), 38 (immediately previous release and current
8+
ESR), and 39 (current release).
9+
* Beta Alert.AuthenticateUsing api implementation added, beta testing with IE.
10+
* Added TakesScreenshot to WebElement.
11+
* (provided by Microsoft) Added language bindings for Microsoft Edge browser
12+
* Make it possible for users to override how the Lock is obtained with Firefox.
13+
* (provided by Ahmed Ashour) Added implementation of Alert for HtmlUnit driver.
14+
* (provided by Ahmed Ashour) Fixed findElementByXPath for HtmlUnit driver to
15+
work for XML pages.
16+
* (provided by Ahmed Ashour) Fixed HtmlUnit driver to allow for manipulating
17+
elements in SVG documents.
18+
* (provided by Ahmed Ashour) Fixed HtmlUnit driver so that deleteAllCookies
19+
deletes cookies only for the current domain, matching other implementations.
20+
* (provided by Tamás Buka) Created an overload to
21+
ExpectedConditions.frameToBeAvailableAndSwitchToIt support to index and
22+
WebElement so that WebDriverWait can use this mode to switch frames.
23+
* (provided by Joshua Bruning) Allow access to local profiler logs. An
24+
exception may be thrown if the WebDriver server does not recognize profiler
25+
logs. In this case, the user should be able to see the local profiler logs.
26+
* (provided by Sergey Tikhomirov) Changed visibility of isDecoratableList
27+
method of DefaultFieldDecorator to protected for use with custom PageFactory
28+
implementations.
29+
* Froze javascript.enabled property in Firefox profiles
30+
* FIXED #426: (provided by Anand Jayaram) Default the hub port to 4444, if no
31+
port was provided.
32+
* FIXED #638: Disabled HTTP Public Key Pinning (HPKP) when the
33+
webdriver_accept_untrusted_certs capability is set. As of Firefox 39, Firefox
34+
ignores certificate overrides if the domain's certificate is pinned.
35+
* FIXED #644: (provided by Brett Randall) Modified ErrorHandler to tolerate
36+
non-Number lineNumber, and also attempts to safely parse a non-Number Object
37+
if it receives a non-Number. If absent or non-numeric it now continues to
38+
build the StackTraceElement (instead of aborting that frame) and uses the
39+
conventional -1 for lineNumber.
40+
* FIXED #658: Disable reading list info panel in Firefox.
41+
42+
Server:
43+
* Added a guard that prevents starting "IE instead of Opera" (or some other
44+
unwanted browser that obviously does not match the desired capabilities).
45+
Previously if a new session request is forwarded to a node it results in a
46+
driver instance creation in any case. For example, let's suppose a user
47+
starts a node with -browser browserName=opera option, and there is no
48+
operadriver in the classpath. Then the user requests a new remote driver with
49+
browserName=opera. The hub forwards the request to the node, and the node
50+
attempts to find the "best matching" driver provider. As far as opera is not
51+
available, it can start any other browser. Because "best matching" does not
52+
imply matching. The new guard prevents this unwanted behavior.
53+
54+
Grid:
55+
* Added support to grid for Microsoft Edge driver
56+
* (provided by Dima Kovalenko) Sort Grid Proxies in order of least busy to
57+
busiest. This should prevent situation where one node is running multiple
58+
sessions while several nodes are completely idle.
59+
60+
RC:
61+
* Removed start of Firefox with -silent option to prevent crash in Firefox.
362

4-
* Beta Alert.AuthenticateUsing api implementation added, beta testing with IE.
63+
IDE:
64+
* FIXED #570: Add ability to record elements that do not have href attributes.
565

666
v2.46.0
767
=======
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
selenium.rc.version=2.46
1+
selenium.rc.version=2.47
22
selenium.rc.revision=.0
3-
selenium.core.version=2.46
3+
selenium.core.version=2.47
44
selenium.core.revision=.0

javascript/firefox-driver/extension/install.rdf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
<Description about="urn:mozilla:install-manifest">
55
<em:id>[email protected]</em:id>
6-
<em:version>2.46.0</em:version>
6+
<em:version>2.47.0</em:version>
77
<em:type>2</em:type>
88
<em:name>Firefox WebDriver</em:name>
99
<em:description>WebDriver implementation for Firefox</em:description>

javascript/selenium-core/scripts/selenium-version.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
// specific language governing permissions and limitations
1616
// under the License.
1717

18-
Selenium.version = "2.46";
18+
Selenium.version = "2.47";
1919
Selenium.revision = ".0";
2020

2121
window.top.document.title += " v" + Selenium.version + Selenium.revision;

0 commit comments

Comments
 (0)