Skip to content

Commit 5ac945e

Browse files
selenium-cigithub-actions[bot]
authored andcommitted
FIX CHANGELOGS BEFORE MERGING!
Update versions and change logs to release Selenium 4.25.0
1 parent be0870b commit 5ac945e

File tree

16 files changed

+105
-25
lines changed

16 files changed

+105
-25
lines changed

dotnet/CHANGELOG

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,39 @@
1+
v4.25.0
2+
======
3+
--> [dotnet] BiDi implementation (#14318)
4+
* Migrate
5+
* Use CLS compliant long instead of ulong
6+
* Use null instead of default for optional arguments
7+
* Use internal logging in websockettransport
8+
* Use internal logger in broker
9+
* Even with error log level
10+
* Simplify AsBidirectionalContextAsync
11+
* Fix ConfigureAwait in network module
12+
* Hide direct network interception
13+
* Rework public adding interception
14+
* Simplify network interception
15+
* Don't end session when disposing bidi driver
16+
--> [dotnet] Add BiDi OriginalOpener in browsing context info
17+
--> [dotnet] Forward subscription options in browser context for log module
18+
--> [dotnet] Adjust exception message when bidi is not enabled
19+
--> [dotnet] [bidi] Get tree from browsing context as root (#14495)
20+
--> [dotnet] [bidi] Enable implicit ways to specify page ranges for printing
21+
--> [dotnet] Fix formatting files content globally
22+
--> [dotnet] [bidi] Hide context from command options in contextual env
23+
--> [dotnet] Workaround using pre-processor directive (#14499)
24+
* [dotnet] Workaround using pre-processor directive
25+
* Fix formatting?
26+
* Fix formatting
27+
--> [dotnet] [bidi] Rename method of screenshot result to ToByteArray
28+
--> [dotnet] [bidi] Simplify browsing context to be just context
29+
Following to spec, it is implicitly clear that Context is exactly BrowsingCoontext. For RealmContext and UserContext we use fully qualified name.
30+
--> [dotnet] [bidi] Simplify browsing context type enumeration
31+
--> [dotnet] [bidi] Expose BiDi associated reference in browsing context
32+
--> [dotnet] [bidi] Rename entry point AsBidirectional to AsBiDirectional
33+
To keep aligned with naming and with other bindings
34+
--> [dotnet] [bidi] Consistent naming for main BiDi itself
35+
--> Update supported versions for Chrome DevTools
36+
137
v4.24.0
238
======
339
* Migration from `Newtonsoft.Json` to `System.Text.Json` package (#14292)

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.25.0-nightly202408281539"
3+
SE_VERSION = "4.25.0"
44
ASSEMBLY_VERSION = "4.0.0.0"
55
SUPPORTED_NET_STANDARD_VERSIONS = ["netstandard2.0"]
66

java/CHANGELOG

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
v4.25.0
2+
======
3+
--> Update supported versions for Chrome DevTools
4+
15
v4.24.0
26
======
37
* Add "se" prefixed capabilities to session response (#14323)

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

javascript/node/selenium-webdriver/CHANGES.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 4.25.0
2+
--> [js] Updating version to nightly
3+
--> Fix formatting
4+
--> [js][bidi] Fix flaky test for network event
5+
--> Update supported versions for Chrome DevTools
6+
17
## 4.24.1
28

39
- Close CDP websocket connection on driver.quit (#14501)

javascript/node/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.25.0-nightly202409161624",
3+
"version": "4.25.0",
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
@@ -62,7 +62,7 @@ compile_pip_requirements(
6262
],
6363
)
6464

65-
SE_VERSION = "4.25.0.dev202408281539"
65+
SE_VERSION = "4.25.0"
6666

6767
BROWSER_VERSIONS = [
6868
"v85",

py/CHANGES

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
Selenium 4.25.0
2+
--> Setting nightly version
3+
--> fix type errors for `service.py`, `cdp.py`, `webelement.py` and `remote_connection.py` (#14448)
4+
* fix type errors for `service.py`, `cdp.py`, `webelement.py` and `remote_connection.py`
5+
* remove raise error
6+
--> fix type errors for `input_device` and `file_detector` (#14459)
7+
--> fix type errors for `pointer_input.py`, `wheel_input.py` and `firefox/options.py` (#14476)
8+
* fix type errors fro `firefox/options.py`
9+
* fix more mypy errors
10+
--> firefox_profile.py: use `with` statement in zipfile as Python 2.x support is dropped (#14489)
11+
112
Selenium 4.24.0
213
* Allow overriding `GLOBAL_DEFAULT_TIMEOUT` (#14354)
314
* fix mypy errors for `timeouts.py` and `print_page_options.py` (#14362)

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.25'
6060
# The full version, including alpha/beta/rc tags.
61-
release = '4.25.0.dev202408281539'
61+
release = '4.25.0'
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.25.0.dev202408281539"
19+
__version__ = "4.25.0"

0 commit comments

Comments
 (0)