Skip to content

Commit

Permalink
Bumping version numbers for 2.46.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
jimevans committed Jun 4, 2015
1 parent e48851a commit d10b2a8
Show file tree
Hide file tree
Showing 5 changed files with 38 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ end
verbose($DEBUG)

def version
"2.45.0"
"2.46.0"
end
ide_version = "2.8.0"

Expand Down
34 changes: 33 additions & 1 deletion java/CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ v2.46.0

Important changes in this release:

* Supports native events for Firefox version 31 (immediately previous
ESR). Native event support has been discontinued for versions of
Firefox later than 33. Synthetic events tested on Firefox versions 31
(immediately previous ESR), 37 (immediately previous release), and 38
(current release and current ESR).
* Remove all support from both webdriver and RC for Presto-based
Opera. Blink-based Opera is still supported!
* Added beta Marionette driver (for Firefox OS and recent desktop
Expand All @@ -23,6 +28,7 @@ Other notable changes:
css is also related to this information (only partly implemented in
HtmlUnit at the moment)
* Updated htmlunitdriver to use htmlunit 2.16
* Upgraded commons-exec from 1.1 to 1.3
* Changed capability name from pageLoadingStrategy to pageLoadStrategy
* FIX: Google Code issue #7749: Add Get/Set network connection
commands to JsonHttpCommandHandler to be able to use commands in
Expand All @@ -32,7 +38,33 @@ Other notable changes:
priority than node configuration.
* ChromeDriver: Added ability to pass whitelisted-ips option to the
chromedriver

* Implement lazy loopback detection. This provides ~10x speed
improvement of selenium server startup.
* Allow loading option descriptions from JSON file instead of
Properties, allowing the server to manage order of options in the
help message
* SafariDriver: In SafariDriver's page script, copy window properties
to goog.global. (provided by juangj@google.com)
* Add a method toList that allows converting CompositeAction to JSON
* FirefoxDriver: Skip the profile cleaning step when launching Firefox
* Implement both integer (legacy) and string (standard) response status
for the JSON wire protocol
* FirefoxDriver: Disable https://wiki.mozilla.org/Advocacy/heartbeat
Firefox 37+ feature in browser sessions started by FirefoxDriver.
* FirefoxDriver: Added getters to FirefoxProfile to allow reading
preset preference values
* PageFactory: Changed default value of how part of @FindBy annotation
from ID to UNSET, but treat them equivalent to ensure backward
compatibility
* PageFactory: Provide ability to use custom annotations. (Provided
by Artem Koshelev)
* Use DaemonExecutor from commons-exec instead of DefaultExecutor.
Fixes Google Code issue 4734. (Provided by Richard Atkins)
* FirefoxDriver and Java language bindings now handle both legacy and
W3C specification dialects of element reference serialization in the
JSON wire protocol.
* FirefoxDriver: Don't force garbage collection in httpd.js for
Firefox when connections are closed

v2.45.0
=======
Expand Down
4 changes: 2 additions & 2 deletions java/server/src/org/openqa/selenium/server/VERSION.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
selenium.rc.version=2.45
selenium.rc.version=2.46
selenium.rc.revision=.0
selenium.core.version=2.45
selenium.core.version=2.46
selenium.core.revision=.0
2 changes: 1 addition & 1 deletion javascript/firefox-driver/extension/install.rdf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

<Description about="urn:mozilla:install-manifest">
<em:id>fxdriver@googlecode.com</em:id>
<em:version>2.45.0</em:version>
<em:version>2.46.0</em:version>
<em:type>2</em:type>
<em:name>Firefox WebDriver</em:name>
<em:description>WebDriver implementation for Firefox</em:description>
Expand Down
2 changes: 1 addition & 1 deletion javascript/selenium-core/scripts/selenium-version.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
// specific language governing permissions and limitations
// under the License.

Selenium.version = "2.45";
Selenium.version = "2.46";
Selenium.revision = ".0";

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

0 comments on commit d10b2a8

Please sign in to comment.