Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 27, 2025

Bumps the ruby-deps group with 6 updates in the / directory:

Package From To
turbo-rails 2.0.12 2.0.16
jbuilder 2.13.0 2.14.1
rubocop 1.79.1 1.80.1
rubocop-rails 2.32.0 2.33.3
selenium-webdriver 4.34.0 4.35.0
simplecov-lcov 0.8.0 0.9.0

Updates turbo-rails from 2.0.12 to 2.0.16

Release notes

Sourced from turbo-rails's releases.

v2.0.14

What's Changed

New Contributors

Full Changelog: hotwired/turbo-rails@v2.0.13...v2.0.14

v2.0.13

What's Changed

Full Changelog: hotwired/turbo-rails@v2.0.12...v2.0.13

Commits
  • 1782f02 Bump version
  • 313cef2 @​hotwired/turbo-rails v8.0.16
  • 92f5a8d Bump version
  • abb445e Bump version
  • 1ac14bd @​hotwired/turbo-rails v8.0.14
  • cb47713 Fix stream_name calculation inside of thread (#727)
  • 3db32e4 Merge pull request #722 from hotwired/dependabot/github_actions/oven-sh/setup...
  • 25c359b Bump oven-sh/setup-bun from 1 to 2
  • 94767d3 Include CSRF \<meta> elements in frame layout (#697)
  • 8241ae3 Update @​rails/actioncable dependency to version >=7.0 (#705)
  • Additional commits viewable in compare view

Updates jbuilder from 2.13.0 to 2.14.1

Release notes

Sourced from jbuilder's releases.

v2.14.1

What's Changed

New Contributors

Full Changelog: rails/jbuilder@v2.14.0...v2.14.1

v2.14.0

What's Changed

New Contributors

Full Changelog: rails/jbuilder@v2.13.0...v2.14.0

Commits
  • 38339ad Prepare for 2.14.1
  • 2400fd9 Merge pull request #601 from flavorjones/flavorjones/fix-encode-arguments
  • a6863b5 Ensure that Jbuilder.encode properly forwards arguments to .new
  • 30ba7df Prepare for 2.14.0
  • 5f4af71 Merge pull request #591 from moberegger/moberegger/optimize_options_merges
  • 6fd6c06 Small _set_inline_partial optimization
  • b7b5abb Stop mutating options in partial! method
  • 7e16adf Stop mutating options in set! method
  • 8474b41 Remove _partial micro-optimization
  • 9ffacf7 Merge pull request #574 from pixeltrix/fix-warnings-and-version-constant
  • Additional commits viewable in compare view

Updates rubocop from 1.79.1 to 1.80.1

Release notes

Sourced from rubocop's releases.

RuboCop v1.80.1

Bug fixes

  • #14479: Don't invalidate cache when --display-time option is used on the CLI. (@​lovro-bikic)
  • #14473: Fix a false negative for Style/RedundantBegin using begin with multiple statements without rescue or ensure. (@​koic)
  • #14475: Fix cop errors during autocorrect for the build in LSP when analyzing as Ruby 3.4. (@​earlopain)

Changes

  • #14474: Fix false negative for Layout/EndAlignment when end is not on a separate line. (@​lovro-bikic)

RuboCop v1.80.0

Bug fixes

  • #14469: Fix an incorrect autocorrect for Style/BitwisePredicate when using & with LHS flags in conjunction with == for comparisons. (@​koic)
  • #14459: Fix wrong autocorrect for Style/For with save navigation in the collection. (@​earlopain)
  • #14435: Fix false negatives for regexp cops when Lint/DuplicateRegexpCharacterClassElement is enabled. (@​earlopain)
  • #14419: Fix false positives for Lint/UselessAssignment when duplicate assignments appear in nested if branches inside a loop and the variable is used outside while loop. (@​koic)
  • #14468: Fix false positives for Naming/MethodName when an operator method is defined using a string. (@​koic)
  • #14427: Fix false positives for Style/RedundantParentheses when do...end block is wrapped in parentheses as a method argument. (@​koic)
  • #14441: Better hash access handling in Style/SafeNavigation. (@​issyl0)
  • #14443: Fix false positive in Layout/EmptyLinesAfterModuleInclusion when include does not have exactly one argument. (@​issyl0)
  • #14424: Fix Style/SafeNavigation cop to preserve existing safe navigation in fixed code. (@​martinemde)
  • #14455: Follow module inclusion with nonzero args with an empty line. (@​issyl0)
  • #14445: Fix false positives for Lint/UselessAssignment with for loops when the variable is referenced in the collection. (@​earlopain)
  • #14447: Fix wrong autocorrect for Style/RedundantCondition with a parenthesised method call in the condition. (@​earlopain)

Changes

  • #14428: Enhance Lint/SelfAssignment to handle indexed assignment with multiple arguments. (@​viralpraxis)
  • #14464: Exclude AutoCorrect and Include from configuration parameters. (@​r7kamura)
  • #14472: Make Style/RedundantBegin aware of case pattern matching. (@​koic)
  • #14448: Register array intersection size checks as offenses under Style/ArrayIntersect. (@​lovro-bikic)
  • #14431: Support LSP TextDocumentSyncKind.Incremental. (@​tmtm)
  • #14453: Update Style/RedundantBegin to register begin blocks inside if, unless, case, while and until as redundant. (@​dvandersluis)

... (truncated)

Changelog

Sourced from rubocop's changelog.

1.80.1 (2025-08-27)

Bug fixes

  • #14479: Don't invalidate cache when --display-time option is used on the CLI. ([@​lovro-bikic][])
  • #14473: Fix a false negative for Style/RedundantBegin using begin with multiple statements without rescue or ensure. ([@​koic][])
  • #14475: Fix cop errors during autocorrect for the build in LSP when analyzing as Ruby 3.4. ([@​earlopain][])

Changes

  • #14474: Fix false negative for Layout/EndAlignment when end is not on a separate line. ([@​lovro-bikic][])

1.80.0 (2025-08-22)

Bug fixes

  • #14469: Fix an incorrect autocorrect for Style/BitwisePredicate when using & with LHS flags in conjunction with == for comparisons. ([@​koic][])
  • #14459: Fix wrong autocorrect for Style/For with save navigation in the collection. ([@​earlopain][])
  • #14435: Fix false negatives for regexp cops when Lint/DuplicateRegexpCharacterClassElement is enabled. ([@​earlopain][])
  • #14419: Fix false positives for Lint/UselessAssignment when duplicate assignments appear in nested if branches inside a loop and the variable is used outside while loop. ([@​koic][])
  • #14468: Fix false positives for Naming/MethodName when an operator method is defined using a string. ([@​koic][])
  • #14427: Fix false positives for Style/RedundantParentheses when do...end block is wrapped in parentheses as a method argument. ([@​koic][])
  • #14441: Better hash access handling in Style/SafeNavigation. ([@​issyl0][])
  • #14443: Fix false positive in Layout/EmptyLinesAfterModuleInclusion when include does not have exactly one argument. ([@​issyl0][])
  • #14424: Fix Style/SafeNavigation cop to preserve existing safe navigation in fixed code. ([@​martinemde][])
  • #14455: Follow module inclusion with nonzero args with an empty line. ([@​issyl0][])
  • #14445: Fix false positives for Lint/UselessAssignment with for loops when the variable is referenced in the collection. ([@​earlopain][])
  • #14447: Fix wrong autocorrect for Style/RedundantCondition with a parenthesised method call in the condition. ([@​earlopain][])

Changes

  • #14428: Enhance Lint/SelfAssignment to handle indexed assignment with multiple arguments. ([@​viralpraxis][])
  • #14464: Exclude AutoCorrect and Include from configuration parameters. ([@​r7kamura][])
  • #14472: Make Style/RedundantBegin aware of case pattern matching. ([@​koic][])
  • #14448: Register array intersection size checks as offenses under Style/ArrayIntersect. ([@​lovro-bikic][])
  • #14431: Support LSP TextDocumentSyncKind.Incremental. ([@​tmtm][])
  • #14453: Update Style/RedundantBegin to register begin blocks inside if, unless, case, while and until as redundant. ([@​dvandersluis][])

1.79.2 (2025-08-05)

Bug fixes

  • #11664: Cache wasn't getting used when using parallelization. ([@​jvlara][])
  • #14411: Fix false negatives for Layout/EmptyLinesAroundClassBody when a class body starts with a blank line and defines a multiline superclass. ([@​koic][])
  • #14413: Fix a false positive for Layout/EmptyLinesAroundArguments with multiline strings that contain only whitespace. ([@​earlopain][])
  • #14408: Fix false-positive for Layout/EmptyLinesAfterModuleInclusion when inclusion is called with modifier. ([@​r7kamura][])
  • #14402: Fix false positives for Lint/UselessAssignment when duplicate assignments appear in if branch inside a loop and the variable is used outside while loop. ([@​koic][])
  • #14416: Fix false positives for Style/MapToHash when using to_h with block argument. ([@​koic][])
  • #14418: Fix false positives for Style/MapToSet when using to_set with block argument. ([@​koic][])
  • #14420: Fix false positives for Style/SafeNavigation when ternary expression with operator method call with method chain. ([@​koic][])

... (truncated)

Commits
  • d56f11a Cut 1.80.1
  • 3ac19eb Update Changelog
  • f5c5e75 Merge pull request #14479 from lovro-bikic/display-time-shouldnt-impact-cache
  • d500cc9 Prevent display-time CLI option from invalidating cache
  • 161ba26 Don't use keyword argument for get_processed_source
  • d7972b6 [Fix #14475] Fix cop errors during autocorrect for the buildin LSP when analy...
  • 6e5c599 Merge pull request #14474 from lovro-bikic/false-negative-end-alignment
  • 49b7248 Fix false negative for Layout/EndAlignment when end is not on a separate line
  • 103f3ab Merge pull request #14473 from koic/fix_false_negative_for_style_redundant_begin
  • 6b5c6ac Fix a false negative for Style/RedundantBegin
  • Additional commits viewable in compare view

Updates rubocop-rails from 2.32.0 to 2.33.3

Release notes

Sourced from rubocop-rails's releases.

RuboCop Rails v2.33.3

Bug fixes

RuboCop Rails v2.33.2

Bug fixes

  • #1488: Fix an error for Rails/ReadWriteAttribute with a frozen string attribute name. (@​viralpraxis)

RuboCop Rails v2.33.1

Bug fixes

  • #1508: Fix an error for Rails/TransactionExitStatement when transaction is part of a method chain. (@​earlopain)
  • #1510: Fix Rails/OrderArguments cop false positives when using column index argument. (@​viralpraxis)
  • #1511: Don't register offenses for Rails/WhereExists when exists? is given multiple or splat arguments. (@​lovro-bikic)

RuboCop Rails v2.33.0

New features

Bug fixes

  • #1497: Fix bugs in Rails/PluckId and Rails/PluckInWhere. (@​r7kamura)
  • #1478: Fix a false negative for Rails/EnvLocal when having preceding conditions. (@​fatkodima)
  • #1505: Fix false negatives for Rails/Pluck when map method call is used in a block without a receiver. (@​koic)
  • #1486: Fix false positives for Rails/Output when p method is a DSL. (@​koic)
  • #1495: Fix false positives for Rails/TransactionExitStatement when break is used in loop in transactions. (@​koic)
  • #1483: Fix autocorrection error when Rails/IndexWith has nested offenses. (@​lovro-bikic)

Changes

... (truncated)

Changelog

Sourced from rubocop-rails's changelog.

2.33.3 (2025-08-14)

Bug fixes

  • #1516: Fix wrong autocorrect for Rails/FindByOrAssignmentMemoization. ([@​earlopain][])

2.33.2 (2025-08-13)

Bug fixes

  • #1488: Fix an error for Rails/ReadWriteAttribute with a frozen string attribute name. ([@​viralpraxis][])

2.33.1 (2025-08-12)

Bug fixes

  • #1508: Fix an error for Rails/TransactionExitStatement when transaction is part of a method chain. ([@​earlopain][])
  • #1510: Fix Rails/OrderArguments cop false positives when using column index argument. ([@​viralpraxis][])
  • #1511: Don't register offenses for Rails/WhereExists when exists? is given multiple or splat arguments. ([@​lovro-bikic][])

2.33.0 (2025-08-10)

New features

Bug fixes

  • #1497: Fix bugs in Rails/PluckId and Rails/PluckInWhere. ([@​r7kamura][])
  • #1478: Fix a false negative for Rails/EnvLocal when having preceding conditions. ([@​fatkodima][])
  • #1505: Fix false negatives for Rails/Pluck when map method call is used in a block without a receiver. ([@​koic][])
  • #1486: Fix false positives for Rails/Output when p method is a DSL. ([@​koic][])
  • #1495: Fix false positives for Rails/TransactionExitStatement when break is used in loop in transactions. ([@​koic][])
  • #1483: Fix autocorrection error when Rails/IndexWith has nested offenses. ([@​lovro-bikic][])

Changes

Commits
  • d0dc3fb Cut 2.33.3
  • 6ccab18 Update Changelog
  • 812d404 Merge pull request #1516 from Earlopain/find-by-autocorrect
  • 1872c95 Fix wrong autocorrect for Rails/FindByOrAssignmentMemoization
  • e6c2b15 Switch back docs version to master
  • 61032ee Cut 2.33.2
  • fa6548a Update Changelog
  • 501e5d3 [Fix #1513] Tweak autocorrection code for Rails/FindByOrAssignmentMemoization
  • f178f30 Merge pull request #1514 from viralpraxis/fix-rails-read-write-attribute-froz...
  • 7269eb8 [Fix #1488] Fix an error for Rails/ReadWriteAttribute cop
  • Additional commits viewable in compare view

Updates selenium-webdriver from 4.34.0 to 4.35.0

Release notes

Sourced from selenium-webdriver's releases.

Selenium 4.35.0

Detailed Changelogs by Component

Java     |     Python     |     DotNet     |     Ruby     |     JavaScript

What's Changed

... (truncated)

Changelog

Sourced from selenium-webdriver's changelog.

4.35.0 (2025-08-12)

  • Add CDP for Chrome 139 and remove 136
  • Fix typos in javascript & rb (#16019)
  • Allow to use rubyzip v3 (#16108)
Commits

Updates simplecov-lcov from 0.8.0 to 0.9.0

Release notes

Sourced from simplecov-lcov's releases.

simplecov-lcov v0.9.0

Features

  • Add automated release workflow with release-please (14ca244)
  • Refactor version management and modernize gemspec (2aa5f96)

Bug Fixes

  • Change branch references from main to master (9a841c9)
  • Update branch references from main to master (ea50994)
  • Fix incompatibility with simplecov < 0.18 by adding respond_to? check for branch_coverage? method (0b3a499) — thanks @​RobinDaugherty
  • Fix instance variable not initialized warning for @single_report_path (30e6751) — thanks @​MattFenelon
  • Add LF (Lines Found) and LH (Lines Hit) to LCOV output (32c2516) — thanks @​ricardokrieg
  • Avoid blank lines in LCOV output (b2d0a3b) — thanks @​apiology
Changelog

Sourced from simplecov-lcov's changelog.

0.9.0 (2025-08-24)

Features

  • Add automated release workflow with release-please (14ca244)
  • Refactor version management and modernize gemspec (2aa5f96)

Bug Fixes

Commits
  • a7f3467 chore: fix release workflow
  • 7d045f5 chore: fix gemspec
  • 5898d19 Merge pull request #38 from fortissimo1997/fix-release-workflow
  • df21b45 chore: fix release workflow
  • 69d9d16 Merge pull request #37 from fortissimo1997/release-please--branches--master--...
  • 4ea271e docs: add missing PR entries to 0.9.0 changelog
  • d2b439a chore(master): release simplecov-lcov 0.9.0
  • ea50994 Merge pull request #36 from fortissimo1997/fix-target-branch
  • 9a841c9 fix: change branch references from main to master
  • b17a317 Merge pull request #35 from fortissimo1997/add-release-please
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the ruby-deps group with 6 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [turbo-rails](https://github.com/hotwired/turbo-rails) | `2.0.12` | `2.0.16` |
| [jbuilder](https://github.com/rails/jbuilder) | `2.13.0` | `2.14.1` |
| [rubocop](https://github.com/rubocop/rubocop) | `1.79.1` | `1.80.1` |
| [rubocop-rails](https://github.com/rubocop/rubocop-rails) | `2.32.0` | `2.33.3` |
| [selenium-webdriver](https://github.com/SeleniumHQ/selenium) | `4.34.0` | `4.35.0` |
| [simplecov-lcov](https://github.com/fortissimo1997/simplecov-lcov) | `0.8.0` | `0.9.0` |



Updates `turbo-rails` from 2.0.12 to 2.0.16
- [Release notes](https://github.com/hotwired/turbo-rails/releases)
- [Commits](hotwired/turbo-rails@v2.0.12...v2.0.16)

Updates `jbuilder` from 2.13.0 to 2.14.1
- [Release notes](https://github.com/rails/jbuilder/releases)
- [Commits](rails/jbuilder@v2.13.0...v2.14.1)

Updates `rubocop` from 1.79.1 to 1.80.1
- [Release notes](https://github.com/rubocop/rubocop/releases)
- [Changelog](https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md)
- [Commits](rubocop/rubocop@v1.79.1...v1.80.1)

Updates `rubocop-rails` from 2.32.0 to 2.33.3
- [Release notes](https://github.com/rubocop/rubocop-rails/releases)
- [Changelog](https://github.com/rubocop/rubocop-rails/blob/master/CHANGELOG.md)
- [Commits](rubocop/rubocop-rails@v2.32.0...v2.33.3)

Updates `selenium-webdriver` from 4.34.0 to 4.35.0
- [Release notes](https://github.com/SeleniumHQ/selenium/releases)
- [Changelog](https://github.com/SeleniumHQ/selenium/blob/trunk/rb/CHANGES)
- [Commits](SeleniumHQ/selenium@selenium-4.34.0...selenium-4.35.0)

Updates `simplecov-lcov` from 0.8.0 to 0.9.0
- [Release notes](https://github.com/fortissimo1997/simplecov-lcov/releases)
- [Changelog](https://github.com/fortissimo1997/simplecov-lcov/blob/master/CHANGELOG.md)
- [Commits](fortissimo1997/simplecov-lcov@v0.8.0...v0.9.0)

---
updated-dependencies:
- dependency-name: turbo-rails
  dependency-version: 2.0.16
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: ruby-deps
- dependency-name: jbuilder
  dependency-version: 2.14.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: ruby-deps
- dependency-name: rubocop
  dependency-version: 1.80.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: ruby-deps
- dependency-name: rubocop-rails
  dependency-version: 2.33.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: ruby-deps
- dependency-name: selenium-webdriver
  dependency-version: 4.35.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: ruby-deps
- dependency-name: simplecov-lcov
  dependency-version: 0.9.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: ruby-deps
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies ruby Pull requests that update Ruby code labels Aug 27, 2025
Copy link
Collaborator

@olleolleolle olleolleolle left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

After retrying CI, this passed.

@dependabot squash and merge

@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Aug 28, 2025

Dependabot tried to merge this PR, but received the following error from GitHub:

Squash merges are not allowed on this repository.

@olleolleolle
Copy link
Collaborator

@dependabot merge

@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Aug 28, 2025

Dependabot tried to merge this PR, but received the following error from GitHub:

You're not authorized to push to this branch. Visit https://docs.github.com/repositories/configuring-branches-and-merges-in-your-repository/managing-protected-branches/about-protected-branches for more information.

@olleolleolle olleolleolle merged commit 45fd9d1 into master Aug 28, 2025
4 of 5 checks passed
@olleolleolle olleolleolle deleted the dependabot/bundler/ruby-deps-7bf0067618 branch August 28, 2025 09:20
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies ruby Pull requests that update Ruby code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants