Skip to content

Commit c6d12fd

Browse files
authored
Merge branch 'trunk' into dotnet-deprecated-getattribute
2 parents 6659ec5 + efd1ce1 commit c6d12fd

File tree

6 files changed

+10
-5
lines changed

6 files changed

+10
-5
lines changed

py/BUILD.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ compile_pip_requirements(
6262
],
6363
)
6464

65-
SE_VERSION = "4.27.0.dev202410301443"
65+
SE_VERSION = "4.27.0.dev202410311942"
6666

6767
BROWSER_VERSIONS = [
6868
"v85",

py/CHANGES

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
Selenium 4.26.1
2+
* DeprecationWarning raised in default webdriver init (#14690)
3+
* Remote connection use timeout from ClientConfig (#14692)
4+
* Add backward compatibility for AppiumConnection (#14696)
5+
16
Selenium 4.26.0
27
* Add CDP for Chrome 130 and remove 127
38
* Added more internal logging for CDP (#14668)

py/docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
# The short X.Y version.
5959
version = '4.27'
6060
# The full version, including alpha/beta/rc tags.
61-
release = '4.27.0.dev202410301443'
61+
release = '4.27.0.dev202410311942'
6262

6363
# The language for content autogenerated by Sphinx. Refer to documentation
6464
# for a list of supported languages.

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.27.0.dev202410301443"
19+
__version__ = "4.27.0.dev202410311942"

py/selenium/webdriver/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
from .wpewebkit.service import Service as WPEWebKitService # noqa
4545
from .wpewebkit.webdriver import WebDriver as WPEWebKit # noqa
4646

47-
__version__ = "4.27.0.dev202410301443"
47+
__version__ = "4.27.0.dev202410311942"
4848

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

py/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
setup_args = {
2929
'cmdclass': {'install': install},
3030
'name': 'selenium',
31-
'version': "4.27.0.dev202410301443",
31+
'version': "4.27.0.dev202410311942",
3232
'license': 'Apache 2.0',
3333
'description': 'Official Python bindings for Selenium WebDriver.',
3434
'long_description': open(join(abspath(dirname(__file__)), "README.rst")).read(),

0 commit comments

Comments
 (0)