Skip to content

Commit 35ae25b

Browse files
committed
bumping version numbers and updating changelog for 2.53 (python & java)
1 parent 31a9914 commit 35ae25b

File tree

10 files changed

+47
-13
lines changed

10 files changed

+47
-13
lines changed

java/CHANGELOG

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,28 @@
1+
v2.53.0
2+
=======
3+
4+
FINAL 2.X RELEASE.
5+
6+
No more HtmlUnitDriver... Moved to a subproject https://github.com/SeleniumHQ/htmlunit-driver
7+
8+
Java:
9+
* Query Selenium Server to retrieve actual running port. Fixes #1299
10+
* Upgrading HtmlUnit to 2.20
11+
* Java: Introducing NoSuchSessionException in the core API
12+
* Fixing memory leak in TemporaryFileSystem Fixes #1679
13+
* Fixing rectangle dimension, and adding equals and hashCode
14+
* Java: Adding a new W3C-compatible string error code
15+
* Add support to listen "refresh" events. Fixes #1584
16+
* extended ExpectedConditions with a list of new ones. New logic operators + conditions for css and html attributes
17+
* Java: Deleting webbit a test server
18+
Grid:
19+
* cleanup cycle needs to be persisted to allMap, since that's where it's read from in other places. this stuff needs some cleanup...
20+
* adding grid e2e distribution test
21+
* fix mixed content issue
22+
* when sorting nodes for consideration, also take into account last time accessed for a more even distribution across nodes over the lifetime of the grid.
23+
* Also fix using the RemoteProxy's getResourceUsageInPercent instead of calculating it in the sort. Fixes #1673
24+
* make HttpClientFactory private methods protected to allow one to extend / override.
25+
126
v2.52.0
227
=======
328

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
selenium.rc.version=2.52
1+
selenium.rc.version=2.53
22
selenium.rc.revision=.0
3-
selenium.core.version=2.52
3+
selenium.core.version=2.53
44
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.52.0</em:version>
6+
<em:version>2.53.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.52";
18+
Selenium.version = "2.53";
1919
Selenium.revision = ".0";
2020

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

py/CHANGES

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
Selenium 2.53.0
2+
* Adding Options object for use with Python FirefoxDriver
3+
* Fixed improper usage of super in exceptions module
4+
* create a temp file for cookies in phantomjs if not specified
5+
* Pass in the executable that FirefoxBinary finds to the service if there isnt one passed in as a kwarg or capability
6+
* Applied some DRY and extracted out the keys_to_typing()
7+
* Fix deselecting options in <select>
8+
9+
110
Selenium 2.52.0
211
* Fixing case where UnexpectedAlertException doesn't get the alert_text in the error object
312
* Firefox: Actually use launch_browser timeout Fixes #1300

py/README.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ If you have `pip <http://www.pip-installer.org>`_ on your system, you can simply
3636

3737
pip install -U selenium
3838

39-
Alternately, you can download the source distribution from `PyPI <http://pypi.python.org/pypi/selenium>`_ (e.g. selenium-2.52.0.tar.gz), unarchive it, and run::
39+
Alternately, you can download the source distribution from `PyPI <http://pypi.python.org/pypi/selenium>`_ (e.g. selenium-2.53.0.tar.gz), unarchive it, and run::
4040

4141
python setup.py install
4242

@@ -107,11 +107,11 @@ For normal WebDriver scripts (non-Remote), the Java server is not needed.
107107

108108
However, to use Selenium Webdriver Remote or the legacy Selenium API (Selenium-RC), you need to also run the Selenium server. The server requires a Java Runtime Environment (JRE).
109109

110-
Download the server separately, from: http://selenium-release.storage.googleapis.com/2.52/selenium-server-standalone-2.52.0.jar
110+
Download the server separately, from: http://selenium-release.storage.googleapis.com/2.53/selenium-server-standalone-2.53.0.jar
111111

112112
Run the server from the command line::
113113

114-
java -jar selenium-server-standalone-2.52.0.jar
114+
java -jar selenium-server-standalone-2.53.0.jar
115115

116116
Then run your Python client scripts.
117117

py/docs/source/index.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ If you have `pip <http://www.pip-installer.org>`_ on your system, you can simply
3636

3737
pip install -U selenium
3838

39-
Alternately, you can download the source distribution from `PyPI <http://pypi.python.org/pypi/selenium>`_ (e.g. selenium-2.52.0.tar.gz), unarchive it, and run::
39+
Alternately, you can download the source distribution from `PyPI <http://pypi.python.org/pypi/selenium>`_ (e.g. selenium-2.53.0.tar.gz), unarchive it, and run::
4040

4141
python setup.py install
4242

@@ -107,11 +107,11 @@ For normal WebDriver scripts (non-Remote), the Java server is not needed.
107107

108108
However, to use Selenium Webdriver Remote or the legacy Selenium API (Selenium-RC), you need to also run the Selenium server. The server requires a Java Runtime Environment (JRE).
109109

110-
Download the server separately, from: http://selenium-release.storage.googleapis.com/2.52/selenium-server-standalone-2.52.0.jar
110+
Download the server separately, from: http://selenium-release.storage.googleapis.com/2.53/selenium-server-standalone-2.53.0.jar
111111

112112
Run the server from the command line::
113113

114-
java -jar selenium-server-standalone-2.52.0.jar
114+
java -jar selenium-server-standalone-2.53.0.jar
115115

116116
Then run your Python client scripts.
117117

py/selenium/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@
1818
from selenium import selenium
1919

2020

21-
__version__ = "2.51.0"
21+
__version__ = "2.53.0"

py/selenium/webdriver/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,4 @@
3232
from .common.touch_actions import TouchActions
3333
from .common.proxy import Proxy
3434

35-
__version__ = '2.51.0'
35+
__version__ = '2.53.0'

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
setup_args = {
3333
'cmdclass': {'install': install},
3434
'name': 'selenium',
35-
'version': "2.52.0",
35+
'version': "2.53.0",
3636
'description': 'Python bindings for Selenium',
3737
'long_description': open(join(abspath(dirname(__file__)), "py", "README.rst")).read(),
3838
'url': 'https://github.com/SeleniumHQ/selenium/',

0 commit comments

Comments
 (0)