Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependency rubocop to v1.75.2 #2253

Open
wants to merge 2 commits into
base: trunk
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Apr 1, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
rubocop (source, changelog) 1.72.2 -> 1.75.2 age adoption passing confidence

Release Notes

rubocop/rubocop (rubocop)

v1.75.2

Compare Source

Changes
Bug fixes
  • #​14041: Fix an error when using ERB templated config YAML with server mode. ([@​koic][])
  • #​14048: Do not emit a warning for a zero-sized file while checking if it is executable. ([@​viralpraxis][])
  • #​14053: Fix incorrect autocorrect for Lint/DeprecatedOpenSSLConstant cipher constant argument is not cbc. ([@​koic][])
  • #​14051: Fix incorrect autocorrect for Style/RedundantCondition when true is used as the true branch and the condition takes arguments. ([@​koic][])
  • #​14062: Fix false positives for Lint/ReturnInVoidContext when returning inside define_method or a nested singleton method. ([@​earlopain][])
  • #​14057: Fix Style/ConditionalAssignment cop error on dynamic string node in branch. ([@​viralpraxis][])
  • #​14047: Fix Style/FrozenStringLiteralComment cop errors on emacs-styled magic comment. ([@​viralpraxis][])

v1.75.1

Compare Source

Changes
  • #​14038: Rename EnforcedStyle: allow_named_parameter to EnforcedStyle: only_numbered_parameters in Style/ItBlockParameter. ([@​koic][])

v1.75.0

Compare Source

New features
Bug fixes
  • #​14022: Fix an error for Style/HashFetchChain when no arguments are given to fetch. ([@​koic][])
  • #​14028: Fix false negative for Layout/MultilineMethodParameterLineBreaks when class method definitions are used. ([@​vlad-pisanov][])
  • #​14027: Fix false negative for Layout/LineLength when autocorrecting class method definitions. ([@​vlad-pisanov][])
  • #​8099: Fix infinite loop between Layout/SpaceAroundOperators and Layout/HashAlignment with EnforcedHashRocketStyle being an array containing table. ([@​dvandersluis][])
  • #​14021: Fix handling of long heredoc lines with SplitStrings enabled. ([@​mauro-oto][])
  • #​13968: Fix InternalAffairs/RedundantDescribedClassAsSubject cop error on missing describe. ([@​viralpraxis][])
  • #​14036: Fix false negative for Lint/ShadowingOuterLocalVariable when block local variable is used inside a condition. ([@​lovro-bikic][])
  • #​13990: Fix a false positive for Lint/UselessAssignment when a variable is reassigned in a different branch. ([@​eugeneius][])
  • #​14012: Fix incorrect autocorrections for Style/SoleNestedConditional. ([@​lovro-bikic][])
  • #​14020: Fix comment autocorrection for Style/IfInsideElse. ([@​lovro-bikic][])
Changes

v1.74.0

Compare Source

New features
Bug fixes
  • #​13969: Fix a false positive for Lint/SharedMutableDefault when capacity keyword argument is used. ([@​koic][])
  • #​13945: Fix a false positive for Style/DoubleNegation when calling define_method/define_singleton_method with a numblock. ([@​earlopain][])
  • #​13971: Fix false alarm for config obsoletion. ([@​koic][])
  • #​13960: Fix a false negative for Lint/ReturnInVoidContext when returning out of a block. ([@​earlopain][])
  • #​13947: Fix a false negative for Lint/UselessConstantScoping for constants defined in class << self. ([@​earlopain][])
  • #​13949: Fix a false negative for Lint/NonLocalExitFromIterator with numblocks. ([@​earlopain][])
  • #​13975: Fix false positives for Style/RedundantCurrentDirectoryInPath when using a complex current directory path in require_relative. ([@​koic][])
  • #​13963: Fix wrong autocorrect for Lint/LiteralAsCondition when the literal is followed by return, break, or next. ([@​earlopain][])
  • #​13946: Fix some false positives for Style/MethodCallWithArgsParentheses with EnforcedStyle: omit_parentheses style and numblocks. ([@​earlopain][])
  • #​13950: Fix sporadic errors about rubocop-rails or rubocop-performance extraction, even if they are already part of the Gemfile. ([@​earlopain][])
  • #​13981: Prevent redundant plugin loading when a duplicate plugin is specified in an inherited config. ([@​koic][])
  • #​13965: Update Lint/RedundantCopDisableDirective to register an offense when cop names are given with improper casing. ([@​dvandersluis][])
  • #​13948: Fix wrong autocorrect for Style/RescueModifier when using parallel assignment and the right-hand-side is not a bracketed array. ([@​earlopain][])
