Skip to content

Update dependency rubocop to v1.75.8 #2253

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

Merged
merged 1 commit into from
May 29, 2025
Merged

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.8 age adoption passing confidence

Release Notes

rubocop/rubocop (rubocop)

v1.75.8

Compare Source

Bug fixes
  • #​14191: Fix Lint/FloatComparison cop to detect floating-point number comparisons in case statements. ([@​daisuke][])
  • #​14209: Fix an error for Style/RedundantFormat with invalid format arguments. ([@​earlopain][])
  • #​14200: Fix false positives for Style/DefWithParentheses when using endless method definition with empty parentheses and a space before =. ([@​koic][])
  • #​14197: Fix infinite loop error for EnforcedStyle: with_fixed_indentation of Layout/ArgumentAlignment and EnforcedStyle: consistent of Layout/FirstArgumentIndentation and Layout/HashAlignment. ([@​koic][])
  • #​14204: Fix Layout/EmptyLinesAroundAccessModifier cop error on trailing access modifier. ([@​viralpraxis][])
  • #​14198: Fix Lint/DuplicateMethods cop error on to option is dynamically generated and prefix is enabled. ([@​viralpraxis][])
  • #​14199: Fix wrong autocorrection for Style/MapToHash with destructuring argument. ([@​lovro-bikic][])
  • #​14050: Modify condition for rubocop:todo EOL comment. ([@​jonas054][])

v1.75.7

Compare Source

Bug fixes
  • #​14185: Fix an error for Style/IfUnlessModifierOfIfUnless when using nested modifier. ([@​koic][])
  • #​14192: Fix negatives for Layout/SpaceBeforeBrackets when using space between method argument parentheses and left bracket. ([@​koic][])
  • #​14189: Fix incorrect autocorrect for Layout/SpaceBeforeBrackets when using space between receiver and left brackets, and a space inside left bracket. ([@​koic][])
  • #​14170: Fix Style/AccessModifierDeclarations cop error on semicolon after modifier. ([@​viralpraxis][])
  • #​14195: Fix Style/AccessModifierDeclarations cop error on symbol modifier without surrounding scope. ([@​viralpraxis][])
  • #​14172: Fix Style/AccessModifierDeclarations cop false positives when there are no method definitions and style is inline. ([@​viralpraxis][])
  • #​14193: Fix Lint/UselessAssignment cop error when using nested assignment with splat. ([@​earlopain][])
Changes

v1.75.6

Compare Source

Bug fixes
  • #​14176: Fix an error for Style/MultilineIfModifier when using nested modifier. ([@​koic][])
  • #​14077: Change nil representation in todo file comments. ([@​jonas054][])
  • #​14164: Fix an error for Lint/UselessAssignment when variables are assigned using unary operator in chained assignment and remain unreferenced. ([@​koic][])
  • #​14173: Fix an error for Style/StringConcatenation when using implicit concatenation with string interpolation. ([@​koic][])
  • #​14177: Fix false positives for Style/SoleNestedConditional when using nested if and not in condition. ([@​koic][])
  • #​14152: Fix Layout/SpaceInsideArrayLiteralBrackets cop error on array pattern without brackets. ([@​viralpraxis][])
  • #​14153: Fix Style/PercentQLiterals cop error on Unicode escape sequence. ([@​viralpraxis][])
Changes

v1.75.5

Compare Source

