Skip to content

Commit a340956

Browse files
committed
Fixing changelogs and downgrading Netty to 4.1.121
1 parent 72f93ce commit a340956

File tree

7 files changed

+62
-263
lines changed

7 files changed

+62
-263
lines changed

MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ maven.install(
234234
],
235235
boms = [
236236
"io.opentelemetry:opentelemetry-bom:1.53.0",
237-
"io.netty:netty-bom:4.2.3.Final",
237+
"io.netty:netty-bom:4.1.121.Final",
238238
"org.junit:junit-bom:5.13.4",
239239
],
240240
excluded_artifacts = [

dotnet/CHANGELOG

Lines changed: 1 addition & 66 deletions
Original file line numberDiff line numberDiff line change
@@ -1,93 +1,28 @@
11
v4.35.0
22
======
3+
* Add CDP for Chrome 139 and remove 136
34
* [bidi] Get tree command returns GetTreeResult object (#15978)
45
* [bidi] Initialize internal modules without Lazy (#15979)
5-
* Fix typos (#16032)
66
* [bidi] Add UnhandledPromptBehavior option to create User Context (#16034)
77
* Re-pack Selenium Manager as native dependency (#16048)
8-
> To automatically exclude unnecessary Selenium Manager binaries if runtime platform is known via "RuntimeIdentifier" build property.
9-
> New paths in the package:
10-
> - runtimes/win/native/selenium-manager.exe
11-
> - runtimes/linux/native/selenium-manager
12-
> - runtimes/osx/native/selenium-manager
138
* [bidi] Remove NavigateBack and NavigateForward as not a part… (#16068)
14-
> [bidi] Remove NavigateBack and NavigateForward as not a part of low level
159
* Support IPv6 to find free tcp port via DualMode (#16016)
1610
* Fix GetContext docs in Firefox driver
1711
* Sending GeckoDriver output to a log file. (#16081)
18-
> * Sending GeckoDriver output to a log file.
19-
> Related to #12273
20-
> * Running format script
21-
> * Adding test for log flag in Firefox
22-
> Adding BUILD.bazel to run those tests in CI.
23-
> * Update dotnet/src/webdriver/Firefox/FirefoxDriverService.cs
24-
> * Update dotnet/src/webdriver/Firefox/FirefoxDriverService.cs
2512
* [bidi] Preserve BiDi global options when instantiating BiDi (#16080)
2613
* Fix race condition for .net framework when internal tracing enabled (#16091)
27-
> This exception might be happened in .NET Framework only. On .NET Core it works smoothly.
28-
> System.ArgumentException: An item with the same key has already been added.
29-
> at System.ThrowHelper.ThrowArgumentException(ExceptionResource resource)
30-
> at System.Collections.Generic.Dictionary`2.Insert(TKey key, TValue value, Boolean add)
31-
> at System.Net.Http.Headers.HttpHeaders.AddHeaderToStore(String name, HeaderStoreItemInfo info)
32-
> at System.Net.Http.Headers.HttpHeaders.CreateAndAddHeaderToStore(String name)
33-
> at System.Net.Http.Headers.HttpHeaders.GetOrCreateHeaderInfo(String name, Boolean parseRawValues)
34-
> at System.Net.Http.Headers.HttpHeaders.SetParsedValue(String name, Object value)
35-
> at System.Net.Http.Headers.HttpContentHeaders.get_ContentLength()
36-
> at System.Net.Http.HttpClientHandler.PrepareAndStartContentUpload(RequestState state)
37-
* Minimize internal trace logging for http executor
3814
* [bidi] Make BiDi ctor private
3915
* [bidi] BiDi class is not inheritable
4016
* [bidi] Return EmptyResult object which might be non-empty
4117
* [bidi] Expose internal spec methods to be truly publicly available
4218
* Enabling Chrome and Edge driver services to set log level (#16098)
43-
> * Enabling Chrome and Edge driver services to set log level
44-
> Helps with #12273
45-
> * Format script.
46-
> * Update dotnet/src/webdriver/Chromium/ChromiumDriverService.cs
47-
> * Following convention
4819
* Remove long awaited obsolete members (#16121)
4920
* Change default internal log level to Warn (#16126)
5021
* Truncate log and set profile root in Firefox (GeckoDriver) (#16131)
51-
> * Setting truncated logs and profile root on GeckoDriver
5222
* Add readable timestamps to log in Chromium browsers (#16133)
53-
> * Add readable timestamps to log in Chromium browsers
54-
> * Format script
5523
* add `default` as a value for SameSite (#16129)
56-
* Removing unneeded verification. Done at compile time. (#16139)
57-
> Removing unneeded verification. Done at compile time.
58-
* Renaming variable and converting it to nullable bool? (#16138)
59-
> * Renaming variable and converting it to nullable bool?
60-
> * Update dotnet/src/webdriver/Firefox/FirefoxDriverService.cs
6124
* Enabling drivers to set log to console. (#16097)
62-
> * Enabling drivers to set log to console.
63-
> This will be false by default, following what the
64-
> .NET bindings have usually done.
65-
> Helps with #12273
66-
> * Avoid changing state of variable.
67-
> LogPath takes precedence anyway.
68-
> * Using existing logger functionality.
69-
> Messages will be shown to the console
70-
> using the Logger functionality.
71-
> Adding a test that listens to the
72-
> logger and checks that logs are being
73-
> sent to console.
74-
> Fixing an issue when sending the log
75-
> to a file, as the OnDriverProcessStarted
76-
> method in the base class was not being
77-
> invoked.
78-
> * Running format script.
79-
> * WriteDriverLogToConsole
80-
> Internal variable to avoid using
81-
> the stream when logs are sent to a file.
82-
> Not exposed to the user.
83-
> * Format script.
84-
> * Update dotnet/src/webdriver/DriverService.cs
85-
> * Switching from async tasks to sync threads.
86-
> * Format script.
87-
> * Reading output through async events.
88-
> * Addressing PR comments
8925
* Fix the issue when service wants to write into disposed stream (#16148)
90-
* update devtools versions
9126

9227
v4.34.0
9328
======

java/CHANGELOG

Lines changed: 1 addition & 47 deletions
Original file line numberDiff line numberDiff line change
@@ -1,84 +1,38 @@
11
v4.35.0
22
======
3+
* Add CDP for Chrome 139 and remove 136
34
* Remove deprecated AppCacheStatus enum from the HTML5 package (#15973)
4-
> * Remove deprecated AppCacheStatus enum from the HTML5 package
5-
> * Remove deprecated app cache commands from DriverCommand interface
65
* Removing deprecated FirefoxBinary.java and Executable.java
76
* Removing deprecated `beforeSetScriptTimeout` and `afterSetScriptTimeout`
87
* Removing deprecated SessionStorage commands from ChromiumDriver
9-
> Related to #10397
108
* Removing deprecated SessionStorage commands from FirefoxDriver
11-
> Related to #10397
129
* Removing deprecated SessionStorage class AddWebStorage.java
13-
> Related to #10397
1410
* Removing deprecated WebStorage related classes.
15-
> Related to #10397
1611
* Feat 14291/jspecify nullable annotation edge driver service (#15972)
17-
> * Add Nullable annotations to Builder class fields in EdgeDriverService
18-
> * Add Nullable annotations to parameters in EdgeDriverService and DriverService constructors
19-
> * Refactor EdgeDriverService class documentation and structure
20-
> * Add dependency on jspecify for EdgeDriver
2112
* Removing deprecated LocationContext related classes.
22-
> Related to #10397
2313
* Fix Unicode value for OPTION key in Keys enum (#15966)
24-
> * Fix Unicode value for OPTION key in Keys enum
25-
> * Update java/src/org/openqa/selenium/Keys.java
26-
* Running format script
2714
* Removing old stream collectors required by Java 8 (#15523)
2815
* Use static Patterns for regex-matching (#15499)
29-
> * Use static Patterns for regex-matching
30-
> * Running formatter
31-
> * Undoing removal of Java 8 code
32-
> Will submit separate PR
33-
> * Fixing formatting
3416
* Point made as immutable (#15511)
35-
> Point made immutable
3617
* Feat 14291/jspecify nullable annotation chrome driver såervice (#15998)
37-
> * Add JSpecify nullable annotations to ChromeDriverService parameters
38-
> * applied format.sh
3918
* Add @Nullable annotations to Firefox and Gecko driver service (#15999)
40-
> Add @Nullable annotations to Firefox and Gecko driver service constructors and parameters
4119
* Add JSpecify nullable annotations to SafariDriverService parameters (#16000)
42-
> Add JSpecify nullable annotations to SafariDriverService parameters
4320
* Add @Nullable annotations to InternetExplorerDriverService parameters (#16001)
44-
> Add @Nullable annotations to InternetExplorerDriverService parameters
4521
* use generics for AbstractFindByBuilder to avoid excessive casting (#15526)
4622
* JSpecify annotations for By locators (#14372)
47-
> Add JSpecify annotations for By locators
4823
* JSpecify annotations for capabilities (#14397)
49-
> * JSpecify annotations for capabilities
50-
> * Fixed NullAway errors in capabilities
51-
> * Format script
5224
* Fix various typos in comments (#16022)
5325
* release underlying HttpClient resources #15710
5426
* CDP generate getters to ArrayType #16050
5527
* Fix 15634/ensure driver closed java (#16038)
5628
* [grid] Migrate from Guava's CacheBuilder to Caffeine (#15547)
5729
* [grid] Fix race condition and improve logging in LocalSessionMap (#15370)
58-
> * [grid] Fix race condition in LocalSessionMap and improve logging
59-
> * Add LocalSessionMapTest
60-
> * Add suggestion to improve code
6130
* [BiDi] implement emulation (#16070)
6231
* add `default` as a value for SameSite (#16129)
63-
* Removing unused and deprecated internal class.
6432
* Normalising handling of Shadow Dom elements. (#16149)
65-
> This applies the same logic we already apply
66-
> for findElement and findElements, as `id`,
67-
> `name`, and `className` are not W3C locators.
68-
> Fixes #15961
6933
* [grid] Restructuring classes have stateful data and improve Node health checks in LocalDistributor (#16151)
70-
> * [grid] Restructuring classes have stateful data in LocalDistributor
71-
> * Fix review comment
72-
> * Fix review comment
73-
> * Improve Node health checks by batch runs
7434
* add `websocket-port` test and `--connect-existing` check (#15462)
75-
> * add check for ``--connect-existing`
76-
> * add firefox test for BiDi multiple sessions
77-
> * run `format.sh`
78-
> * use `WebDriverBuilder` for driver
79-
> * add `connectToExisting` and `withWebSocketPort` methods
8035
* [grid] Reduce redundant logs of find slots and retry queue requests by the Distributor (#16155)
81-
* update devtools versions
8236

8337
v4.34.0
8438
======

0 commit comments

Comments
 (0)