Changes
  • #​12851: Add EnforcedStyleForClasses and EnforcedStyleForModules configuration options to Style/ClassAndModuleChildren. ([@​dvandersluis][])
  • #​13979: Add Mode: conservative configuration to Style/FormatStringToken to make the cop only register offenses for strings given to printf, sprintf, format, and %. ([@​dvandersluis][])
  • #​13977: Allow TLS1_1 and TLS1_2 by default in Naming/VariableNumber to accommodate OpenSSL version parameter names. ([@​koic][])
  • #​13967: Make Lint/RedundantTypeConversion aware of redundant to_d. ([@​koic][])

v1.73.2

Compare Source

Bug fixes
  • #​13942: Fix incorrect disabling of departments when inheriting configuration. ([@​koic][])
  • #​13766: Fix false positives for Style/InverseMethods when using any? or none? with safe navigation operator. ([@​koic][])
  • #​13938: Fix false positives for Style/RedundantCondition when a variable or a constant is used. ([@​koic][])
  • #​13935: Fix a false negative for Style/RedundantFreeze when calling methods that produce frozen objects with numblocks. ([@​earlopain][])
  • #​13928: Fix end pattern with unmatched parenthesis: / (RegexpError) on Ruby 3.2.0. ([@​dvandersluis][])
  • #​13933: Fix wrong autocorrect for Style/KeywordParametersOrder when the arguments are on multiple lines and contain comments. ([@​earlopain][])
Changes

v1.73.1

Compare Source

Bug fixes
  • #​13920: Fix an error for Lint/MixedCaseRange when /[[ ]]/ is used. ([@​koic][])
  • #​13912: Fix wrong autocorrect for Lint/EmptyConditionalBody when assigning to a variable with only a single branch. ([@​earlopain][])
  • #​13913: Fix false positives for Style/RedundantCondition when using when true is used as the true branch and the condition is not a predicate method. ([@​koic][])
  • #​13909: Fix false positive with Layout/ClosingParenthesisIndentation when first parameter is a hash. ([@​tejasbubane][])
  • #​13915: Fix writing generics type of rbs-inline annotation for nested class in Style/CommentedKeyword. ([@​dak2][])
  • #​13916: Fix Lint/LiteralAsCondition acting on the right hand side of && nodes. ([@​zopolis4][])

v1.73.0

Compare Source

New features
Bug fixes
  • #​13867: Fix an error for plugins when not running RuboCop through Bundler. ([@​earlopain][])
  • #​13902: Fix false negative for Style/RedundantSelfAssignment when the method receives a block. ([@​vlad-pisanov][])
  • #​13826: Fix false positives for regex cops when Lint/MixedCaseRange is enabled. ([@​earlopain][])
  • #​13818: Fix false positives for Lint/Void when using operator method call without argument. ([@​koic][])
  • #​13896: Fix a false positive for Style/TrivialAccessors with instance_eval and numblocks. ([@​earlopain][])
  • #​13910: Fix false positives for Style/EndlessMethod when using setter method definitions. ([@​koic][])
  • #​13889: Fix autocorrection for Layout/LineLength with interpolated strings when not on the first line. ([@​dvandersluis][])
  • #​13900: Fix infinite loop between Layout/EmptyLinesAroundAccessModifier and Layout/EmptyLinesAroundBlockBody with EnforcedStyle: no_empty_lines. ([@​dvandersluis][])
  • #​12692: Fix Style/AccessorGrouping with constants. ([@​tejasbubane][])
  • #​13882: Fix Style/RedundantFormat for annotated template strings with missing hash keys. ([@​dvandersluis][])
  • #​13880: Fix Style/RedundantFormat when given double-splatted arguments. ([@​dvandersluis][])
  • #​13907: Don't offer autocorrect for Style/StringConcatenation when numblocks are used. ([@​earlopain][])
  • #​13876: Don't consider require 'pp' to be redundant for Lint/RedundantRequireStatement. ([@​earlopain][])
  • #​13885: Update Style/HashExcept and Style/HashSlice to not register an offense if selecting over the hash value. ([@​dvandersluis][])
Changes
  • #​12948: Add ForbiddenNames configuration to Naming/VariableName to specify names that are forbidden. ([@​dvandersluis][])
  • #​13117: Add partial autocorrect support to Lint/LiteralAsCondition cop to check for redundant conditions. ([@​zopolis4][])
  • #​13892: Allow merging of configured arrays and non-arrays. ([@​sambostock][])
  • #​13833: Add Reference to common params. ([@​sambostock][])
  • #​13890: Update Lint/RedundantTypeConversion to not register an offense when given a constructor with exception: false. ([@​dvandersluis][])
  • #​13729: Update Style/RedundantCondition cop to detect conditional expressions where the true branch is true and suggest replacing them with a logical OR. ([@​datpmt][])

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

