Skip to content

Commit 27f5213

Browse files
authored
[build] Prepare for release of selenium-4.48.0 (#17956)
* bump versions * changelogs updated * rust changelogs updated * update selenium manager versions * update authors file --------- Co-authored-by: Selenium CI Bot <selenium-ci@users.noreply.github.com>
1 parent 857ff4f commit 27f5213

23 files changed

Lines changed: 146 additions & 100 deletions

File tree

.github/ISSUE_TEMPLATE/bug-report.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ body:
5050
id: selenium-version
5151
attributes:
5252
label: What version of Selenium are you currently using?
53-
description: Important! The latest released version of Selenium is 4.47 and we can't fix old versions.
53+
description: Important! The latest released version of Selenium is 4.48 and we can't fix old versions.
5454
placeholder: e.g., 4.17.0
5555
validations:
5656
required: true

AUTHORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -672,6 +672,7 @@ mpurland <mpurland@example.com>
672672
mtrea <32470080+mtrea@users.noreply.github.com>
673673
Mubariz Hajimuradov <mubarizhajimuradov@yahoo.com>
674674
Muhammad Hammad <33136628+mhnaeem@users.noreply.github.com>
675+
munawiki <munawiki@gmail.com>
675676
MustafaAgamy <mostafaagamy1995@gmail.com>
676677
Muthu Kannan
677678
MWschutte <72599545+MWschutte@users.noreply.github.com>

common/selenium_manager.bzl

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -7,34 +7,34 @@ def selenium_manager():
77
http_file(
88
name = "download_sm_linux",
99
executable = True,
10-
sha256 = "adc3edf9400c42f81b25979e8d7a3e58b59a37b00f749437f297104e9829ee03",
11-
url = "https://github.com/SeleniumHQ/selenium_manager_artifacts/releases/download/selenium-manager-bb9e376/selenium-manager-linux",
10+
sha256 = "97df9c7b4aefd1dd1385c81e81543355ca46809f8ec49a20d55a4d0cbac71567",
11+
url = "https://github.com/SeleniumHQ/selenium_manager_artifacts/releases/download/selenium-manager-3f61eec/selenium-manager-linux",
1212
)
1313

1414
http_file(
1515
name = "download_sm_macos",
1616
executable = True,
17-
sha256 = "855ced1b6e95cad3c13bd6839395f7168e20bfab6b2e23459948aa71b71dc0f2",
18-
url = "https://github.com/SeleniumHQ/selenium_manager_artifacts/releases/download/selenium-manager-bb9e376/selenium-manager-macos",
17+
sha256 = "8d7e7d02944c357934540cb87e89b1ec3bac2d63f2fb3118957fa38abb7e4bcb",
18+
url = "https://github.com/SeleniumHQ/selenium_manager_artifacts/releases/download/selenium-manager-3f61eec/selenium-manager-macos",
1919
)
2020

2121
http_file(
2222
name = "download_sm_windows",
2323
executable = True,
24-
sha256 = "96c69f2db247b7d1a8dd05abf6b0dfe05b8769b6410002eb685ae2dd531314cb",
25-
url = "https://github.com/SeleniumHQ/selenium_manager_artifacts/releases/download/selenium-manager-bb9e376/selenium-manager-windows.exe",
24+
sha256 = "79ea01dba38fee92802aea868623de282c42145b32e3b97fd2ff2802e804355d",
25+
url = "https://github.com/SeleniumHQ/selenium_manager_artifacts/releases/download/selenium-manager-3f61eec/selenium-manager-windows.exe",
2626
)
2727

2828
http_file(
2929
name = "download_sm_sbom",
30-
sha256 = "4c7bcf995a4b84f71333c23d70a39bb413e8ec1f99549c7bd93d0b9c8bb29431",
31-
url = "https://github.com/SeleniumHQ/selenium_manager_artifacts/releases/download/selenium-manager-bb9e376/selenium-manager.cdx.json",
30+
sha256 = "a0230dd7a0daba4e047290452288feb7ed05cdfcd890b8ba459e92b1f90ce240",
31+
url = "https://github.com/SeleniumHQ/selenium_manager_artifacts/releases/download/selenium-manager-3f61eec/selenium-manager.cdx.json",
3232
)
3333

3434
http_file(
3535
name = "download_sm_notice",
36-
sha256 = "8b49ca47780b554e727209882d9569a2562f9aecbbc141260ae517dfe7c1f79d",
37-
url = "https://github.com/SeleniumHQ/selenium_manager_artifacts/releases/download/selenium-manager-bb9e376/selenium-manager-THIRD-PARTY-NOTICES.txt",
36+
sha256 = "6ffe344c4bab09c047a9b932f012f795832829b1f38fd97f351b9ea177d437b8",
37+
url = "https://github.com/SeleniumHQ/selenium_manager_artifacts/releases/download/selenium-manager-3f61eec/selenium-manager-THIRD-PARTY-NOTICES.txt",
3838
)
3939

4040
def _selenium_manager_artifacts_impl(_ctx):

dotnet/CHANGELOG

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
v4.48.0
2+
======
3+
* Support CDP versions: v150, v151, v152
4+
* [build] Automated Browser Version Update (major) with CDP (#17910)
5+
* [bidi] Throw in case of unknown discriminator (#17948)
6+
* [bidi] SetMediaFeaturesOverride command in Emulation module (#17953)
7+
18
v4.47.0
29
======
310
* Support CDP versions: v149, v150, v151

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.48.0-nightly202608101808"
3+
SE_VERSION = "4.48.0"
44

55
SUPPORTED_DEVTOOLS_VERSIONS = [
66
"v152",

java/CHANGELOG

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
v4.48.0
2+
======
3+
* Support CDP versions: v150, v151, v152
4+
* [grid] stop forwarding se:remoteUrl past the Node that consumes it (#17908)
5+
* [grid] Forward file upload/download for Kubernetes, Docker and relay sessions (#17914)
6+
* [build] Automated Browser Version Update (major) with CDP (#17910)
7+
* Add warn annotation for undeclared field while JSON coercion (#17917)
8+
19
v4.47.0
210
======
311
* Support CDP versions: v149, v150, v151

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.48.0-SNAPSHOT"
1+
SE_VERSION = "4.48.0"
22
TOOLS_JAVA_VERSION = "17"

javascript/selenium-webdriver/BUILD.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ generate_bidi_library(
122122
],
123123
)
124124

125-
VERSION = "4.48.0-nightly202608101808"
125+
VERSION = "4.48.0"
126126

127127
BROWSER_VERSIONS = [
128128
"v152",

javascript/selenium-webdriver/CHANGES.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
## 4.48.0
2+
3+
- Support CDP versions: v150, v151, v152
4+
- Normalize empty custom locator results (#17851)
5+
- [build] Automated Browser Version Update (major) with CDP (#17910)
6+
- Ensure BiDi is not exposed on Driver (#17926)
7+
- Add serialization and domain layer (#17927)
8+
- [bidi] Add BiDi connection-level event subscription (#17946)
9+
110
## 4.47.0
211

312
- Support CDP versions: v149, v150, v151

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.48.0-nightly202608101808",
3+
"version": "4.48.0",
44
"description": "The official WebDriver JavaScript bindings from the Selenium project",
55
"license": "Apache-2.0",
66
"keywords": [

0 commit comments

Comments
 (0)