Bug fixes
  • #​14148: Fix an infinite loop error for Layout/SpaceAfterSemicolon with Layout/SpaceBeforeSemicolon when a sequence of semicolons appears. ([@​koic][])
  • #​14145: Fix Lint/ArrayLiteralInRegexp cop error on empty interpolation. ([@​viralpraxis][])
  • #​14072: Fix autocorrect issue in Layout/HashAlignment. ([@​jonas054][])
  • #​14131: Fix false positives for Style/ArgumentsForwarding when using anonymous block argument forwarding to a method with a block. ([@​koic][])
  • #​14140: Fix Layout/LeadingCommentSpace to allow splitting long inline RBS comment signatures across multiple lines. ([@​Morriar][])
  • #​14147: Fix Lint/LiteralAsCondition cop error on if without body. ([@​viralpraxis][])
  • #​14151: Fix Lint/Void cop error on nested empty begin. ([@​viralpraxis][])
  • #​13547: Fix Style/IdenticalConditionalBranches cop failure in case of if node with implicit then. ([@​viralpraxis][])
  • #​14146: Fix Style/MethodCallWithArgsParentheses cop error on complex numbers when EnforcedStyle is set to omit_parentheses. ([@​viralpraxis][])
  • #​14137: Fix Style/TrailingCommaInArguments cop error if EnforcedStyleForMultiline is set to comma. ([@​viralpraxis][])
Changes
  • #​14144: Layout/SpaceInsideArrayLiteralBrackets make aware of array pattern matching. ([@​koic][])
  • #​14142: Layout/SpaceInsideHashLiteralBraces make aware of hash pattern matching. ([@​koic][])

v1.75.4

Compare Source

Bug fixes
  • #​14123: Fix an infinite loop error for Lint/BooleanSymbol when using the rocket hash syntax with a boolean symbol key. ([@​koic][])
  • #​14134: Fix an error for Style/ComparableBetween when comparing the value with itself. ([@​earlopain][])
  • #​14111: Fix an error for Style/SafeNavigation when the RHS of && is a complex || expression composed of && conditions. ([@​koic][])
  • #​14129: Fix false positives for Style/ArgumentsForwarding when using default positional arg, keyword arg, and block arg in Ruby 3.1. ([@​koic][])
  • #​14110: Fix false positives for Style/RedundantParentheses when parens around basic conditional as the second argument of a parenthesized method call. ([@​koic][])
  • #​14120: Fix false positives for Style/RedundantParentheses when parens around unparenthesized method call as the second argument of a parenthesized method call. ([@​koic][])
  • #​14133: Fix Lint/LiteralAsCondition autocorrect when a literal is the condition of an elsif followed by an else. ([@​zopolis4][])
  • #​14116: Make Style/TrailingCommaInArguments cop aware of trailing commas in [] method call. ([@​viralpraxis][])
  • #​14114: Fix Style/ClassAndModuleChildren cop error on tab-intended compactable modules. ([@​viralpraxis][])
Changes

v1.75.3

Compare Source

Bug fixes
  • #​13676: Allow RuboCop to inspect hidden directories if they are explicitly provided. ([@​viralpraxis][])
  • #​14080: Allow writing RBS::Inline annotation #: after end keyword in Style/CommentedKeyword. ([@​dak2][])
  • #​14075: Fix an error for Layout/EmptyLineAfterGuardClause when calling a method on the result of a single-line if with return. ([@​koic][])
  • #​14067: Fix false negatives for Style/RedundantParentheses when using parens around singleton method body. ([@​koic][])
  • #​14070: Fix false positives for EnforcedStyleForMultiline: diff_comma of Style/TrailingCommaInArrayLiteral and Style/TrailingCommaInHashLiteral when trailing comma with comment. ([@​koic][])
  • #​14092: Fix false negative for Style/RedundantParentheses when using some operator methods with a parenthesized argument. ([@​koic][])
  • #​14103: Fix Layout/MultilineOperationIndentation cop error on indexasgn node without arguments. ([@​viralpraxis][])
  • #​14089: Fix redundant current directory prefix regexp. ([@​sferik][])
  • #​14099: Fix Style/ClassAndModuleChildren cop error on one-liner class definition and nested enforced style. ([@​viralpraxis][])
  • #​14083: Fix Style/ConditionalAssignment cop error on one-line if-then-else. ([@​viralpraxis][])
  • #​14104: Fix Style/ConditionalAssignment cop error on indexed assignment without arguments. ([@​viralpraxis][])
  • #​14084: Fix Style/RedundantLineContinuation cop error on multiline assignment with line continuation. ([@​viralpraxis][])
  • #​14096: Fix error for Style/SafeNavigation with longer && chain (e.g. a && a.b && a.b.c). ([@​lovro-bikic][])
  • #​14068: Fix wrong autocorrection for Style/MapIntoArray when using push or append with hash argument without braces. ([@​lovro-bikic][])
