Skip to content

Conversation

@github-actions
Copy link

@github-actions github-actions bot commented May 5, 2025

Bumps the everything group in /bundler-example with 3 updates: rubocop, toml-rb and rack.

Updates rubocop from 0.76.0 to 1.75.5

Release notes

Sourced from rubocop's releases.

RuboCop v1.75.5

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)

RuboCop v1.75.4

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

RuboCop v1.75.3

Bug fixes

... (truncated)

Changelog

Sourced from rubocop's changelog.

1.75.5 (2025-05-05)

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][])

1.75.4 (2025-04-28)

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

1.75.3 (2025-04-22)

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][])

... (truncated)

Commits
  • 4c07aa6 Cut 1.75.5
  • 12c3e0a Update Changelog
  • 8f7c4cd Follow-up to #14146
  • ddbb2a1 Merge pull request #14151 from viralpraxis/fix-lint-void-cop-error-on-nested-...
  • ac3b746 [Fix #14072] Resolve autocorrect issue in Layout/HashAlignment
  • 187a663 Fix an infinite loop error for Layout/SpaceAfterSemicolon with `Layout/Spac...
  • 1f95def Layout/SpaceInsideArrayLiteralBrackets make aware of array pattern matching
  • 30d8275 [Fix #14142] Layout/SpaceInsideHashLiteralBraces make aware of hash pattern...
  • 7bc3762 Fix Lint/Void cop error on nested empty begin
  • d6e40f0 Merge pull request #14147 from viralpraxis/fix-lint-literal-as-condition-cop-...
  • Additional commits viewable in compare view

Updates toml-rb from 2.2.0 to 4.0.0

Release notes

Sourced from toml-rb's releases.

v4.0.0

What's Changed

Full Changelog: emancu/toml-rb@v3.0.1...v4.0.0

v3.0.1

What's Changed

New Contributors

Full Changelog: emancu/toml-rb@v3.0.0...v3.0.1

v3.0.0

The reason for releasing a major version is the fix on #146; even if it's an error, it breaks the previous behaviour that worked for a really long time and I don't want to cause unexpected issues to existing users.

What's Changed

New Contributors

Full Changelog: emancu/toml-rb@v2.2.0...v3.0.0

Commits
  • 36d9d5d Bump to v4.0.0
  • a7fc9e5 Merge pull request #154 from emancu/update_tests
  • 43d9d98 Update tests
  • 755c874 Merge pull request #153 from emancu/152/support_array_with_mixed_types
  • 61dc8de Simplify the array parser, now that any type is acceptable.
  • f3bc78e Since the Toml spec v1.0.0 there are some breaking changes
  • 28b2ebc Bump to v3.0.1
  • a9553af Merge pull request #148 from dreid/empty-keys
  • 6572c45 Support empty keys by quoting them. Fixes #147
  • 12b0048 Bump to v3.0.0
  • Additional commits viewable in compare view

Updates rack from 2.1.4 to v3.1.13

Changelog

Sourced from rack's changelog.

[3.1.13] - 2025-04-13

[3.1.12] - 2025-03-11

Security

[3.1.11] - 2025-03-04

Security

[3.1.10] - 2025-02-12

Security

[3.1.9] - 2025-01-31

Fixed

[3.1.8] - 2024-10-14

Fixed

[3.1.7] - 2024-07-11

Fixed

[3.1.6] - 2024-07-03

Fixed

  • Fix several edge cases in Rack::Request#parse_http_accept_header's implementation. (#2226, [@​ioquatix])

[3.1.5] - 2024-07-02

... (truncated)

Commits
  • 0379537 Bump patch version.
  • 8e3c9b1 Ensure Rack::ETag correctly updates response body. (#2324)
  • e8f4760 Bump patch version.
  • 413b834 Update changelog.
  • 70cb322 Use a fully resolved file path when confirming if a file can be served by `Ra...
  • c827c33 Bump patch version.
  • aeac570 Use #inspect to prevent log injection.
  • 0349488 Bump patch version.
  • 4aa1978 Escape non-printable characters when logging.
  • e217a39 Bump patch version.
  • Additional commits viewable in compare view

Bumps the everything group in /bundler-example with 3 updates: [rubocop](https://github.com/rubocop/rubocop), [toml-rb](https://github.com/emancu/toml-rb) and [rack](https://github.com/rack/rack).

Updates `rubocop` from 0.76.0 to 1.75.5
- [Release notes](https://github.com/rubocop/rubocop/releases)
- [Changelog](https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md)
- [Commits](rubocop/rubocop@v0.76.0...v1.75.5)

Updates `toml-rb` from 2.2.0 to 4.0.0
- [Release notes](https://github.com/emancu/toml-rb/releases)
- [Commits](emancu/toml-rb@v2.2.0...v4.0.0)

Updates `rack` from 2.1.4 to v3.1.13
- [Release notes](https://github.com/rack/rack/releases)
- [Changelog](https://github.com/rack/rack/blob/main/CHANGELOG.md)
- [Commits](rack/rack@f3cf79d...d700c2b)
@github-actions github-actions bot force-pushed the dependabot-21b531c3275fd173638825eab9e23f39a59bab4a branch from 96c8fa9 to e6bbed5 Compare May 5, 2025 20:19
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

1 participant