Skip to content

Commit 578449c

Browse files
committed
[py] Bump to 4.8.3 and CHANGES update
1 parent c252aff commit 578449c

File tree

6 files changed

+9
-5
lines changed

6 files changed

+9
-5
lines changed

py/BUILD.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ compile_pip_requirements(
1616
requirements_txt = ":requirements_lock.txt",
1717
)
1818

19-
SE_VERSION = "4.8.2"
19+
SE_VERSION = "4.8.3"
2020

2121
BROWSER_VERSIONS = [
2222
"v85",

py/CHANGES

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@ Selenium 4.8.3
22
* Add fine grained control for arguments provided to service subprocesses by passing a `popen_kw` mapping for all services.
33
* `Options` classes now allow `timeout` to be set partially and no longer raise an exception when all values are not provided. (#11623)
44
* No longer sending `SIGKILL` to subprocesses in instances where `SIGTERM` was successful within 60 seconds.
5+
* Add CDP files for v111 and remove v108
6+
* Pass default to `pop` when parsing service popen_kw
7+
* Using json output with Selenium Manager
8+
* Sphinx config update to keep invoked methods and shorter aliases in documentation (#11802)
59

610
Selenium 4.8.2
711
* Update tox.ini for a valid "isort" version (#11667)

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.8.2.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.8.3.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.8.2"
19+
__version__ = "4.8.3"

py/selenium/webdriver/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
from .wpewebkit.options import Options as WPEWebKitOptions # noqa
3737
from .wpewebkit.webdriver import WebDriver as WPEWebKit # noqa
3838

39-
__version__ = "4.8.2"
39+
__version__ = "4.8.3"
4040

4141
# We need an explicit __all__ because the above won't otherwise be exported.
4242
__all__ = [

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.8.2",
30+
'version': "4.8.3",
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)