Changes

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 73694a1
🔍 Latest deploy log https://app.netlify.com/projects/selenium-dev/deploys/683871257ac4f20008827418
😎 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 project configuration.

Copy link
Contributor

qodo-merge-pro bot commented Apr 1, 2025

CI Feedback 🧐

(Feedback updated until commit a587872)

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

Action: tests (windows, stable)

Failed stage: Run tests on Windows [❌]

Failed test name: Internet Explorer Service logs to file

Failure summary:

The action failed because the Ruby RSpec tests in the examples/ruby directory had failures:

1. Two tests related to Internet Explorer Service failed with connection errors:
- "Internet
Explorer Service logs to file" - Failed to open TCP connection to 127.0.0.1:5555/5556
- "Internet
Explorer Service logs to console" - Failed to open TCP connection to 127.0.0.1:5556

The errors indicate that the tests couldn't connect to the Internet Explorer service on the
specified ports, with the error message "No connection could be made because the target machine
actively refused it."

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

359:  ##[endgroup]
360:  Creating settings.xml with server-id: github
361:  Writing to C:\Users\runneradmin\.m2\settings.xml
362:  ##[group]Run nick-invision/[email protected]
363:  with:
364:  timeout_minutes: 20
365:  max_attempts: 2
366:  command: cd examples/ruby
367:  bundle exec rspec
368:  
369:  new_command_on_retry: cd examples/ruby; $env:DEBUG="true"; bundle exec rspec --only-failures --backtrace
370:  
371:  retry_wait_seconds: 10
372:  polling_interval_seconds: 1
373:  warning_on_retry: true
374:  continue_on_error: false
375:  env:
...