Copy link

netlify bot commented Apr 1, 2025

Deploy Preview for selenium-dev ready!

Name Link
🔨 Latest commit 66b514a
🔍 Latest deploy log https://app.netlify.com/sites/selenium-dev/deploys/67f17ea2354eba00085794c3
😎 Deploy Preview https://deploy-preview-2253--selenium-dev.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

Copy link
Contributor

qodo-merge-pro bot commented Apr 1, 2025

CI Feedback 🧐

(Feedback updated until commit 66b514a)

A test triggered by this PR failed. Here is an AI-generated analysis of the failure:

Action: tests (windows, nightly)

Failed stage: Run tests [❌]

Failed test name: Internet Explorer Service logs to file

Failure summary:

The action failed because multiple Ruby RSpec tests in the Internet Explorer browser tests failed:

1. In the first attempt, the test "Actions pauses" failed with a timing issue - expected duration to
be < 3 seconds but got 6.23 seconds.

2. In subsequent attempts, there were connection failures when trying to connect to Internet
Explorer WebDriver:
- "Internet Explorer Service logs to file" failed with connection refused
errors to 127.0.0.1:5556
- "Internet Explorer Service logs to console" failed with similar
connection errors
- "Internet Explorer Options basic options Win10" failed with Net::ReadTimeout

- "Internet Explorer Options basic options Win11" failed with connection refused errors to
127.0.0.1:5555

The tests were run 3 times (with retry mechanism) but failed each time with similar connection
issues.

Relevant error logs:
1:  ##[group]Operating System
2:  Microsoft Windows Server 2022
...

391:  Version: 11.0.26+4
392:  Path: C:\hostedtoolcache\windows\Java_Temurin-Hotspot_jdk\11.0.26-4\x64
393:  ##[endgroup]
394:  Creating settings.xml with server-id: github
395:  Writing to C:\Users\runneradmin\.m2\settings.xml
396:  ##[group]Run nick-invision/[email protected]
397:  with:
398:  timeout_minutes: 20
399:  max_attempts: 3
400:  command: cd examples/ruby
401:  bundle exec rspec
402:  
403:  retry_wait_seconds: 10
404:  polling_interval_seconds: 1
405:  warning_on_retry: true
406:  continue_on_error: false
407:  env:
...

