Skip to content

Commit c025a92

Browse files
committed
[java] Updating changelog and bumping version to 4.5.1
1 parent 584d006 commit c025a92

File tree

4 files changed

+26
-4
lines changed

4 files changed

+26
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -361,7 +361,7 @@ bazel run @maven//:outdated
361361
which is used to manage the Maven dependencies tree (see [rules_jvm_external](https://github.com/bazelbuild/rules_jvm_external) for further details). The command to carry out this step is the following:
362362

363363
```sh
364-
REPIN=1 bazel run @unpinned_maven//:pin
364+
RULES_JVM_EXTERNAL_REPIN=1 bazel run @unpinned_maven//:pin
365365
```
366366

367367
4. (Optional) If we use IntelliJ with the Bazel plugin, we need to synchronize

Rakefile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def release_version
5555
end
5656

5757
def version
58-
"#{release_version}.0"
58+
"#{release_version}.1"
5959
end
6060

6161
# The build system used by webdriver is layered on top of rake, and we call it
@@ -96,7 +96,6 @@ task '//java/test/org/openqa/selenium/environment/webserver:webserver:uber' => [
9696
# Java targets required for release. These should all be java_export targets.
9797
# Generated from: bazel query 'kind(maven_publish, set(//java/... //third_party/...))' | sort
9898
JAVA_RELEASE_TARGETS = %w[
99-
//java/src/com/thoughtworks/selenium/webdriven:webdriven.publish
10099
//java/src/org/openqa/selenium/chrome:chrome.publish
101100
//java/src/org/openqa/selenium/chromium:chromium.publish
102101
//java/src/org/openqa/selenium/devtools/v104:v104.publish

java/CHANGELOG

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
v4.5.1
2+
======
3+
* Supported CDP versions: 85, 104, 105, 106
4+
* Avoid throwing errors once NetworkInterceptor is closed (Fixes #11032)
5+
* Avoiding hiding "internal" package so that selenium-api exports it (Fixes #11069)
6+
* Close the CDP connection on quit for FF (#11109)
7+
* Removed the broken escape (#11110)
8+
* Use the correct base64 decoder (#11107)
9+
* Reduce noisy logs from CDP version finder and made dialect related log debug level (Related to #11088)
10+
* Respect the last flag for binary data (#11108)
11+
* Check that a port truly is free before using it (#11085)
12+
* Make public constant storing capability name for IE options (#11114)
13+
* [grid] Add BiDi endpoint to returned caps if available, adding `se:bidi`
14+
* Ignoring additional headers in the JDK 11 implementation
15+
* Pick random port outside of well-known ranges of ephemeral ports (#10990)
16+
* [grid] Consume in batches from the new session queue (#10987)
17+
* [grid] Deprecate max-threads flag. Add an alternate flag in the Distributor for new session thread
18+
pool size. (#10995)
19+
* [grid] Restoring behavior for session creation interval.
20+
* [grid] Add batch size flag for session queue
21+
* Make sure `EventFiringWebElement` implements all `WebElement` methods (#11144)
22+
* [bidi] Make BaseLogEntry.LogLevel enum public (#11147)
23+
124
v4.5.0
225
======
326
* Supported CDP versions: 85, 104, 105, 106

java/version.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
SE_VERSION = "4.5.0"
1+
SE_VERSION = "4.5.1"

0 commit comments

Comments
 (0)