Skip to content

Commit 5f43a29

Browse files
[py] Bump version to 4a6
1 parent 4723c25 commit 5f43a29

File tree

6 files changed

+36
-7
lines changed

6 files changed

+36
-7
lines changed

py/BUILD.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ py_wheel(
7373
strip_path_prefixes = [
7474
"py",
7575
],
76-
version = "4.0.0.a5",
76+
version = "4.0.0.a6",
7777
visibility = ["//visibility:public"],
7878
deps = [
7979
":selenium-pkg",

py/CHANGES

Lines changed: 31 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,33 @@
1+
Selenium 4.0 Alpha 6
2+
3+
* Add Abstract Base Class to WebElement and WebDriver #7127 (#8348)
4+
* Copy `acceptInsecureCerts` to Options for Firefox. Fixes #8261
5+
* Correct check on DEFAULT_EXECUTABLE_PATH
6+
* Use ProxyManager instead of PoolManager in remote_connection (#8297)
7+
* Check offsets are cast to int. Fixes #7639
8+
* Fixes an issue where IE server port is set '0' by default (#8294)
9+
* Favor Python3 constructs and Python 2.7 compatibility (#8290)
10+
* Remove Unused Arguments from Firefox
11+
* Fixup Firefox deprecations
12+
* Delete support for Blackberry Driver
13+
* Delete PhantomJS capabilities
14+
* Delete Android Driver support
15+
* Remove python crazyfun references
16+
* Enable and update Safari tests
17+
* Use same port in remote executor and service (#8255)
18+
* Update tests and docs to not use deprecated methods
19+
* mark various tests as failing in Firefox
20+
* Use callback functions instead callable objects as expected conditions (#7765)
21+
* Fix error in webelemet not created, verifing if is str or dict. (#3481)
22+
* verify command_executor ssl certificate by default (#6536)
23+
* Correct documentation for ChromiumDriver
24+
* Deprecating find_element(s)_* calls in event firing webdriver
25+
* Fixing path to selenium server for remote tests
26+
* Fixing relative locator constructor
27+
* Changing environment variable we use to check if the tests are running on travis
28+
* Fixing HSL to RGBa color converter
29+
* Deprecate use of AppCache APIs
30+
131
Selenium 4.0 Alpha 5
232

333
* Correct service usage in IE Binding. Fixes #7749
@@ -19,7 +49,7 @@ Selenium 4.0 Alpha 5
1949
* Build python code with Bazel
2050
* Parse python docstring example as code snippet
2151
* correct python_requires in setup
22-
* Fix grammar typo in exceptions.py (#7657)
52+
* Fix grammar typo in exceptions.py (#7657)
2353
* Fixed references to chromedriver website
2454

2555
Selenium 4.0 Alpha 3
@@ -750,4 +780,3 @@ Selenium 2 Beta 2
750780
* Improved IEDriver
751781
* Basic Authentication support for Selenium 2
752782
* Ability to have multiple Firefox instances
753-

py/docs/source/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ If you have `pip <https://pip.pypa.io/>`_ on your system, you can simply install
3535

3636
pip install -U selenium
3737

38-
Alternately, you can download the source distribution from `PyPI <https://pypi.org/project/selenium/#files>`_ (e.g. selenium-4.0.0a5.tar.gz), unarchive it, and run::
38+
Alternately, you can download the source distribution from `PyPI <https://pypi.org/project/selenium/#files>`_ (e.g. selenium-4.0.0a6.tar.gz), unarchive it, and run::
3939

4040
python setup.py install
4141

py/selenium/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@
1616
# under the License.
1717

1818

19-
__version__ = "4.0.0a5"
19+
__version__ = "4.0.0a6"

py/selenium/webdriver/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,4 @@
3737
from .common.touch_actions import TouchActions # noqa
3838
from .common.proxy import Proxy # noqa
3939

40-
__version__ = '4.0.0a5'
40+
__version__ = '4.0.0a6'

py/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
setup_args = {
2828
'cmdclass': {'install': install},
2929
'name': 'selenium',
30-
'version': "4.0.0a5",
30+
'version': "4.0.0a6",
3131
'license': 'Apache 2.0',
3232
'description': 'Python bindings for Selenium',
3333
'long_description': open(join(abspath(dirname(__file__)), "README.rst")).read(),

0 commit comments

Comments
 (0)