Skip to content

Commit

Permalink
updating java changelog and version number bump for 2.50
Browse files Browse the repository at this point in the history
  • Loading branch information
lukeis committed Jan 27, 2016
1 parent 4532dc6 commit 1070ace
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 8 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.49.1"
"2.50.0"
end
ide_version = "2.8.0"

Expand Down
22 changes: 22 additions & 0 deletions java/CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
v2.50.0
=======

WebDriver:
* Firefox: fixing sendKeys throwing "cross-process JS call failed " in FF45
* Firefox: fixing click to multirect elements broken by the previous PR
* Check element corners and middle for clickability
* Fix keyCodes for some characters in the FirefoxDriver.
* Firefox: fixing malformed URL handling. Fixed issue #1248
* Prevent Firefox from opening a page on a second or later run and/or after some amount of time
* Fixing executable finder on Windows
* Fixing HtmlUnit driver to pass recently added tests
* Firefox: fixing appending to contenteditable elements. Fixes issue 1419
* correct javascript remote client ui executor to use new promise based execute introduced by 0fa587 Fixes #1521
* Firefox: Adding an extra check to result wrapper. Fixes issue #1426
* Changes to simplify the execution of finding elements.
* Fixing issue #1479. The only reasonable thing we can do for select elements is to disable clickability checking, see https://gist.github.com/p0deje/c549e93fa19bf7aaee49

Grid:
* Found a better place to convert seconds to milliseconds

v2.49.1
=======

Expand Down Expand Up @@ -2033,3 +2054,4 @@ Grid:
* Track when a session has become orphaned. I.e., when the client sends no
commands after the initial session creation. This almost always indicates
the client is no longer connected and the session is unusable immediately.
----
8 changes: 4 additions & 4 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.49
selenium.rc.revision=.1
selenium.core.version=2.49
selenium.core.revision=.1
selenium.rc.version=2.50
selenium.rc.revision=.0
selenium.core.version=2.50
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.49.1</em:version>
<em:version>2.50.0</em:version>
<em:type>2</em:type>
<em:name>Firefox WebDriver</em:name>
<em:description>WebDriver implementation for Firefox</em:description>
Expand Down
4 changes: 2 additions & 2 deletions 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.49";
Selenium.revision = ".1";
Selenium.version = "2.50";
Selenium.revision = ".0";

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

0 comments on commit 1070ace

Please sign in to comment.