390:  MSYSTEM_CARCH: x86_64
391:  MSYSTEM_CHOST: x86_64-w64-mingw32
392:  MSYSTEM_PREFIX: /ucrt64
393:  PKG_CONFIG_PATH: /ucrt64/lib/pkgconfig:/ucrt64/share/pkgconfig
394:  PROMPT: $P$G
395:  RI_DEVKIT: C:\hostedtoolcache\windows\Ruby\3.2.8\x64\msys64
396:  Path: C:\Program Files\MongoDB\Server\5.0\bin;C:\aliyun-cli;C:\vcpkg;C:\Program Files (x86)\NSIS\;C:\tools\zstd;C:\Program Files\Mercurial\;C:\hostedtoolcache\windows\stack\3.5.1\x64;C:\cabal\bin;C:\\ghcup\bin;C:\mingw64\bin;C:\Program Files\dotnet;C:\Program Files\MySQL\MySQL Server 8.0\bin;C:\Program Files\R\R-4.4.2\bin\x64;C:\SeleniumWebDrivers\GeckoDriver;C:\SeleniumWebDrivers\EdgeDriver\;C:\SeleniumWebDrivers\ChromeDriver;C:\Program Files (x86)\sbt\bin;C:\Program Files (x86)\GitHub CLI;C:\Program Files\Git\bin;C:\Program Files (x86)\pipx_bin;C:\npm\prefix;C:\hostedtoolcache\windows\go\1.24.3\x64\bin;C:\hostedtoolcache\windows\Python\3.9.13\x64\Scripts;C:\hostedtoolcache\windows\Python\3.9.13\x64;C:\Program Files\OpenSSL\bin;C:\tools\kotlinc\bin;C:\hostedtoolcache\windows\Java_Temurin-Hotspot_jdk\8.0.452-9\x64\bin;C:\Program Files\ImageMagick-7.1.1-Q16-HDRI;C:\Program Files\Microsoft SDKs\Azure\CLI2\wbin;C:\ProgramData\kind;C:\ProgramData\Chocolatey\bin;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files\dotnet\;C:\Program Files\PowerShell\7\;C:\Program Files\Microsoft\Web Platform Installer\;C:\Program Files\TortoiseSVN\bin;C:\Program Files\Microsoft SQL Server\Client SDK\ODBC\170\Tools\Binn\;C:\Program Files\Microsoft SQL Server\150\Tools\Binn\;C:\Program Files (x86)\Windows Kits\10\Windows Performance Toolkit\;C:\Program Files (x86)\WiX Toolset v3.14\bin;C:\Program Files\Microsoft SQL Server\130\DTS\Binn\;C:\Program Files\Microsoft SQL Server\140\DTS\Binn\;C:\Program Files\Microsoft SQL Server\150\DTS\Binn\;C:\Program Files\Microsoft SQL Server\160\DTS\Binn\;C:\Strawberry\c\bin;C:\Strawberry\perl\site\bin;C:\Strawberry\perl\bin;C:\ProgramData\chocolatey\lib\pulumi\tools\Pulumi\bin;C:\Program Files\CMake\bin;C:\ProgramData\chocolatey\lib\maven\apache-maven-3.9.9\bin;C:\Program Files\Microsoft Service Fabric\bin\Fabric\Fabric.Code;C:\Program Files\Microsoft SDKs\Service Fabric\Tools\ServiceFabricLocalClusterManager;C:\Program Files\nodejs\;C:\Program Files\Git\cmd;C:\Program Files\Git\mingw64\bin;C:\Program Files\Git\usr\bin;C:\Program Files\GitHub CLI\;c:\tools\php;C:\Program Files (x86)\sbt\bin;C:\Program Files\Amazon\AWSCLIV2\;C:\Program Files\Amazon\SessionManagerPlugin\bin\;C:\Program Files\Amazon\AWSSAMCLI\bin\;C:\Program Files\Microsoft SQL Server\130\Tools\Binn\;C:\Program Files\LLVM\bin;C:\Users\runneradmin\.dotnet\tools;C:\Users\runneradmin\.cargo\bin;C:\Users\runneradmin\AppData\Local\Microsoft\WindowsApps
397:  JAVA_HOME: C:\hostedtoolcache\windows\Java_Temurin-Hotspot_jdk\11.0.27-6\x64
398:  JAVA_HOME_11_X64: C:\hostedtoolcache\windows\Java_Temurin-Hotspot_jdk\11.0.27-6\x64
399:  ##[endgroup]
400:  ##[group]Attempt 1
401:  ...................................*........................................................*.*FF..****.....*........*.......*******..........**************..................................
402:  Pending: (Failures listed here are expected and do not affect your suite's status)
403:  1) Network waits for downloads
404:  # Test guarded; Guarded by {:platform=>:windows, :reason=>"No reason given"};
405:  Failure/Error: expect { Selenium::WebDriver::Wait.new.until { @completed } }.not_to raise_exception
406:  expected no Exception, got #<Selenium::WebDriver::Error::TimeoutError: timed out after 5 seconds> with backtrace:
407:  # ./spec/bidi/cdp/network_spec.rb:92:in `block (3 levels) in <top (required)>'
...

