Skip to content

Commit 008ecfd

Browse files
committed
FIX CHANGELOGS BEFORE MERGING!
Update versions and change logs to release Selenium 4.30.0
1 parent fa86dfa commit 008ecfd

File tree

19 files changed

+90
-24
lines changed

19 files changed

+90
-24
lines changed

dotnet/CHANGELOG

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,31 @@
1+
v4.30.0
2+
======
3+
* [dotnet] Fix dev environment to run tests on Windows/MacOS (#15303)
4+
* [dotnet] Fix sporadic build issue with selenium manager in msbuild
5+
* [dotnet] Increment `WebDriver` towards nullability (#15228)
6+
* [dotnet] Do not warn when passing in null driver paths to driver service (#15328)
7+
* [dotnet] Add `SystemClock` singleton (#15285)
8+
* [dotnet] Remove obsoleted members/types for 4.30 (#15342)
9+
* [dotnet] Parse response before deserialization (#15268)
10+
* [dotnet] Address some nullability warnings in driver options
11+
* [dotnet] Make internal console writer more flexible via taking TextWriter only (#15346)
12+
* [dotnet] Annotate nullability on most remaining types (#15257)
13+
* [dotnet] Annotate CDP as AOT-unsafe (#14637)
14+
* [dotnet] Fix placement of obsolete argument in ConsoleLogHandler
15+
* [dotnet] Annotate nullability on more of `WebElement` (#15230)
16+
* [dotnet] Annotate nullable reference types on CDP-generated code (#15255)
17+
* [dotnet] Simplify and nullable annotate `DriverFinder` (#15232)
18+
* [dotnet] Annotate nullability on `WebDriver.SessionId` (#15350)
19+
* [dotnet] Enable nullability on remote file download APIs (#15351)
20+
* [dotnet] Annotate nullability on elements and `WebDriver` (#15352)
21+
* [dotnet] Annotate nullability on capabilities types (#15353)
22+
* [dotnet] Enable Nullable Reference Types (#15354)
23+
* [dotnet] Trim away CDP when publishing AOT apps (#15217)
24+
* [dotnet] [bidi] Order command properties in json to simplify logs reading
25+
* [dotnet] [bidi] Add SetFiles command in Input module (#15392)
26+
* [dotnet] [bidi] Added UnhandledPromptBehavior for new session capability (#15391)
27+
* Update supported versions for Chrome DevTools
28+
129
v4.29.0
230
======
331
* Add CDP for Chrome 133 and remove 130

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

java/CHANGELOG

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
v4.30.0
2+
======
3+
* [grid] remove firefox devtools leftovers #15323
4+
* [grid] remove indirection in cache structures
5+
* [grid] remove not reachable code
6+
* [grid] Add traces for event stop session in Node (#15348)
7+
* [grid] Introduced new variable for server start timeout (#15345)
8+
* Update supported versions for Chrome DevTools
9+
110
v4.29.0
211
======
312
* Add CDP for Chrome 133 and remove 130

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

javascript/node/selenium-webdriver/CHANGES.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 4.30.0
2+
3+
- Bumping versions to nightly
4+
- Update supported versions for Chrome DevTools
5+
16
## 4.29.0
27

38
- Add CDP for Chrome 133 and remove 130

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.30.0-nightly202502201302",
3+
"version": "4.30.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.30.0.202502201302"
65+
SE_VERSION = "4.30.0"
6666

6767
BROWSER_VERSIONS = [
6868
"v85",

py/CHANGES

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
Selenium 4.30.0
2+
* Bumping versions to nightly
3+
* [py] expected_conditions: correct type annotation (#15337)
4+
15
Selenium 4.29.0
26
* Add CDP for Chrome 133 and remove 130
37
* [py] Disable strict time stamps in Firefox profile (#15141)

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.30'
6060
# The full version, including alpha/beta/rc tags.
61-
release = '4.30.0.202502201302'
61+
release = '4.30.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.30.0.202502201302"
19+
__version__ = "4.30.0"

0 commit comments

Comments
 (0)