Skip to content

Commit 5445c8d

Browse files
authored
Merge branch 'release-preparation-4.29.0' into rb_fix_dependancy_issue
2 parents 5e5bf3f + 7e7612b commit 5445c8d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

60 files changed

+558
-207
lines changed

.github/workflows/bazel.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ on:
7070
jobs:
7171
bazel:
7272
name: ${{ inputs.name }}
73-
runs-on: ${{ format('{0}-latest', inputs.os) }}
73+
runs-on: ${{ contains(inputs.os, '-') && inputs.os || format('{0}-latest', inputs.os) }}
7474
env:
7575
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
7676
SEL_M2_USER: ${{ secrets.SEL_M2_USER }}

.github/workflows/ci-ruby.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ jobs:
5858
ruby-version: ${{ matrix.ruby-version }}
5959
run: >
6060
bazel test
61+
--keep_going
6162
--build_tests_only
6263
--test_size_filters small
6364
//rb/spec/...
@@ -86,6 +87,7 @@ jobs:
8687
os: ${{ matrix.os }}
8788
run: >
8889
bazel test
90+
--keep_going
8991
--build_tests_only
9092
--flaky_test_attempts 3
9193
--local_test_jobs 1
@@ -112,6 +114,7 @@ jobs:
112114
java-version: 11
113115
run: >
114116
bazel test
117+
--keep_going
115118
--build_tests_only
116119
--flaky_test_attempts 3
117120
--local_test_jobs 1

AUTHORS

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -267,6 +267,7 @@ elgatov <[email protected]>
267267
Eli Flanagan <[email protected]>
268268
Elias Faxö <[email protected]>
269269
Ellis Percival <[email protected]>
270+
Emil Hemdal <[email protected]>
270271
Enrique Daimiel <[email protected]>
271272
272273
Eran Messeri <[email protected]>
@@ -602,6 +603,7 @@ Michael Render <[email protected]>
602603
Michael Tamm <[email protected]>
603604
Michael Zhou <[email protected]>
604605
Michal Čihař <[email protected]>
606+
Michał Górny <[email protected]>
605607
Michał Herda <[email protected]>
606608
Michele Sama
607609
Mickaël Schoentgen <[email protected]>
@@ -648,6 +650,7 @@ native-api <[email protected]>
648650
649651
Naveen Singh <[email protected]>
650652
Navin Chandra <[email protected]>
653+
Navin Chandra <[email protected]>
651654
Navin Chandra <[email protected]>
652655
Neil Carvalho <[email protected]>
653656
Nelson Sproul <[email protected]>
@@ -889,6 +892,7 @@ Vijendarn Selvarajah <[email protected]>
889892
VijendraEAtech <[email protected]>
890893
Vikas Goel <[email protected]>
891894
VimalRaj Selvam <[email protected]>
895+
Vinaysimha Varma Yadavali <[email protected]>
892896
Vincent Ladeuil <[email protected]>
893897
vinoth959 <[email protected]>
894898
Viren Negi <[email protected]>

MODULE.bazel

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -178,18 +178,18 @@ maven.install(
178178
artifacts = [
179179
"com.beust:jcommander:1.82",
180180
"com.github.javaparser:javaparser-core:3.26.3",
181-
"com.github.spotbugs:spotbugs:4.9.0",
181+
"com.github.spotbugs:spotbugs:4.9.1",
182182
"com.github.stephenc.jcip:jcip-annotations:1.0-1",
183-
"com.google.code.gson:gson:2.11.0",
183+
"com.google.code.gson:gson:2.12.1",
184184
"com.google.guava:guava:33.4.0-jre",
185185
"com.google.auto:auto-common:1.2.2",
186186
"com.google.auto.service:auto-service:1.1.1",
187187
"com.google.auto.service:auto-service-annotations:1.1.1",
188188
"com.google.googlejavaformat:google-java-format:jar:1.25.2",
189189
"com.graphql-java:graphql-java:22.3",
190190
"dev.failsafe:failsafe:3.3.2",
191-
"io.grpc:grpc-context:1.69.1",
192-
"io.lettuce:lettuce-core:6.5.2.RELEASE",
191+
"io.grpc:grpc-context:1.70.0",
192+
"io.lettuce:lettuce-core:6.5.3.RELEASE",
193193
"io.netty:netty-buffer",
194194
"io.netty:netty-codec-http",
195195
"io.netty:netty-codec-http2",

Rakefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ JAVA_RELEASE_TARGETS = %w[
9999
//java/src/org/openqa/selenium/chromium:chromium.publish
100100
//java/src/org/openqa/selenium/devtools/v131:v131.publish
101101
//java/src/org/openqa/selenium/devtools/v132:v132.publish
102-
//java/src/org/openqa/selenium/devtools/v130:v130.publish
102+
//java/src/org/openqa/selenium/devtools/v133:v133.publish
103103
//java/src/org/openqa/selenium/devtools/v85:v85.publish
104104
//java/src/org/openqa/selenium/edge:edge.publish
105105
//java/src/org/openqa/selenium/firefox:firefox.publish
@@ -471,7 +471,7 @@ namespace :node do
471471

472472
desc 'Update JavaScript changelog'
473473
task :changelog do
474-
header = "## #{node_version}"
474+
header = "## #{node_version}\n"
475475
update_changelog(node_version, 'javascript', 'javascript/node/selenium-webdriver/',
476476
'javascript/node/selenium-webdriver/CHANGES.md', header)
477477
end
@@ -790,7 +790,7 @@ namespace :dotnet do
790790
sh 'docfx dotnet/docs/docfx.json'
791791
rescue StandardError
792792
case $CHILD_STATUS.exitstatus
793-
when 130
793+
when 133
794794
raise 'Ensure the dotnet/tools directory is added to your PATH environment variable (e.g., `~/.dotnet/tools`)'
795795
when 255
796796
puts '.NET documentation build failed, likely because of DevTools namespacing. This is ok; continuing'

0 commit comments

Comments
 (0)