From a0e04e15f17ed3f12373f61c363a296d4e06a976 Mon Sep 17 00:00:00 2001 From: titusfortner Date: Mon, 9 Oct 2023 21:22:33 -0500 Subject: [PATCH] update changelogs for 4.14 --- cpp/iedriverserver/CHANGELOG | 4 ++++ dotnet/CHANGELOG | 11 +++++++++++ java/CHANGELOG | 19 +++++++++++++++++++ javascript/node/selenium-webdriver/CHANGES.md | 6 ++++++ py/CHANGES | 5 +++++ rb/CHANGES | 8 ++++++++ rust/CHANGELOG.md | 9 +++++++++ 7 files changed, 62 insertions(+) diff --git a/cpp/iedriverserver/CHANGELOG b/cpp/iedriverserver/CHANGELOG index 6edf3d7361938..2a741efe9b29a 100644 --- a/cpp/iedriverserver/CHANGELOG +++ b/cpp/iedriverserver/CHANGELOG @@ -9,6 +9,10 @@ available via the project downloads page. Changes in "revision" field indicate private releases checked into the prebuilts directory of the source tree, but not made generally available on the downloads page. +v4.14.0.0 +======== +* Fix potential null pointer access in CookieManager + v4.11.0.0 ======== * Ignore process id match when finding the window handle - IE Mode on Edge. (#12246) diff --git a/dotnet/CHANGELOG b/dotnet/CHANGELOG index 8bc9418613b79..1f886b5be5eda 100644 --- a/dotnet/CHANGELOG +++ b/dotnet/CHANGELOG @@ -1,3 +1,14 @@ +v4.14.0 +====== +* Add CDP files for v118 and remove v115 +* Normalize selenium manager path (#12823) +* Remove IdentityModel nuget from bazel workspace (#12834) +* Update `rules_dotnet` to the latest version (#12784) +* Rename strong assembly name (#12861) +* Fix ci dotnet build on github actions (#12863) +* Deprecate saving screenshots with different image formats (#12878) +* Remove tools folder not related to selenium (#12899) + v4.13.1 ====== * Fix bug in selenium manager paths to work on mac and linux diff --git a/java/CHANGELOG b/java/CHANGELOG index 9b7c33e42fe33..c267e8c60afad 100644 --- a/java/CHANGELOG +++ b/java/CHANGELOG @@ -1,3 +1,22 @@ +v4.14.0 +====== +* Supported CDP versions: 85, 116, 117, 118 +* Replace the EventAttribute(Value) with an AttributeMap (#12684) +* Add browsing context's capture box and element screenshot commands +* Enable handle user prompt tests for Firefox +* Delete SM binary only when SE_MANAGER_PATH is not set (#12840) +* Shutdown executors created for a single tasks +* Ensure closed socket connection does not prevent freeing up resources +* Remove the unused htmlunit-driver from the unit tests (#12849) +* Ensure proper error message gets logged (#12853) +* Allow setting SSL context in client config for HttpClient (#12874) +* Improve warning when CDP version not found (#12880) +* Ensure retry mechanism does not swallow an exception (#12838) +* Require Java 11 (#12843) +* Reduce log noise at FINE level (#12866) +* Refactor frame method to use isEmpty for list check and String check. (#12894) +* Use new 'getArray' method to extract driver configurations (#12716) + v4.13.0 ====== * Supported CDP versions: 85, 115, 116, 117 diff --git a/javascript/node/selenium-webdriver/CHANGES.md b/javascript/node/selenium-webdriver/CHANGES.md index e65b1bf5c4697..9daefc8200ad5 100644 --- a/javascript/node/selenium-webdriver/CHANGES.md +++ b/javascript/node/selenium-webdriver/CHANGES.md @@ -1,3 +1,9 @@ +## 4.14.0 + +#### :nail_care: Polish + +* Adding CDP v118 and removing v115 + ## 4.13.0 #### :nail_care: Polish diff --git a/py/CHANGES b/py/CHANGES index e0281b1d62f7d..f50ab7fd51358 100644 --- a/py/CHANGES +++ b/py/CHANGES @@ -1,3 +1,8 @@ +Selenium 4.14.0 +* add CDP files for v118 and remove v115 +* use lazy string interpolation for logging calls +* Fix dangling log_output in Service (#12871) + Selenium 4.13.0 * add CDP files for v117 and remove v114 * do not send parameters in payload that are used in endpoint (#12685) diff --git a/rb/CHANGES b/rb/CHANGES index 45da160beff65..2c06c2d4485d1 100644 --- a/rb/CHANGES +++ b/rb/CHANGES @@ -1,3 +1,11 @@ +4.14.0 (Unreleased) +========================= +Ruby: + * allow users to access the full script of the atom directly + +BiDi: + * Released selenium-devtools 0.118.0 (supports CDP v85, v116, v117, v118) + 4.13.1 (2023-09-25) ========================= Ruby: diff --git a/rust/CHANGELOG.md b/rust/CHANGELOG.md index e561296dda1b5..07ffb07bf881b 100644 --- a/rust/CHANGELOG.md +++ b/rust/CHANGELOG.md @@ -1,3 +1,12 @@ +0.4.14 +====== +* Use original browser version in Firefox management logic +* Clean logic for checking driver version +* Avoids resolving symbolic links and consider the cache might not be writable (#12877) +* Include webview2 in Edge module (#12904) +* Capture Rust backtrace in case of error (displayed at DEBUG level) (#12852) +* Automated Edge management (#11681 and #11683) (#12835) + 0.4.13 ====== * Ensure logger is set first so other setters can use it (#12720)