484:  # ./spec/elements/locators_spec.rb:43
485:  27) Element Locators with relative locators finds element to the left
486:  # These are reference following the documentation example
487:  # ./spec/elements/locators_spec.rb:47
488:  28) Element Locators with relative locators finds element to the right
489:  # These are reference following the documentation example
490:  # ./spec/elements/locators_spec.rb:51
491:  29) Element Locators with relative locators finds near element
492:  # These are reference following the documentation example
493:  # ./spec/elements/locators_spec.rb:55
494:  30) Element Locators with relative locators chains relative locators
495:  # These are reference following the documentation example
496:  # ./spec/elements/locators_spec.rb:59
497:  Failures:
498:  1) Internet Explorer Service logs to file
499:  Failure/Error: config.after { @driver&.quit }
500:  Errno::ECONNREFUSED:
501:  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)
502:  # ./spec/spec_helper.rb:30:in `block (2 levels) in <top (required)>'
503:  # ------------------
504:  # --- Caused by: ---
505:  # Errno::ECONNREFUSED:
506:  #   No connection could be made because the target machine actively refused it. - connect(2) for "127.0.0.1" port 5556
507:  #   ./spec/spec_helper.rb:30:in `block (2 levels) in <top (required)>'
508:  2) Internet Explorer Service logs to console
509:  Failure/Error: config.after { @driver&.quit }
510:  Errno::ECONNREFUSED:
511:  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)
512:  # ./spec/spec_helper.rb:30:in `block (2 levels) in <top (required)>'
513:  # ------------------
514:  # --- Caused by: ---
515:  # Errno::ECONNREFUSED:
516:  #   No connection could be made because the target machine actively refused it. - connect(2) for "127.0.0.1" port 5556
517:  #   ./spec/spec_helper.rb:30:in `block (2 levels) in <top (required)>'
518:  Finished in 10 minutes 16 seconds (files took 1.12 seconds to load)
519:  190 examples, 2 failures, 30 pending
520:  Failed examples:
521:  rspec ./spec/browsers/internet_explorer_spec.rb:79 # Internet Explorer Service logs to file
522:  rspec ./spec/browsers/internet_explorer_spec.rb:88 # Internet Explorer Service logs to console
523:  ##[warning]Attempt 1 failed. Reason: Child_process exited with error code 1
524:  ##[endgroup]
...

578:  {
579:  "implicit" : 0,
580:  "pageLoad" : 300000,
581:  "script" : 30000
582:  },
583:  "unhandledPromptBehavior" : "dismiss and notify"
584:  },
585:  "sessionId" : "dba75b24-2bf1-4c78-abe8-029a7692daf9"
586:  }
587:  } 
588:  2025-05-29 14:15:51 DEBUG Selenium [:command] -> DELETE session/dba75b24-2bf1-4c78-abe8-029a7692daf9 
589:  2025-05-29 14:16:32 DEBUG Selenium [:process] Checking if 6784 is exited: 
590:  2025-05-29 14:16:32 DEBUG Selenium [:process]   -> exit code is 11 
591:  2025-05-29 14:16:32 DEBUG Selenium [:process] Checking if 6784 is exited: 
592:  2025-05-29 14:16:32 DEBUG Selenium [:process]   -> exit code is 11 
593:  Run options: include {:last_run_status=>"failed"}
594:  F2025-05-29 14:16:32 DEBUG Selenium Running with Guard 'platform' set to: windows
...

657:  } 
658:  2025-05-29 14:16:35 DEBUG Selenium [:process] Checking if 5384 is exited: 
659:  2025-05-29 14:16:35 DEBUG Selenium [:driver_service] Sending shutdown request to server 
660:  2025-05-29 14:16:35 DEBUG Selenium [:process] Polling 20 seconds for exit of 5384 
661:  2025-05-29 14:16:35 DEBUG Selenium [:process] Checking if 5384 is exited: 
662:  2025-05-29 14:16:35 DEBUG Selenium [:process] Checking if 5384 is exited: 
663:  2025-05-29 14:16:35 DEBUG Selenium [:process] Checking if 5384 is exited: 
664:  2025-05-29 14:16:35 DEBUG Selenium [:process]   -> exit code is 0 
665:  2025-05-29 14:16:35 DEBUG Selenium [:process] Checking if 5384 is exited: 
666:  2025-05-29 14:16:35 DEBUG Selenium [:process]   -> exit code is 0 
667:  2025-05-29 14:16:35 DEBUG Selenium [:process] Checking if 5384 is exited: 
668:  2025-05-29 14:16:35 DEBUG Selenium [:process]   -> exit code is 0 
669:  .
670:  Failures:
671:  1) Internet Explorer Service logs to file
672:  Failure/Error: config.after { @driver&.quit }
673:  Errno::ECONNREFUSED:
674:  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)
675:  # C:/hostedtoolcache/windows/Ruby/3.2.8/x64/lib/ruby/3.2.0/net/http.rb:1603:in `initialize'
...

