Skip to content

Commit 46bfff6

Browse files
committed
WIP - rough auto-update of changelog, please edit
1 parent 8f1837e commit 46bfff6

File tree

6 files changed

+178
-0
lines changed

6 files changed

+178
-0
lines changed

dotnet/CHANGELOG

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
v4.34.0
2+
======
3+
* [bidi] Add AcceptInsecureCerts and Proxy options when create new user context (#15795)
4+
* [bidi] Actively use TryGetValue while processing incoming messages
5+
* [bidi] Declare allowed nullable objects in constructors type (#15809)
6+
* [bidi] Simplify modules namespace (breaking change) (#15820)
7+
* Remove unnecessary stylecop files (#15824)
8+
* Align CS projects name to understand the editing context (#15843)
9+
* [bidi] Implicit conversion screenshot to bytes
10+
* [bidi] Adjust proxy configuration for new sessions (#15914)
11+
* [bidi] Add OnHistoryUpdated event (#15916)
12+
* Mark FTP proxy support as deprecated (#15925)
13+
* [bidi] Protect DTO types from inheritance (#15919)
14+
* update devtools versions
15+
116
v4.33.0
217
======
318
* Add CDP for Chrome 137 and remove 134

java/CHANGELOG

Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,68 @@
1+
v4.34.0
2+
======
3+
* Removing deprecated BrowsingContext constructor.
4+
* [grid] Silent fail on invalid log level (#15796)
5+
> * [grid] Silent fail on invalid log level
6+
> Fixing issue where providing an invalid log level to Grid will fail silently.
7+
> Since the logger is not yet configured a stacktrace with the exception is printed to console and we continue since the default log level is already configured.
8+
> Fixes #15790
9+
> * [grid] Silent fail on invalid log level
10+
> Adding link to logging levels as suggested by @diemol and formatting.
11+
> * [grid] Silent fail on invalid log level
12+
> Adding hardcoded log levels as suggested by review.
13+
* Removing deprecated OsProcess class.
14+
* Removing deprecated CommandLine class.
15+
* Removing deprecated ContextAware interface.
16+
* Fixing `getCredential` for VirtualAuthenticator
17+
* Caching the size/length in loops to slightly improve performance (#15852)
18+
> caching the size/length in loops to slightly improve performance and readability
19+
* [feature] add method RemoteWebDriver.isDownloadsEnabled() (#15868)
20+
* [refactor] use constant `CapabilityType.ENABLE_DOWNLOADS` instead of hard-coded value `se:downloadsEnabled` (#15867)
21+
> [refactor] use constant CapabilityType.ENABLE_DOWNLOADS instead of hard-coded value "se:downloadsEnabled"
22+
* [bidi] Add new fields of BrowsingContextInfo
23+
* [bidi]Add method to get browsing context tree with root
24+
* Fix code formatting (#15903)
25+
* [grid] Add GreedySlotSelector as a built-in slot-selector option (#15897)
26+
* deprecate FtpProxy (#15907)
27+
> Deprecates FTP Proxy as it is no longer supported by browsers
28+
* [grid] Add config `blocked-routes` and specific `blocked-delete-session` in Router (#15920)
29+
* Revert "[grid] Add config `blocked-routes` and specific `blocked-delete-session` in Router" (#15921)
30+
* [BiDi] implement browsingContext.historyUpdated (#15901)
31+
* [refactor] Remove Empty Space in CommandPayload (#15934)
32+
> - Remove an empty space in the constructor.
33+
> [skip ci]
34+
* [FEAT] Add macOS-specific keys (OPTION, FN) to Keys enum for improved… (#15910)
35+
> * [FEAT] Add macOS-specific keys (OPTION, FN) to Keys enum for improved platform support
36+
> * [FEAT] These additions (RIGHT_SHIFT, RIGHT_CONTROL, RIGHT_ALT, RIGHT_COMMAND) follow conventions already in use by ChromeDriver and allow for more accurate key simulations. While not currently in the W3C WebDriver specification, they represent a practical standard used in the field.
37+
> * [FEAT] Add macOS-specific and ChromeDriver-aligned extended keys
38+
> - Added RIGHT_SHIFT, RIGHT_CONTROL, RIGHT_ALT, and RIGHT_COMMAND using Unicode PUA codes observed in ChromeDriver.
39+
> - Included symbolic macOS keys OPTION and FN, marked with TODO comments for future validation against W3C WebDriver spec.
40+
> - Updated class-level Javadoc to clarify the role of PUA mappings and their interoperability considerations.
41+
> These additions improve platform representation and lay the groundwork for consistent macOS key handling.
42+
> * Format script
43+
* [BiDi] implement web extensions (#15660)
44+
> * [BiDi] implement web extensions
45+
> * cleanup
46+
> * fix spotbug
47+
* Made ``JsonToWebElementConverter`` methods/fields protected (#15885)
48+
> Made ``JsonToWebElementConverter`` methods protected
49+
> so that the class can be properly extended
50+
* [grid] Session can be deleted via Grid UI (#15808)
51+
> * [grid] Session can be deleted via Grid UI
52+
> * Add notification on the flag to disable session deletion
53+
> * Use Node config to disable delete session on UI
54+
> * Add unit test
55+
> * Run format
56+
> * Disable by default
57+
> * Run format
58+
* Feat 14291/jspecify nullable annotation (#15924)
59+
* Use Environment variable to set driver location (#15653)
60+
> * Use environment variable to set driver locations
61+
> Related to #14045
62+
> * Fix formatting
63+
> * Repinning deps
64+
* update devtools versions
65+
166
v4.33.0
267
======
368
* Add CDP for Chrome 137 and remove 134

javascript/selenium-webdriver/CHANGES.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
## 4.34.0
2+
3+
- Bumping to nightly versions
4+
- Add warning when ftp proxy is used
5+
> Related to #15905
6+
- Update dependency ws to ^8.18.2 (#15780)
7+
> * Update dependency ws to ^8.18.2
8+
> * Repin dependencies
9+
- Update dependency sinon to ^19.0.5 (#15771)
10+
> * Update dependency sinon to ^19.0.5
11+
> * Repin dependencies
12+
- Update dependency multer to v1.4.5-lts.2 (#15770)
13+
> * Update dependency multer to v1.4.5-lts.2
14+
> * Repin dependencies
15+
- [JS] specify min required node versiton to >=20.0.0
16+
- update devtools versions
17+
- bump versions in preparation for release
18+
119
## 4.33.0
220

321
- [cdp] Add CDP for Chrome 137 and remove 134

py/CHANGES

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,59 @@
1+
Selenium 4.34.0
2+
* Bumping to nightly versions
3+
* Upgrade type hints (#15784)
4+
> - Upgrade type hints to Python 3.9+ syntax throughout codebase
5+
> - Replace legacy List, Dict, Tuple, etc. with built-in generics (e.g., list, dict, tuple)
6+
> - Move type hints to use collections.abc where appropriate
7+
* Fix type error for attribute in remote_connection.py (#15810)
8+
* Fixed type hint (#15814)
9+
> Fixed type hint in selenium/webdriver/common/bidi/common.py
10+
* Fix import for type hint (#15817)
11+
* [bidi]: add `enable_webextensions` option for chromium-based browsers (#15794)
12+
> * add `enable_webextensions` method and exception for chrome webextensions
13+
> * add chrome test for webextension from path
14+
> * add separate test class and driver for chrome/edge tests
15+
* Fix type annotation errors (#15841)
16+
> Fixes type annotation errors in storage.py, options.py, and virtual_authenticator.py
17+
* Fixed type annotation issues (#15847)
18+
* [bidi]: implement bidi permissions module (#15830)
19+
> * implement bidi permissions module
20+
> * add tests
21+
> Thank you @navin772
22+
* Fixed mypy error and change source var (#15853)
23+
* do not use global var for devtools, allows multiple devtools to run (#15881)
24+
* Fix : Mypy type annotation errors - 2 (#15848)
25+
> * Fix : Mypy type annotation errors
26+
> * Reverted changes in py\selenium\webdriver\common\bidi\browser.py
27+
> * Fix: two more files
28+
> * Remove browser.py from PR
29+
> * make changes as per bidi spec
30+
* [bidi]: add `timestamp` to `HistoryUpdatedParams` class (#15892)
31+
> add `timestamp` to `HistoryUpdatedParams` class
32+
* Fix possible TypeError in expected conditions (#15891)
33+
* Refactor server.py to use properties (#15840)
34+
* Add properties (getter/setter) for service args (#15889)
35+
* Fix error handler for non-json response bodies (#15887)
36+
> Fix error handler `check_response` for non-json responses from webdriver so it doesn't raise a cryptic error.
37+
* [bidi]: add BiDi script module commands (#15880)
38+
> * add bidi script commands
39+
> * add bidi script tests
40+
> * improve some test assertions
41+
> * modify tests for `result_ownership` and `serialization_options`
42+
> * modify tests for `disown` and `user_activation`
43+
> * resolve mypy type errors
44+
> * change to private methods
45+
* Fix: Mypy type annotation errors in remote/webdriver.py (#15900)
46+
* Deprecate support for FTP proxies (#15906)
47+
* Type hint cleanup (#15917)
48+
> Moves some types from typing to collections.abc, and replaces some type hints with native data types.
49+
* Adding Note to enable_webextensions() regarding CDP (plus gen docstring updates) (#15927)
50+
> * Adding Note to enable_webextensions() regarding CDP (plus some docstring updates)
51+
> * format.sh
52+
> * update error message
53+
> * Update py/selenium/webdriver/chromium/options.py
54+
> Per @navin772 suggestions
55+
* bump versions in preparation for release
56+
157
Selenium 4.33.0
258
* Add CDP for Chrome 137 and remove 134
359
* [bidi]: add bidi storage module (#15669)

rb/CHANGES

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
4.34.0 (2025-06-25)
2+
=========================
3+
* Bumping to nightly versions
4+
* Fix child process terminate method when a process is already terminated (#15789)
5+
> * [build] allow tests tagged exclusive-if-local to run on rbe
6+
> * Add rescue and test for child_process terminate method
7+
> * Add rescue for kill method
8+
> * guard against windows
9+
> * guard against windows
10+
> * move child process test
11+
> * remove guard
12+
> * Update test
13+
> * add windows guard
14+
> * add windows guard
15+
* Feat 15905/deprecate ftp proxy (#15926)
16+
> * add deprecation warn for ftp proxy type
17+
> * [proxy] Replace deprecation warning for FTP proxy support with logger method
18+
* update devtools versions
19+
* bump versions in preparation for release
20+
121
4.33.0 (2025-05-23)
222
=========================
323
* Add CDP for Chrome 137 and remove 134

rust/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
0.4.34
2+
======
3+
* Electron support in Selenium-Manager (#13954) (#15752)
4+
15
0.4.33
26
======
37
* Replace WMIC commands (deprecated) by WinAPI in Windows (#15363)

0 commit comments

Comments
 (0)