Skip to content

Commit d10b2a8

Browse files
committed
Bumping version numbers for 2.46.0 release
1 parent e48851a commit d10b2a8

File tree

5 files changed

+38
-6
lines changed

5 files changed

+38
-6
lines changed

Diff for: Rakefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ end
5050
verbose($DEBUG)
5151

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

Diff for: java/CHANGELOG

+33-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@ v2.46.0
33

44
Important changes in this release:
55

6+
* Supports native events for Firefox version 31 (immediately previous
7+
ESR). Native event support has been discontinued for versions of
8+
Firefox later than 33. Synthetic events tested on Firefox versions 31
9+
(immediately previous ESR), 37 (immediately previous release), and 38
10+
(current release and current ESR).
611
* Remove all support from both webdriver and RC for Presto-based
712
Opera. Blink-based Opera is still supported!
813
* Added beta Marionette driver (for Firefox OS and recent desktop
@@ -23,6 +28,7 @@ Other notable changes:
2328
css is also related to this information (only partly implemented in
2429
HtmlUnit at the moment)
2530
* Updated htmlunitdriver to use htmlunit 2.16
31+
* Upgraded commons-exec from 1.1 to 1.3
2632
* Changed capability name from pageLoadingStrategy to pageLoadStrategy
2733
* FIX: Google Code issue #7749: Add Get/Set network connection
2834
commands to JsonHttpCommandHandler to be able to use commands in
@@ -32,7 +38,33 @@ Other notable changes:
3238
priority than node configuration.
3339
* ChromeDriver: Added ability to pass whitelisted-ips option to the
3440
chromedriver
35-
41+
* Implement lazy loopback detection. This provides ~10x speed
42+
improvement of selenium server startup.
43+
* Allow loading option descriptions from JSON file instead of
44+
Properties, allowing the server to manage order of options in the
45+
help message
46+
* SafariDriver: In SafariDriver's page script, copy window properties
47+
to goog.global. (provided by [email protected])
48+
* Add a method toList that allows converting CompositeAction to JSON
49+
* FirefoxDriver: Skip the profile cleaning step when launching Firefox
50+
* Implement both integer (legacy) and string (standard) response status
51+
for the JSON wire protocol
52+
* FirefoxDriver: Disable https://wiki.mozilla.org/Advocacy/heartbeat
53+
Firefox 37+ feature in browser sessions started by FirefoxDriver.
54+
* FirefoxDriver: Added getters to FirefoxProfile to allow reading
55+
preset preference values
56+
* PageFactory: Changed default value of how part of @FindBy annotation
57+
from ID to UNSET, but treat them equivalent to ensure backward
58+
compatibility
59+
* PageFactory: Provide ability to use custom annotations. (Provided
60+
by Artem Koshelev)
61+
* Use DaemonExecutor from commons-exec instead of DefaultExecutor.
62+
Fixes Google Code issue 4734. (Provided by Richard Atkins)
63+
* FirefoxDriver and Java language bindings now handle both legacy and
64+
W3C specification dialects of element reference serialization in the
65+
JSON wire protocol.
66+
* FirefoxDriver: Don't force garbage collection in httpd.js for
67+
Firefox when connections are closed
3668

3769
v2.45.0
3870
=======
+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
selenium.rc.version=2.45
1+
selenium.rc.version=2.46
22
selenium.rc.revision=.0
3-
selenium.core.version=2.45
3+
selenium.core.version=2.46
44
selenium.core.revision=.0

Diff for: javascript/firefox-driver/extension/install.rdf

+1-1
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.45.0</em:version>
6+
<em:version>2.46.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>

Diff for: javascript/selenium-core/scripts/selenium-version.js

+1-1
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.45";
18+
Selenium.version = "2.46";
1919
Selenium.revision = ".0";
2020

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

0 commit comments

Comments
 (0)