722:  # C:/hostedtoolcache/windows/Ruby/3.2.8/x64/lib/ruby/gems/3.2.0/gems/rspec-core-3.13.4/lib/rspec/core/runner.rb:116:in `block in run_specs'
723:  # C:/hostedtoolcache/windows/Ruby/3.2.8/x64/lib/ruby/gems/3.2.0/gems/rspec-core-3.13.4/lib/rspec/core/reporter.rb:74:in `report'
724:  # C:/hostedtoolcache/windows/Ruby/3.2.8/x64/lib/ruby/gems/3.2.0/gems/rspec-core-3.13.4/lib/rspec/core/runner.rb:115:in `run_specs'
725:  # C:/hostedtoolcache/windows/Ruby/3.2.8/x64/lib/ruby/gems/3.2.0/gems/rspec-core-3.13.4/lib/rspec/core/runner.rb:89:in `run'
726:  # C:/hostedtoolcache/windows/Ruby/3.2.8/x64/lib/ruby/gems/3.2.0/gems/rspec-core-3.13.4/lib/rspec/core/runner.rb:71:in `run'
727:  # C:/hostedtoolcache/windows/Ruby/3.2.8/x64/lib/ruby/gems/3.2.0/gems/rspec-core-3.13.4/lib/rspec/core/runner.rb:45:in `invoke'
728:  # C:/hostedtoolcache/windows/Ruby/3.2.8/x64/lib/ruby/gems/3.2.0/gems/rspec-core-3.13.4/exe/rspec:4:in `<top (required)>'
729:  # C:/hostedtoolcache/windows/Ruby/3.2.8/x64/bin/rspec:25:in `load'
730:  # C:/hostedtoolcache/windows/Ruby/3.2.8/x64/bin/rspec:25:in `<main>'
731:  # ------------------
732:  # --- Caused by: ---
733:  # Errno::ECONNREFUSED:
734:  #   No connection could be made because the target machine actively refused it. - connect(2) for "127.0.0.1" port 5555
735:  #   C:/hostedtoolcache/windows/Ruby/3.2.8/x64/lib/ruby/3.2.0/net/http.rb:1603:in `initialize'
736:  Finished in 45.72 seconds (files took 0.82642 seconds to load)
737:  2 examples, 1 failure
738:  Failed examples:
739:  rspec ./spec/browsers/internet_explorer_spec.rb:79 # Internet Explorer Service logs to file
740:  2025-05-29 14:16:35 DEBUG Selenium [:process] Checking if 5384 is exited: 
741:  2025-05-29 14:16:35 DEBUG Selenium [:process]   -> exit code is 0 
742:  2025-05-29 14:16:35 DEBUG Selenium [:process] Checking if 5384 is exited: 
743:  2025-05-29 14:16:35 DEBUG Selenium [:process]   -> exit code is 0 
744:  2025-05-29 14:16:35 DEBUG Selenium [:process] Checking if 6784 is exited: 
745:  2025-05-29 14:16:35 DEBUG Selenium [:process]   -> exit code is 11 
746:  2025-05-29 14:16:35 DEBUG Selenium [:process] Checking if 6784 is exited: 
747:  2025-05-29 14:16:35 DEBUG Selenium [:process]   -> exit code is 11 
748:  ##[endgroup]
749:  ##[error]Final attempt failed. Child_process exited with error code 1
750:  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
@renovate renovate bot force-pushed the renovate/rubocop-1.x-lockfile branch from 66b514a to d9789b4 Compare May 29, 2025 13:15
@renovate renovate bot changed the title Update dependency rubocop to v1.75.2 Update dependency rubocop to v1.75.8 May 29, 2025
@renovate renovate bot force-pushed the renovate/rubocop-1.x-lockfile branch from d9789b4 to a587872 Compare May 29, 2025 13:55
@renovate renovate bot force-pushed the renovate/rubocop-1.x-lockfile branch from a587872 to 73694a1 Compare May 29, 2025 14:37
@diemol diemol merged commit d738e8f into trunk May 29, 2025
13 checks passed
@diemol diemol deleted the renovate/rubocop-1.x-lockfile branch May 29, 2025 14:59
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