424:  MSYSTEM_CHOST: x86_64-w64-mingw32
425:  MSYSTEM_PREFIX: /ucrt64
426:  PKG_CONFIG_PATH: /ucrt64/lib/pkgconfig:/ucrt64/share/pkgconfig
427:  PROMPT: $P$G
428:  RI_DEVKIT: c:\msys64
429:  JAVA_HOME: C:\hostedtoolcache\windows\Java_Temurin-Hotspot_jdk\11.0.26-4\x64
430:  JAVA_HOME_11_X64: C:\hostedtoolcache\windows\Java_Temurin-Hotspot_jdk\11.0.26-4\x64
431:  ##[endgroup]
432:  ##[group]Attempt 1
433:  C:/hostedtoolcache/windows/Ruby/3.4.2/x64/lib/ruby/3.4.0/win32/registry.rb:2: warning: fiddle/import is found in fiddle, which will no longer be part of the default gems starting from Ruby 3.5.0.
434:  You can add fiddle to your Gemfile or gemspec to silence this warning.
435:  F..................................*............................................***.........*.*....****.....*........*Downloading selenium-server-4.31.0.jar: 0% (20518 / 42755136)Downloading selenium-server-4.31.0.jar: 0% (41188 / 42755136)Downloading selenium-server-4.31.0.jar: 0% (196550 / 42755136)Downloading selenium-server-4.31.0.jar: 1% (442310 / 42755136)Downloading selenium-server-4.31.0.jar: 1% (688070 / 42755136)Downloading selenium-server-4.31.0.jar: 2% (933830 / 42755136)Downloading selenium-server-4.31.0.jar: 2% (1179590 / 42755136)Downloading selenium-server-4.31.0.jar: 3% (1425350 / 42755136)Downloading selenium-server-4.31.0.jar: 3% (1671110 / 42755136)Downloading selenium-server-4.31.0.jar: 4% (1916870 / 42755136)Downloading selenium-server-4.31.0.jar: 5% (2162630 / 42755136)Downloading selenium-server-4.31.0.jar: 5% (2408390 / 42755136)Downloading selenium-server-4.31.0.jar: 6% (2654150 / 42755136)Downloading selenium-server-4.31.0.jar: 6% (2899910 / 42755136)Downloading selenium-server-4.31.0.jar: 7% (3145670 / 42755136)Downloading selenium-server-4.31.0.jar: 7% (3391430 / 42755136)Downloading selenium-server-4.31.0.jar: 8% (3637190 / 42755136)Downloading selenium-server-4.31.0.jar: 9% (3882950 / 42755136)Downloading selenium-server-4.31.0.jar: 9% (4128710 / 42755136)Downloading selenium-server-4.31.0.jar: 10% (4370374 / 42755136)Downloading selenium-server-4.31.0.jar: 10% (4616134 / 42755136)Downloading selenium-server-4.31.0.jar: 11% (4861894 / 42755136)Downloading selenium-server-4.31.0.jar: 11% (5107654 / 42755136)Downloading selenium-server-4.31.0.jar: 12% (5353414 / 42755136)Downloading selenium-server-4.31.0.jar: 13% (5599174 / 42755136)Downloading selenium-server-4.31.0.jar: 13% (5844934 / 42755136)Downloading selenium-server-4.31.0.jar: 14% (6090694 / 42755136)Downloading selenium-server-4.31.0.jar: 14% (6336454 / 42755136)Downloading selenium-server-4.31.0.jar: 15% (6582214 / 42755136)Downloading selenium-server-4.31.0.jar: 15% (6827974 / 42755136)Downloading selenium-server-4.31.0.jar: 16% (7073734 / 42755136)Downloading selenium-server-4.31.0.jar: 17% (7307206 / 42755136)Downloading selenium-server-4.31.0.jar: 17% (7552966 / 42755136)Downloading selenium-server-4.31.0.jar: 18% (7798726 / 42755136)Downloading selenium-server-4.31.0.jar: 18% (8044486 / 42755136)Downloading selenium-server-4.31.0.jar: 19% (8290246 / 42755136)Downloading selenium-server-4.31.0.jar: 19% (8536006 / 42755136)Downloading selenium-server-4.31.0.jar: 20% (8781766 / 42755136)Downloading selenium-server-4.31.0.jar: 21% (9027526 / 42755136)Downloading selenium-server-4.31.0.jar: 21% (9273286 / 42755136)Downloading selenium-server-4.31.0.jar: 22% (9519046 / 42755136)Downloading selenium-server-4.31.0.jar: 22% (9764806 / 42755136)Downloading selenium-server-4.31.0.jar: 23% (9998278 / 42755136)Downloading selenium-server-4.31.0.jar: 23% (10244038 / 42755136)Downloading selenium-server-4.31.0.jar: 24% (10485760 / 42755136)Downloading selenium-server-4.31.0.jar: 25% (10731212 / 42755136)Downloading selenium-server-4.31.0.jar: 25% (10976972 / 42755136)Downloading selenium-server-4.31.0.jar: 26% (11222732 / 42755136)Downloading selenium-server-4.31.0.jar: 26% (11468492 / 42755136)Downloading selenium-server-4.31.0.jar: 27% (11714252 / 42755136)Downloading selenium-server-4.31.0.jar: 27% (11960012 / 42755136)Downloading selenium-server-4.31.0.jar: 28% (12205772 / 42755136)Downloading selenium-server-4.31.0.jar: 29% (12451532 / 42755136)Downloading selenium-server-4.31.0.jar: 29% (12689100 / 42755136)Downloading selenium-server-4.31.0.jar: 30% (12934860 / 42755136)Downloading selenium-server-4.31.0.jar: 30% (13180620 / 42755136)Downloading selenium-server-4.31.0.jar: 31% (13426380 / 42755136)Downloading selenium-server-4.31.0.jar: 31% (13672140 / 42755136)Downloading selenium-server-4.31.0.jar: 32% (13917900 / 42755136)Downloading selenium-server-4.31.0.jar: 33% (14163660 / 42755136)Downloading selenium-server-4.31.0.jar: 33% (14409420 / 42755136)Downloading selenium-server-4.31.0.jar: 34% (14655180 / 42755136)Downloading selenium-server-4.31.0.jar: 34% (14900940 / 42755136)Downloading selenium-server-4.31.0.jar: 35% (15146700 / 42755136)Downloading selenium-server-4.31.0.jar: 36% (15392460 / 42755136)Downloading selenium-server-4.31.0.jar: 36% (15638220 / 42755136)Downloading selenium-server-4.31.0.jar: 37% (15883980 / 42755136)Downloading selenium-server-4.31.0.jar: 37% (16129740 / 42755136)Downloading selenium-server-4.31.0.jar: 38% (16375500 / 42755136)Downloading selenium-server-4.31.0.jar: 38% (16621260 / 42755136)Downloading selenium-server-4.31.0.jar: 39% (16867020 / 42755136)Downloading selenium-server-4.31.0.jar: 40% (17112780 / 42755136)Downloading selenium-server-4.31.0.jar: 40% (17358540 / 42755136)Downloading selenium-server-4.31.0.jar: 41% (17604300 / 42755136)Downloading selenium-server-4.31.0.jar: 41% (17850060 / 42755136)Downloading selenium-server-4.31.0.jar: 42% (18095820 / 42755136)Downloading selenium-server-4.31.0.jar: 42% (18341580 / 42755136)Downloading selenium-server-4.31.0.jar: 43% (18554572 / 42755136)Downloading selenium-server-4.31.0.jar: 43% (18800332 / 42755136)Downloading selenium-server-4.31.0.jar: 44% (19046092 / 42755136)Downloading selenium-server-4.31.0.jar: 45% (19291852 / 42755136)Downloading selenium-server-4.31.0.jar: 45% (19537612 / 42755136)Downloading selenium-server-4.31.0.jar: 46% (19775180 / 42755136)Downloading selenium-server-4.31.0.jar: 46% (20020940 / 42755136)Downloading selenium-server-4.31.0.jar: 47% (20266700 / 42755136)Downloading selenium-server-4.31.0.jar: 47% (20512460 / 42755136)Downloading selenium-server-4.31.0.jar: 48% (20758220 / 42755136)Downloading selenium-server-4.31.0.jar: 49% (20987904 / 42755136)Downloading selenium-server-4.31.0.jar: 49% (21230722 / 42755136)Downloading selenium-server-4.31.0.jar: 50% (21476482 / 42755136)Downloading selenium-server-4.31.0.jar: 50% (21722242 / 42755136)Downloading selenium-server-4.31.0.jar: 51% (21968002 / 42755136)Downloading selenium-server-4.31.0.jar: 51% (22213762 / 42755136)Downloading selenium-server-4.31.0.jar: 52% (22459522 / 42755136)Downloading selenium-server-4.31.0.jar: 53% (22692994 / 42755136)Downloading selenium-server-4.31.0.jar: 53% (22938754 / 42755136)Downloading selenium-server-4.31.0.jar: 54% (23184514 / 42755136)Downloading selenium-server-4.31.0.jar: 54% (23430274 / 42755136)Downloading selenium-server-4.31.0.jar: 55% (23676034 / 42755136)Downloading selenium-server-4.31.0.jar: 55% (23921794 / 42755136)Downloading selenium-server-4.31.0.jar: 56% (24167554 / 42755136)Downloading selenium-server-4.31.0.jar: 57% (24413314 / 42755136)Downloading selenium-server-4.31.0.jar: 57% (24659074 / 42755136)Downloading selenium-server-4.31.0.jar: 58% (24904834 / 42755136)Downloading selenium-server-4.31.0.jar: 58% (25146498 / 42755136)Downloading selenium-server-4.31.0.jar: 59% (25392258 / 42755136)Downloading selenium-server-4.31.0.jar: 59% (25638018 / 42755136)Downloading selenium-server-4.31.0.jar: 60% (25883778 / 42755136)Downloading selenium-server-4.31.0.jar: 61% (26117250 / 42755136)Downloading selenium-server-4.31.0.jar: 61% (26358914 / 42755136)Downloading selenium-server-4.31.0.jar: 62% (26604674 / 42755136)Downloading selenium-server-4.31.0.jar: 62% (26850434 / 42755136)Downloading selenium-server-4.31.0.jar: 63% (27096194 / 42755136)Downloading selenium-server-4.31.0.jar: 63% (27341954 / 42755136)Downloading selenium-server-4.31.0.jar: 64% (27587714 / 42755136)Downloading selenium-server-4.31.0.jar: 65% (27833474 / 42755136)Downloading selenium-server-4.31.0.jar: 65% (28079234 / 42755136)Downloading selenium-server-4.31.0.jar: 66% (28324994 / 42755136)Downloading selenium-server-4.31.0.jar: 66% (28570754 / 42755136)Downloading selenium-server-4.31.0.jar: 67% (28816514 / 42755136)Downloading selenium-server-4.31.0.jar: 67% (29062274 / 42755136)Downloading selenium-server-4.31.0.jar: 68% (29308034 / 42755136)Downloading selenium-server-4.31.0.jar: 69% (29553794 / 42755136)Downloading selenium-server-4.31.0.jar: 69% (29799554 / 42755136)Downloading selenium-server-4.31.0.jar: 70% (30045314 / 42755136)Downloading selenium-server-4.31.0.jar: 70% (30291074 / 42755136)Downloading selenium-server-4.31.0.jar: 71% (30536834 / 42755136)Downloading selenium-server-4.31.0.jar: 71% (30782594 / 42755136)Downloading selenium-server-4.31.0.jar: 72% (31024258 / 42755136)Downloading selenium-server-4.31.0.jar: 73% (31270018 / 42755136)Downloading selenium-server-4.31.0.jar: 73% (31505040 / 42755136)Downloading selenium-server-4.31.0.jar: 74% (31746710 / 42755136)Downloading selenium-server-4.31.0.jar: 74% (31992470 / 42755136)Downloading selenium-server-4.31.0.jar: 75% (32238230 / 42755136)Downloading selenium-server-4.31.0.jar: 75% (32483990 / 42755136)Downloading selenium-server-4.31.0.jar: 76% (32729750 / 42755136)Downloading selenium-server-4.31.0.jar: 77% (32975510 / 42755136)Downloading selenium-server-4.31.0.jar: 77% (33221270 / 42755136)Downloading selenium-server-4.31.0.jar: 78% (33467030 / 42755136)Downloading selenium-server-4.31.0.jar: 78% (33700502 / 42755136)Downloading selenium-server-4.31.0.jar: 79% (33946262 / 42755136)Downloading selenium-server-4.31.0.jar: 79% (34192022 / 42755136)Downloading selenium-server-4.31.0.jar: 80% (34421398 / 42755136)Downloading selenium-server-4.31.0.jar: 81% (34667158 / 42755136)Downloading selenium-server-4.31.0.jar: 81% (34912918 / 42755136)Downloading selenium-server-4.31.0.jar: 82% (35158678 / 42755136)Downloading selenium-server-4.31.0.jar: 82% (35404438 / 42755136)Downloading selenium-server-4.31.0.jar: 83% (35650198 / 42755136)Downloading selenium-server-4.31.0.jar: 83% (35895958 / 42755136)Downloading selenium-server-4.31.0.jar: 84% (36141718 / 42755136)Downloading selenium-server-4.31.0.jar: 85% (36387478 / 42755136)Downloading selenium-server-4.31.0.jar: 85% (36633238 / 42755136)Downloading selenium-server-4.31.0.jar: 86% (36878998 / 42755136)Downloading selenium-server-4.31.0.jar: 86% (37124758 / 42755136)Downloading selenium-server-4.31.0.jar: 87% (37370518 / 42755136)Downloading selenium-server-4.31.0.jar: 87% (37616278 / 42755136)Downloading selenium-server-4.31.0.jar: 88% (37862038 / 42755136)Downloading selenium-server-4.31.0.jar: 89% (38107798 / 42755136)Downloading selenium-server-4.31.0.jar: 89% (38353558 / 42755136)Downloading selenium-server-4.31.0.jar: 90% (38599318 / 42755136)Downloading selenium-server-4.31.0.jar: 90% (38845078 / 42755136)Downloading selenium-server-4.31.0.jar: 91% (39090838 / 42755136)Downloading selenium-server-4.31.0.jar: 92% (39336598 / 42755136)Downloading selenium-server-4.31.0.jar: 92% (39582358 / 42755136)Downloading selenium-server-4.31.0.jar: 93% (39828118 / 42755136)Downloading selenium-server-4.31.0.jar: 93% (40073878 / 42755136)Downloading selenium-server-4.31.0.jar: 94% (40319638 / 42755136)Downloading selenium-server-4.31.0.jar: 94% (40565398 / 42755136)Downloading selenium-server-4.31.0.jar: 95% (40811158 / 42755136)Downloading selenium-server-4.31.0.jar: 96% (41056918 / 42755136)Downloading selenium-server-4.31.0.jar: 96% (41302678 / 42755136)Downloading selenium-server-4.31.0.jar: 97% (41548438 / 42755136)Downloading selenium-server-4.31.0.jar: 97% (41794198 / 42755136)Downloading selenium-server-4.31.0.jar: 98% (42024778 / 42755136)Downloading selenium-server-4.31.0.jar: 98% (42270538 / 42755136)Downloading selenium-server-4.31.0.jar: 99% (42508106 / 42755136)Downloading selenium-server-4.31.0.jar: 99% (42753866 / 42755136).......*******..........**************.............................
436:  Pending: (Failures listed here are expected and do not affect your suite's status)
437:  1) Network waits for downloads
438:  # Test guarded; Guarded by {platform: :windows, reason: "No reason given"};
439:  Failure/Error: expect { Selenium::WebDriver::Wait.new.until { @completed } }.not_to raise_exception
440:  expected no Exception, got #<Selenium::WebDriver::Error::TimeoutError: timed out after 5 seconds> with backtrace:
441:  # ./spec/bidi/cdp/network_spec.rb:92:in 'block (3 levels) in <top (required)>'
...

