Skip to content

Commit a1c3460

Browse files
authored
Merge branch 'trunk' into py-bidi-emulation
2 parents 363f1d4 + fa3817c commit a1c3460

File tree

20 files changed

+52
-149
lines changed

20 files changed

+52
-149
lines changed

Rakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -964,7 +964,7 @@ namespace :java do
964964
ENV['MAVEN_PASSWORD'] ||= ENV.fetch('SEL_M2_PASS', nil)
965965
read_m2_user_pass unless ENV['MAVEN_PASSWORD'] && ENV['MAVEN_USER']
966966
repo_domain = 'central.sonatype.com'
967-
repo = nightly ? "#{repo_domain}/repository/maven-snapshots" : "ossrh-staging-api.#{repo_domain}/service/local/"
967+
repo = nightly ? "#{repo_domain}/repository/maven-snapshots" : "ossrh-staging-api.#{repo_domain}/service/local/staging/deploy/maven2/"
968968
ENV['MAVEN_REPO'] = "https://#{repo}"
969969
ENV['GPG_SIGN'] = (!nightly).to_s
970970

common/mirror/selenium

Lines changed: 20 additions & 59 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,26 @@
1313
}
1414
]
1515
},
16+
{
17+
"tag_name": "selenium-4.34.0",
18+
"assets": [
19+
{
20+
"browser_download_url": "https://github.com/SeleniumHQ/selenium/releases/download/selenium-4.34.0/selenium-dotnet-4.34.0.zip"
21+
},
22+
{
23+
"browser_download_url": "https://github.com/SeleniumHQ/selenium/releases/download/selenium-4.34.0/selenium-dotnet-strongnamed-4.34.0.zip"
24+
},
25+
{
26+
"browser_download_url": "https://github.com/SeleniumHQ/selenium/releases/download/selenium-4.34.0/selenium-java-4.34.0.zip"
27+
},
28+
{
29+
"browser_download_url": "https://github.com/SeleniumHQ/selenium/releases/download/selenium-4.34.0/selenium-server-4.34.0.jar"
30+
},
31+
{
32+
"browser_download_url": "https://github.com/SeleniumHQ/selenium/releases/download/selenium-4.34.0/selenium-server-4.34.0.zip"
33+
}
34+
]
35+
},
1636
{
1737
"tag_name": "selenium-4.33.0",
1838
"assets": [
@@ -797,64 +817,5 @@
797817
"browser_download_url": "https://github.com/SeleniumHQ/selenium/releases/download/selenium-4.6.0/selenium-server-4.6.0.zip"
798818
}
799819
]
800-
},
801-
{
802-
"tag_name": "selenium-4.5.0",
803-
"assets": [
804-
{
805-
"browser_download_url": "https://github.com/SeleniumHQ/selenium/releases/download/selenium-4.5.0/IEDriverServer_Win32_4.5.0.zip"
806-
},
807-
{
808-
"browser_download_url": "https://github.com/SeleniumHQ/selenium/releases/download/selenium-4.5.0/IEDriverServer_x64_4.5.0.zip"
809-
},
810-
{
811-
"browser_download_url": "https://github.com/SeleniumHQ/selenium/releases/download/selenium-4.5.0/selenium-dotnet-4.5.0.zip"
812-
},
813-
{
814-
"browser_download_url": "https://github.com/SeleniumHQ/selenium/releases/download/selenium-4.5.0/selenium-dotnet-4.5.1.zip"
815-
},
816-
{
817-
"browser_download_url": "https://github.com/SeleniumHQ/selenium/releases/download/selenium-4.5.0/selenium-dotnet-strongnamed-4.5.0.zip"
818-
},
819-
{
820-
"browser_download_url": "https://github.com/SeleniumHQ/selenium/releases/download/selenium-4.5.0/selenium-dotnet-strongnamed-4.5.1.zip"
821-
},
822-
{
823-
"browser_download_url": "https://github.com/SeleniumHQ/selenium/releases/download/selenium-4.5.0/selenium-java-4.5.0.zip"
824-
},
825-
{
826-
"browser_download_url": "https://github.com/SeleniumHQ/selenium/releases/download/selenium-4.5.0/selenium-java-4.5.1.zip"
827-
},
828-
{
829-
"browser_download_url": "https://github.com/SeleniumHQ/selenium/releases/download/selenium-4.5.0/selenium-java-4.5.2.zip"
830-
},
831-
{
832-
"browser_download_url": "https://github.com/SeleniumHQ/selenium/releases/download/selenium-4.5.0/selenium-java-4.5.3.zip"
833-
},
834-
{
835-
"browser_download_url": "https://github.com/SeleniumHQ/selenium/releases/download/selenium-4.5.0/selenium-server-4.5.0.jar"
836-
},
837-
{
838-
"browser_download_url": "https://github.com/SeleniumHQ/selenium/releases/download/selenium-4.5.0/selenium-server-4.5.0.zip"
839-
},
840-
{
841-
"browser_download_url": "https://github.com/SeleniumHQ/selenium/releases/download/selenium-4.5.0/selenium-server-4.5.1.jar"
842-
},
843-
{
844-
"browser_download_url": "https://github.com/SeleniumHQ/selenium/releases/download/selenium-4.5.0/selenium-server-4.5.1.zip"
845-
},
846-
{
847-
"browser_download_url": "https://github.com/SeleniumHQ/selenium/releases/download/selenium-4.5.0/selenium-server-4.5.2.jar"
848-
},
849-
{
850-
"browser_download_url": "https://github.com/SeleniumHQ/selenium/releases/download/selenium-4.5.0/selenium-server-4.5.2.zip"
851-
},
852-
{
853-
"browser_download_url": "https://github.com/SeleniumHQ/selenium/releases/download/selenium-4.5.0/selenium-server-4.5.3.jar"
854-
},
855-
{
856-
"browser_download_url": "https://github.com/SeleniumHQ/selenium/releases/download/selenium-4.5.0/selenium-server-4.5.3.zip"
857-
}
858-
]
859820
}
860821
]

dotnet/selenium-dotnet-version.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# BUILD FILE SYNTAX: STARLARK
22

3-
SE_VERSION = "4.34.0"
3+
SE_VERSION = "4.35.0-nightly202506301117"
44
ASSEMBLY_VERSION = "4.0.0.0"
55
SUPPORTED_NET_STANDARD_VERSIONS = ["netstandard2.0"]
66

java/version.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
SE_VERSION = "4.34.0"
1+
SE_VERSION = "4.35.0-SNAPSHOT"
22
TOOLS_JAVA_VERSION = "17"

javascript/selenium-webdriver/BUILD.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ load("//javascript/private:browsers.bzl", "BROWSERS")
1111

1212
npm_link_all_packages(name = "node_modules")
1313

14-
VERSION = "4.34.0"
14+
VERSION = "4.35.0-nightly202506301117"
1515

1616
BROWSER_VERSIONS = [
1717
"v137",

javascript/selenium-webdriver/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "selenium-webdriver",
3-
"version": "4.34.0",
3+
"version": "4.35.0-nightly202506301117",
44
"description": "The official WebDriver JavaScript bindings from the Selenium project",
55
"license": "Apache-2.0",
66
"keywords": [

py/BUILD.bazel

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

66-
SE_VERSION = "4.34.0"
66+
SE_VERSION = "4.35.0.202506301117"
6767

6868
BROWSER_VERSIONS = [
6969
"v137",

py/CHANGES

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ Selenium 4.34.0
2121
* Deprecate support for FTP proxies (#15906)
2222
* Type hint cleanup (#15917)
2323
* Adding Note to enable_webextensions() regarding CDP (plus gen docstring updates) (#15927)
24+
* Return HTTP response reason when remote connection error occurs (#15942)
25+
* [py] add macOS specific keys to Key enum (#15948)
2426

2527
Selenium 4.33.0
2628
* Add CDP for Chrome 137 and remove 134

py/docs/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,9 @@
6464
# built documents.
6565
#
6666
# The short X.Y version.
67-
version = "4.34"
67+
version = "4.35"
6868
# The full version, including alpha/beta/rc tags.
69-
release = "4.34.0"
69+
release = "4.35.0.202506301117"
7070

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

py/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "selenium"
7-
version = "4.34.0"
7+
version = "4.35.0.202506301117"
88
license = { text = "Apache 2.0" }
99
description = "Official Python bindings for Selenium WebDriver."
1010
readme = "README.rst"

0 commit comments

Comments
 (0)