Skip to content

Commit 365eeb4

Browse files
Bump Java to 2.49.0 and update Changelog
1 parent d0e3c87 commit 365eeb4

File tree

5 files changed

+66
-7
lines changed

5 files changed

+66
-7
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.48.2"
53+
"2.49.0"
5454
end
5555
ide_version = "2.8.0"
5656

java/CHANGELOG

Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,62 @@
1+
v2.49.0
2+
=======
3+
4+
WebDriver:
5+
* Add maven coordinate for the Firefox Driver when built using Buck.
6+
* Remove guava dep on the selenium-apis when built using Buck.
7+
* on osx for firefox, fallback to checking homebrew install, if the default isn't there
8+
* Pass Options.ime() through to the wrapped driver.
9+
* Fixing HTML suite test runner
10+
* Bump guava to version 19
11+
* Ensure that the buck-built core library has no third party dependencies.
12+
* Updating textContent attribute test for IE9
13+
* Adding appropriate wait to AuthenticatedPageLoadingTest
14+
* Refactor concrete WebDriverException#getSupportUrl's
15+
* Fix a NullPointerException in RemoteWebDriver.getCurrentUrl
16+
* Reduces time wasted in when using a native driver
17+
* add the useful information about the session / capabilities in the exception when the 'browser may have died'
18+
* give the cleaner almost double the time to clean up the sessions (a whopping 9 more ms). Hopefull will deflake this test in CI.
19+
* Adding El Capitan (OS X 10.11) to Platform
20+
* Updating IE driver to fix clearing of <input type='number'> fields
21+
* Treat a null response to getCookies as [].
22+
* Restore a isNativeEventsEnabled check.
23+
* Updating TestNG.
24+
* firefox: Throw error when element cannot be clicked
25+
* Include Windows 10 in the Platform enum.
26+
* adding selenium server pass throughs for W3C dialect of alert / window / cookie commands.
27+
* clearing a number input with invalid text, should actually clear it.
28+
* Add innerHTML attribute support to HtmlUnitDriver
29+
* Add textContent attribute support to HtmlUnitDriver
30+
* make RemoteMouse public, akin to RemoteKeyboard. Not sure why it wasn't made public when it was originally moved out of RWD.
31+
* Use platform-dependant line separator instead of hardcoded '\n'.
32+
* Safari should only specify MAC as platform in default desired capabilities
33+
* improve javadoc for FluentWait
34+
* Changing interface name to be more Java-ish
35+
* Update GeneratedJsTestServlet to work with test files that use Closure's module syntax.
36+
* Adding release-v3 crazyfun target
37+
* should be able to send keys to a content editable div that is initially empty
38+
* Implementing pure WebDriver grid server (v.3)
39+
* Making BrowserLauncherFactory non-static, to avoid global configuration, for better testability and configurability (per object, not globally)
40+
* Server: Moving shared classes to a more appropriate place out of the legacy server namespace
41+
* Deleting RemoteControlLauncher as it is just a couple of static methods to parse command line options, that should belong to the server.
42+
* Refactoring GridLauncher: replacing big switch with a map of simple launchers; it's a step toward decomposition of the GridLauncher and dynamic discovery of the elements that can be launched.
43+
* Refactoring GridLauncher build process
44+
* Decoupling node registration module (SelfRegisteringRemote) from concrete implementation of the server to be run on the node.
45+
* Refactoring grid node registration procedure to make server start/stop methods as simple as possible.
46+
* Breaking another dependency of Grid on RC server
47+
* Deleting fail-fast check of browser configuration, this breaks another Grid dependency on parts of RC server. The check must be performed in RC server (if ever).
48+
* Actually fix the Safari BUCK build
49+
* Monkey-patching W3C-compatible cookie serialization to fix Marionette. A more proper fix would be to change the parameters of a Command from Map to Object.
50+
* There is no need to create a profile for Marionette
51+
* removing prebuilt SafariDriver extension, bumping version number to 2.48
52+
* Fixing tests for JsonToBeanConverter to avoid "error" key collision that has got new semantics in the standard
53+
* Stop exposing embedded jetty out of SeleniumServer
54+
* Breaking unwanted grid dependency on parts of RC server
55+
* Deleting JsonKey, it's a useless abstraction
56+
* Breaking unwanted grid test dependency on RC server (the removed attribute is not used actually)
57+
* Fixes #1140, #1334, #1263, #669, #1165, #1132, #1186, #1203, #1214, #1242
58+
#1241, #1240, #1238, #1237
59+
160
v2.48.2
261
=======
362
WebDriver:
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
selenium.rc.version=2.48
2-
selenium.rc.revision=.2
3-
selenium.core.version=2.48
4-
selenium.core.revision=.2
1+
selenium.rc.version=2.49
2+
selenium.rc.revision=.0
3+
selenium.core.version=2.49
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.48.0</em:version>
6+
<em:version>2.49.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.48";
18+
Selenium.version = "2.49";
1919
Selenium.revision = ".0";
2020

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

0 commit comments

Comments
 (0)