527:  # ./spec/elements/locators_spec.rb:43
528:  30) Element Locators with relative locators finds element to the left
529:  # These are reference following the documentation example
530:  # ./spec/elements/locators_spec.rb:47
531:  31) Element Locators with relative locators finds element to the right
532:  # These are reference following the documentation example
533:  # ./spec/elements/locators_spec.rb:51
534:  32) Element Locators with relative locators finds near element
535:  # These are reference following the documentation example
536:  # ./spec/elements/locators_spec.rb:55
537:  33) Element Locators with relative locators chains relative locators
538:  # These are reference following the documentation example
539:  # ./spec/elements/locators_spec.rb:59
540:  Failures:
541:  1) Actions pauses
542:  Failure/Error: expect(duration).to be < 3
543:  expected: < 3
544:  got:   6.2379633
545:  # ./spec/actions_api/actions_spec.rb:23:in 'block (2 levels) in <top (required)>'
546:  Finished in 9 minutes 31 seconds (files took 44.47 seconds to load)
547:  185 examples, 1 failure, 33 pending
548:  Failed examples:
549:  rspec ./spec/actions_api/actions_spec.rb:8 # Actions pauses
550:  ##[warning]Attempt 1 failed. Reason: Child_process exited with error code 1
551:  ##[endgroup]
552:  ##[group]Attempt 2
553:  C:/hostedtoolcache/windows/Ruby/3.4.2/x64/lib/ruby/3.4.0/win32/registry.rb:2: warning: fiddle/import is found in fiddle, which will no longer be part of the default gems starting from Ruby 3.5.0.
554:  You can add fiddle to your Gemfile or gemspec to silence this warning.
555:  ...................................*............................................***.........*.*FF..****.....*........*.......*******..........**************.............................
556:  Pending: (Failures listed here are expected and do not affect your suite's status)
557:  1) Network waits for downloads
558:  # Test guarded; Guarded by {platform: :windows, reason: "No reason given"};
559:  Failure/Error: expect { Selenium::WebDriver::Wait.new.until { @completed } }.not_to raise_exception
560:  expected no Exception, got #<Selenium::WebDriver::Error::TimeoutError: timed out after 5 seconds> with backtrace:
561:  # ./spec/bidi/cdp/network_spec.rb:92:in 'block (3 levels) in <top (required)>'
...

