Skip to content

Commit 1070ace

Browse files
committed
updating java changelog and version number bump for 2.50
1 parent 4532dc6 commit 1070ace

File tree

5 files changed

+30
-8
lines changed

5 files changed

+30
-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.49.1"
53+
"2.50.0"
5454
end
5555
ide_version = "2.8.0"
5656

java/CHANGELOG

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
1+
v2.50.0
2+
=======
3+
4+
WebDriver:
5+
* Firefox: fixing sendKeys throwing "cross-process JS call failed " in FF45
6+
* Firefox: fixing click to multirect elements broken by the previous PR
7+
* Check element corners and middle for clickability
8+
* Fix keyCodes for some characters in the FirefoxDriver.
9+
* Firefox: fixing malformed URL handling. Fixed issue #1248
10+
* Prevent Firefox from opening a page on a second or later run and/or after some amount of time
11+
* Fixing executable finder on Windows
12+
* Fixing HtmlUnit driver to pass recently added tests
13+
* Firefox: fixing appending to contenteditable elements. Fixes issue 1419
14+
* correct javascript remote client ui executor to use new promise based execute introduced by 0fa587 Fixes #1521
15+
* Firefox: Adding an extra check to result wrapper. Fixes issue #1426
16+
* Changes to simplify the execution of finding elements.
17+
* 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
18+
19+
Grid:
20+
* Found a better place to convert seconds to milliseconds
21+
122
v2.49.1
223
=======
324

@@ -2033,3 +2054,4 @@ Grid:
20332054
* Track when a session has become orphaned. I.e., when the client sends no
20342055
commands after the initial session creation. This almost always indicates
20352056
the client is no longer connected and the session is unusable immediately.
2057+
----
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
selenium.rc.version=2.49
2-
selenium.rc.revision=.1
3-
selenium.core.version=2.49
4-
selenium.core.revision=.1
1+
selenium.rc.version=2.50
2+
selenium.rc.revision=.0
3+
selenium.core.version=2.50
4+
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.49.1</em:version>
6+
<em:version>2.50.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: 2 additions & 2 deletions
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.49";
19-
Selenium.revision = ".1";
18+
Selenium.version = "2.50";
19+
Selenium.revision = ".0";
2020

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

0 commit comments

Comments
 (0)