Skip to content

Commit 053c73b

Browse files
committed
update change logs for 4.16
1 parent 82316a7 commit 053c73b

File tree

7 files changed

+113
-1
lines changed

7 files changed

+113
-1
lines changed

cpp/iedriverserver/CHANGELOG

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,11 @@ available via the project downloads page. Changes in "revision" field indicate
99
private releases checked into the prebuilts directory of the source tree, but
1010
not made generally available on the downloads page.
1111

12+
v4.16.0.0
13+
========
14+
* Fixed typos in logged messages (#13120)
15+
16+
1217
v4.14.0.0
1318
========
1419
* Fix potential null pointer access in CookieManager

dotnet/CHANGELOG

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
v4.16.0
2+
======
3+
4+
* Update rules_dotnet (#13117)
5+
* Fix WSS scheme determination for DevTools connection (#13131)
6+
* Remove System.Drawing.Common as package dependency (#12781)
7+
* Add Runfiles support to bazel
8+
* Added TargetAttached datastructure to DevTools Target (#13175)
9+
* Allow overriding default Actions duration (#13229)
10+
* Add internal logging (#13140)
11+
* Add Chrome 120 and remove 117
12+
113
v4.15.0
214
======
315

java/CHANGELOG

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,38 @@
1+
v4.16.0
2+
======
3+
4+
* Allow stereotype to always allow browser version of "stable"
5+
* [bidi] Listen to channel message
6+
* [bidi] Add realm related events
7+
* Move the module-info.class to the correct place
8+
* Allow external uri to be configurable for components that support server functionality - #12491 (#12508)
9+
* Close the streams after I/O failure #13096
10+
* Fix events without parameters #13109
11+
* Chrome-based browsers can do CDP-based script pinning (#13125)
12+
* Ensure the complete output is read #13091
13+
* Fixed reading array parameters in the CDP client
14+
* Keep HttpClient alive until unused #12558 (#12978)
15+
* Implement Safe Casting in getPermissions Method (#13143)
16+
* Fix null request in case of chunked request (#13113)
17+
* Set a name for thread started to forward output of external processes (#13142)
18+
* Allow resuing devtools instance with JDK 11 client (#12882, #13165)
19+
* Ensure all print options are sent as map instead of object
20+
* Allow setting print options page ranges using list
21+
* Fix bug replacing setDownloadThroughput for setUploadThroughput (#13187)
22+
* Add macOS 14.0 to Platform enum
23+
* Do not return linux Selenium Manager by default
24+
* [bidi] Add traverse history command
25+
* Make the json parsing exception text more helpful
26+
* Add javadoc to support event classes (#13199)
27+
* Packages should be opened to modules #13217
28+
* Add more tests for java support event class (#13198)
29+
* Add a `/quitquitquit` endpoint to the test server to make killing it easy
30+
* Grid vnc session is not using the --sub-path argument (#12791, #13219)
31+
* Remove retrying on timeout exception (#13224, #12975)
32+
* Must not request further invocations for a broken websocket
33+
* Moved org.openqa.selenium.remote.http.jdk to selenium-http (#13243)
34+
* Add Chrome 120 and remove 117 for CDP
35+
136
v4.15.0
237
======
338

javascript/node/selenium-webdriver/CHANGES.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
## 4.16.0
2+
3+
#### :bug: Bug fix
4+
5+
* Fix logging levels in http.js and webdriver.js (#13098)
6+
* Remove unused targets from the JS tree (#13129)
7+
8+
* #### :nail_care: Polish
9+
10+
* Add CDP v120 and remove v117
11+
12+
113
## 4.15.0
214

315
#### :bug: Bug fix

py/CHANGES

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
Selenium 4.16.0
2+
* Fix inadvertent code change in mutation_event
3+
* Fix bug in using SE_MANAGER_PATH
4+
* Fix bug where downloaded file was not getting unzipped
5+
* Add more logging to driver startup
6+
* Fix WebDriverWait type hints for WebElement (#13108)
7+
* Clean up of usage of executable path in services
8+
* Don't leak a file descriptor to os.devnull by default (#13162)
9+
* Allow bsd operating systems to use the linux binary
10+
* Close trio memory channel sender after the driver is quit (#13151)
11+
* Remote webdriver cannot match Chromium browser name for remote connection
12+
* Remove deprecated reuse_service parameter from Safari driver constructor
13+
* Remove deprecated quiet parameter from Safari service constructor
14+
* Ensure all drivers stop service during driver quit
15+
* Update chromium driver constructors for readability
16+
* Add CDP for Chrome 120 and remove 117
17+
18+
119
Selenium 4.15.2
220
* Fix bug for unzipping downloaded files
321

rb/CHANGES

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,23 @@
1-
4.15.0 (unreleased)
1+
4.16.0 (unreleased)
2+
=========================
3+
4+
Ruby:
5+
* Add RBS files to Ruby (#12844)
6+
* Convert binary locations for cygwin (#12618)
7+
* Allow Selenium Manager to work with Unix (#13161)
8+
* Extend RBS support for logger and log entry (#13192)
9+
* Update rules_ruby to the latest version (#13235)
10+
11+
BiDi:
12+
* Released selenium-devtools 0.120.0 (supports CDP v85, v118, v119, v120)
13+
14+
Chrome:
15+
* Fix http proxy configuration for chrome (#13093)
16+
17+
Firefox:
18+
* Delete 'lock' file in FF profile (#13090)
19+
20+
4.15.0 (2023-11-01)
221
=========================
322

423
* Do not set browser binary in selenium manager if it is an empty string (#12738)

rust/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
0.4.16
2+
======
3+
* Use online mapping to discover proper geckodriver version (#11671) (#13133)
4+
* Refactor logic to discover driver version in Firefox module using match
5+
* Refactor logic to discover driver version and download browser if necessary
6+
* Replace function for creating parent path if not exists
7+
* Fix condition to download browser in discover local browser logic
8+
* Use drivers found in PATH only when browser version is not specified (#13159)
9+
* Panic if JSON output is used but no entries are collected (#13101)
10+
* Fix webview2 support when browser path is set (#13204)
11+
112
0.4.15
213
======
314
* Include mirror arguments to change default online repository URLs (#11687)

0 commit comments

Comments
 (0)