647:  # ./spec/elements/locators_spec.rb:43
648:  30) Element Locators with relative locators finds element to the left
649:  # These are reference following the documentation example
650:  # ./spec/elements/locators_spec.rb:47
651:  31) Element Locators with relative locators finds element to the right
652:  # These are reference following the documentation example
653:  # ./spec/elements/locators_spec.rb:51
654:  32) Element Locators with relative locators finds near element
655:  # These are reference following the documentation example
656:  # ./spec/elements/locators_spec.rb:55
657:  33) Element Locators with relative locators chains relative locators
658:  # These are reference following the documentation example
659:  # ./spec/elements/locators_spec.rb:59
660:  Failures:
661:  1) Internet Explorer Service logs to file
662:  Failure/Error: config.after { @driver&.quit }
663:  Errno::ECONNREFUSED:
664:  Failed to open TCP connection to 127.0.0.1:5556 (No connection could be made because the target machine actively refused it. - connect(2) for "127.0.0.1" port 5556)
665:  # ./spec/spec_helper.rb:28:in 'block (2 levels) in <top (required)>'
666:  # ------------------
667:  # --- Caused by: ---
668:  # Errno::ECONNREFUSED:
669:  #   No connection could be made because the target machine actively refused it. - connect(2) for "127.0.0.1" port 5556
670:  #   ./spec/spec_helper.rb:28:in 'block (2 levels) in <top (required)>'
671:  2) Internet Explorer Service logs to console
672:  Failure/Error: config.after { @driver&.quit }
673:  Errno::ECONNREFUSED:
674:  Failed to open TCP connection to 127.0.0.1:5556 (No connection could be made because the target machine actively refused it. - connect(2) for "127.0.0.1" port 5556)
675:  # ./spec/spec_helper.rb:28:in 'block (2 levels) in <top (required)>'
676:  # ------------------
677:  # --- Caused by: ---
678:  # Errno::ECONNREFUSED:
679:  #   No connection could be made because the target machine actively refused it. - connect(2) for "127.0.0.1" port 5556
680:  #   ./spec/spec_helper.rb:28:in 'block (2 levels) in <top (required)>'
681:  Finished in 7 minutes 56 seconds (files took 2.65 seconds to load)
682:  185 examples, 2 failures, 33 pending
683:  Failed examples:
684:  rspec ./spec/browsers/internet_explorer_spec.rb:79 # Internet Explorer Service logs to file
685:  rspec ./spec/browsers/internet_explorer_spec.rb:88 # Internet Explorer Service logs to console
686:  ##[warning]Attempt 2 failed. Reason: Child_process exited with error code 1
687:  ##[endgroup]
688:  ##[group]Attempt 3
689:  C:/hostedtoolcache/windows/Ruby/3.4.2/x64/lib/ruby/3.4.0/win32/registry.rb:2: warning: fiddle/import is found in fiddle, which will no longer be part of the default gems starting from Ruby 3.5.0.
690:  You can add fiddle to your Gemfile or gemspec to silence this warning.
691:  ...................................*............................................***...FF....*.*F...****.....*........*.......*******..........**************.............................
692:  Pending: (Failures listed here are expected and do not affect your suite's status)
693:  1) Network waits for downloads
694:  # Test guarded; Guarded by {platform: :windows, reason: "No reason given"};
695:  Failure/Error: expect { Selenium::WebDriver::Wait.new.until { @completed } }.not_to raise_exception
696:  expected no Exception, got #<Selenium::WebDriver::Error::TimeoutError: timed out after 5 seconds> with backtrace:
697:  # ./spec/bidi/cdp/network_spec.rb:92:in 'block (3 levels) in <top (required)>'
...

783:  # ./spec/elements/locators_spec.rb:43
784:  30) Element Locators with relative locators finds element to the left
785:  # These are reference following the documentation example
786:  # ./spec/elements/locators_spec.rb:47
787:  31) Element Locators with relative locators finds element to the right
788:  # These are reference following the documentation example
789:  # ./spec/elements/locators_spec.rb:51
790:  32) Element Locators with relative locators finds near element
791:  # These are reference following the documentation example
792:  # ./spec/elements/locators_spec.rb:55
793:  33) Element Locators with relative locators chains relative locators
794:  # These are reference following the documentation example
795:  # ./spec/elements/locators_spec.rb:59
796:  Failures:
797:  1) Internet Explorer Options basic options Win10
798:  Failure/Error: config.after { @driver&.quit }
799:  Net::ReadTimeout:
800:  Net::ReadTimeout with #<TCPSocket:(closed)>
801:  # ./spec/spec_helper.rb:28:in 'block (2 levels) in <top (required)>'
802:  2) Internet Explorer Options basic options Win11
803:  Failure/Error: config.after { @driver&.quit }
804:  Errno::ECONNREFUSED:
805:  Failed to open TCP connection to 127.0.0.1:5555 (No connection could be made because the target machine actively refused it. - connect(2) for "127.0.0.1" port 5555)
806:  # ./spec/spec_helper.rb:28:in 'block (2 levels) in <top (required)>'
807:  # ------------------
808:  # --- Caused by: ---
809:  # Errno::ECONNREFUSED:
810:  #   No connection could be made because the target machine actively refused it. - connect(2) for "127.0.0.1" port 5555
811:  #   ./spec/spec_helper.rb:28:in 'block (2 levels) in <top (required)>'
812:  3) Internet Explorer Service logs to file
813:  Failure/Error: config.after { @driver&.quit }
814:  Errno::ECONNREFUSED:
815:  Failed to open TCP connection to 127.0.0.1:5556 (No connection could be made because the target machine actively refused it. - connect(2) for "127.0.0.1" port 5556)
816:  # ./spec/spec_helper.rb:28:in 'block (2 levels) in <top (required)>'
817:  # ------------------
818:  # --- Caused by: ---
819:  # Errno::ECONNREFUSED:
820:  #   No connection could be made because the target machine actively refused it. - connect(2) for "127.0.0.1" port 5556
821:  #   ./spec/spec_helper.rb:28:in 'block (2 levels) in <top (required)>'
822:  Finished in 10 minutes 20 seconds (files took 2.69 seconds to load)
823:  185 examples, 3 failures, 33 pending
824:  Failed examples:
825:  rspec ./spec/browsers/internet_explorer_spec.rb:16 # Internet Explorer Options basic options Win10
826:  rspec ./spec/browsers/internet_explorer_spec.rb:23 # Internet Explorer Options basic options Win11
827:  rspec ./spec/browsers/internet_explorer_spec.rb:79 # Internet Explorer Service logs to file
828:  ##[endgroup]
829:  ##[error]Final attempt failed. Child_process exited with error code 1
830:  Post job cleanup.

@renovate renovate bot force-pushed the renovate/rubocop-1.x-lockfile branch from 7610a61 to c181c02 Compare April 3, 2025 12:20
@renovate renovate bot changed the title Update dependency rubocop to v1.75.1 Update dependency rubocop to v1.75.2 Apr 3, 2025
@renovate renovate bot force-pushed the renovate/rubocop-1.x-lockfile branch from c181c02 to d5c7788 Compare April 5, 2025 19:02
Copy link
Contributor Author

renovate bot commented Apr 5, 2025

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant