Skip to content
New issue

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

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

Already on GitHub? # to your account

Bump the dev-dependencies group across 1 directory with 6 updates #11504

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 6, 2025

Bumps the dev-dependencies group with 6 updates in the /updater directory:

Package From To
debug 1.9.2 1.10.0
rubocop 1.67.0 1.71.2
rubocop-performance 1.22.1 1.23.1
rubocop-sorbet 0.8.6 0.8.7
webmock 3.24.0 3.25.0
webrick 1.8.2 1.9.1

Updates debug from 1.9.2 to 1.10.0

Release notes

Sourced from debug's releases.

v1.10.0

What's Changed

New Contributors

Full Changelog: ruby/debug@v1.9.2...v1.10.0

Commits
  • bead098 v1.10.0
  • 51b0161 port_range lvar is not defined
  • affee18 Add option for trying a range of TCP ports
  • 87d607d allow puts without argument
  • 3685859 Improve RUBYOPT's handling in tests
  • ee59c85 Prompt assertion should use assert_raw_line_text instead of assert_line_text
  • 07df517 Modify misc/README.md.erb and regenerate README
  • 1405bf8 Fix minor typos / grammar in README.md
  • 9c42795 Add changelog_uri to gemspec (#1106)
  • ef5e54c Fix flaky tests
  • Additional commits viewable in compare view

Updates rubocop from 1.67.0 to 1.71.2

Release notes

Sourced from rubocop's releases.

RuboCop 1.71.2

Bug fixes

  • #13782: Fix an error Layout/ElseAlignment when else is part of a numblock. (@​earlopain)
  • #13395: Fix a false positive for Lint/UselessAssignment when assigning in branch and block. (@​pCosta99)
  • #13783: Fix a false positive for Lint/Void when each numblock with conditional expressions that has multiple statements. (@​earlopain)
  • #13787: Fix incorrect autocorrect for Style/ExplicitBlockArgument when using arguments of zsuper in method definition. (@​koic)
  • #13785: Fix Style/EachWithObject cop error in case of single block argument. (@​viralpraxis)
  • #13781: Fix a false positive for Lint/UnmodifiedReduceAccumulator when omitting the accumulator in a nested numblock. (@​earlopain)

RuboCop 1.71.1

Bug fixes

  • #10081: Add the missing include RuboCop::RSpec::ExpectOffense in rubocop/rspec/support.rb. (@​d4rky-pl)
  • #13765: Fix a false negative for Lint/AmbiguousBlockAssociation with numblocks. (@​earlopain)
  • #13759: Fix a false negative for Lint/ConstantDefinitionInBlock with numblocks. (@​earlopain)
  • #13741: Register an offense for Naming/BlockForwarding and Style/ArgumentsForwarding with Ruby >= 3.4 when the block argument is referenced inside a block. This was previously disabled because of a bug in Ruby 3.3.0. (@​earlopain)
  • #13777: Fix a false negative for Layout/EmptyLineBetweenDefs with DefLikeMacros and numblocks. (@​earlopain)
  • #13769: Fix a false negative for Style/RedundantParentheses with numblocks. (@​earlopain)
  • #13780: Fix a false positive Style/AccessModifierDeclarations when using access modifier in a numblock. (@​earlopain)
  • #13775: Fix a false positive for Lint/AssignmentInCondition when assigning in numblocks. (@​earlopain)
  • #13773: Fix false positives for Layout/RedundantLineBreak when using numbered block parameter. (@​koic)
  • #13761: Fix a false positive for Style/SuperArguments when calling super in a numblock. (@​earlopain)
  • #13768: Fix a false positive for Lint/UnreachableCode with instance_eval numblock. (@​earlopain)
  • #13750: Fix false positives for Style/RedundantSelfAssignment when assigning to attribute of self. (@​koic)
  • #13739: Fix false positive for Style/HashExcept and Style/HashSlice when checking for inclusion with a range. (@​dvandersluis)
  • #13751: Fix false positive in Layout/ExtraSpacing with ForceEqualSignAlignment: true for endless methods. (@​dvandersluis)
  • #13767: Fix Style/IdenticalConditionalBranches autocorrect when condition is inside assignment. (@​dvandersluis)
  • #13764: Fix a false negative for Layout/SingleLineBlockChain with numblocks. (@​earlopain)
  • #13771: Fix wrong autocorrect for Style/SoleNestedConditional when using numblocks. (@​earlopain)

RuboCop 1.71

New features

Bug fixes

  • #13684: Fix a false positive for Style/FrozenStringLiteralComment when using the frozen string literal magic comment in Active Admin's arb files. (@​koic)

... (truncated)

Changelog

Sourced from rubocop's changelog.

1.71.2 (2025-02-04)

Bug fixes

  • #13782: Fix an error Layout/ElseAlignment when else is part of a numblock. ([@​earlopain][])
  • #13395: Fix a false positive for Lint/UselessAssignment when assigning in branch and block. ([@​pCosta99][])
  • #13783: Fix a false positive for Lint/Void when each numblock with conditional expressions that has multiple statements. ([@​earlopain][])
  • #13787: Fix incorrect autocorrect for Style/ExplicitBlockArgument when using arguments of zsuper in method definition. ([@​koic][])
  • #13785: Fix Style/EachWithObject cop error in case of single block argument. ([@​viralpraxis][])
  • #13781: Fix a false positive for Lint/UnmodifiedReduceAccumulator when omitting the accumulator in a nested numblock. ([@​earlopain][])

1.71.1 (2025-01-31)

Bug fixes

  • #10081: Add the missing include RuboCop::RSpec::ExpectOffense in rubocop/rspec/support.rb. ([@​d4rky-pl][])
  • #13765: Fix a false negative for Lint/AmbiguousBlockAssociation with numblocks. ([@​earlopain][])
  • #13759: Fix a false negative for Lint/ConstantDefinitionInBlock with numblocks. ([@​earlopain][])
  • #13741: Register an offense for Naming/BlockForwarding and Style/ArgumentsForwarding with Ruby >= 3.4 when the block argument is referenced inside a block. This was previously disabled because of a bug in Ruby 3.3.0. ([@​earlopain][])
  • #13777: Fix a false negative for Layout/EmptyLineBetweenDefs with DefLikeMacros and numblocks. ([@​earlopain][])
  • #13769: Fix a false negative for Style/RedundantParentheses with numblocks. ([@​earlopain][])
  • #13780: Fix a false positive Style/AccessModifierDeclarations when using access modifier in a numblock. ([@​earlopain][])
  • #13775: Fix a false positive for Lint/AssignmentInCondition when assigning in numblocks. ([@​earlopain][])
  • #13773: Fix false positives for Layout/RedundantLineBreak when using numbered block parameter. ([@​koic][])
  • #13761: Fix a false positive for Style/SuperArguments when calling super in a numblock. ([@​earlopain][])
  • #13768: Fix a false positive for Lint/UnreachableCode with instance_eval numblock. ([@​earlopain][])
  • #13750: Fix false positives for Style/RedundantSelfAssignment when assigning to attribute of self. ([@​koic][])
  • #13739: Fix false positive for Style/HashExcept and Style/HashSlice when checking for inclusion with a range. ([@​dvandersluis][])
  • #13751: Fix false positive in Layout/ExtraSpacing with ForceEqualSignAlignment: true for endless methods. ([@​dvandersluis][])
  • #13767: Fix Style/IdenticalConditionalBranches autocorrect when condition is inside assignment. ([@​dvandersluis][])
  • #13764: Fix a false negative for Layout/SingleLineBlockChain with numblocks. ([@​earlopain][])
  • #13771: Fix wrong autocorrect for Style/SoleNestedConditional when using numblocks. ([@​earlopain][])

1.71.0 (2025-01-22)

New features

Bug fixes

  • #13684: Fix a false positive for Style/FrozenStringLiteralComment when using the frozen string literal magic comment in Active Admin's arb files. ([@​koic][])
  • #13372: Add rubocop_cache to the path given by --cache-root when pruning cache. ([@​capncavedan][])
  • #13257: Fix department disable/enable comments enabling the cop for the whole file even if that file is excluded by the cop. ([@​earlopain][])
  • #13704: Fix false positives for Lint/OutOfRangeRegexpRef when matching with match using safe navigation. ([@​koic][])
  • #13720: Fix false positives for Style/BlockDelimiters when using brace blocks as conditions under EnforcedStyle: semantic. ([@​koic][])
  • #13688: Fix false negative on Style/RedundantLineContinuation when the continuation is preceded by an interpolated string. ([@​dvandersluis][])
  • #13677: Fix false negative on Style/RedundantLineContinuation when the continuation is followed by a percent array. ([@​dvandersluis][])
  • #13692: Fix false positive in Style/RedundantLineContinuation when the ruby code ends with a commented continuation. ([@​dvandersluis][])

... (truncated)

Commits
  • 2cd0ca2 Cut 1.71.2
  • b205529 Update Changelog
  • da31e5a Merge pull request #13785 from viralpraxis/fix-style-each-with-object-cop-err...
  • b3e86f6 Fix Style/EachWithObject cop error in case if single block argument
  • 7e0ffa0 [Fix #13787] Fix incorrect autocorrect for Style/ExplicitBlockArgument
  • 910795c Merge pull request #13409 from pCosta99/issue/13395
  • 0d8d9ed Merge pull request #13784 from koic/stablize_help_command_line_option_test
  • 8c1dc79 Stabilize help command line option test
  • 933c879 Merge pull request #13783 from Earlopain/lint-void-numblock
  • 8a48e61 Merge pull request #13782 from Earlopain/else-alignment-numblock
  • Additional commits viewable in compare view

Updates rubocop-performance from 1.22.1 to 1.23.1

Release notes

Sourced from rubocop-performance's releases.

RuboCop Performance 1.23.1

Bug fixes

  • #478: Fix Performance/RedundantStringChars cop error in case of implicit receiver. (@​viralpraxis)
  • #480: Fix Performance/Squeeze cop error on frozen AST string node value. (@​viralpraxis)

RuboCop Performance 1.23.0

New features

Changelog

Sourced from rubocop-performance's changelog.

1.23.1 (2025-01-04)

Bug fixes

  • #478: Fix Performance/RedundantStringChars cop error in case of implicit receiver. ([@​viralpraxis][])
  • #480: Fix Performance/Squeeze cop error on frozen AST string node value. ([@​viralpraxis][])

1.23.0 (2024-11-14)

New features

Commits
  • 2b5c8c6 Cut 1.23.1
  • cfc046b Update Changelog
  • f0e791c Use RuboCop RSpec 3.3 for development
  • f8e9c2b Bump license years to 2025
  • 5d78dea Merge pull request #483 from koic/ci_against_ruby_34
  • 447e273 CI against Ruby 3.4
  • d058c88 Merge pull request #480 from viralpraxis/fix-performance-squeeze-cop-error-on...
  • 9fdbe4e Fix Performance/Squeeze cop error on frozen AST string node value
  • ad9fd62 Merge pull request #481 from kyanagi/patch-1
  • 087843a [DOC] Fix markup of Performance/Count
  • Additional commits viewable in compare view

Updates rubocop-sorbet from 0.8.6 to 0.8.7

Release notes

Sourced from rubocop-sorbet's releases.

v0.8.7

What's Changed

🛠 Other Changes

Full Changelog: Shopify/rubocop-sorbet@v0.8.6...v0.8.7

Commits
  • 92647a0 Bump version to v0.8.7
  • ac6394b Merge pull request #265 from Earlopain/rubocop-warning
  • b66b4d7 Remove warning from RuboCop in rbi config
  • 55b99e8 Merge pull request #264 from Shopify/dependabot/bundler/minor-and-patch-245c7...
  • 23cc65a Bump rubocop from 1.66.1 to 1.67.0 in the minor-and-patch group
  • See full diff in compare view

Updates webmock from 3.24.0 to 3.25.0

Changelog

Sourced from webmock's changelog.

3.25.0

  • Resolve net-http adapter deprecation Ruby 3.4

    Thanks to Earlopain

Commits
  • 8384080 Version 3.25.0
  • dff6488 Merge pull request #1096 from koic/workaround_for_jruby_ci_matrix_is_failing
  • 6aacb40 Suspend JRuby CI matrix
  • cb65c87 Merge pull request #1097 from koic/fix_build_error_in_ruby_3_5_ci_matrix
  • 1e7e9df Fix a build error for Ruby 3.5 CI matrix
  • ab43ce9 Merge pull request #1098 from koic/add_ostruct_to_gemfile
  • 3acba79 Add ostruct gem to Gemfile to prevent an error in development with Ruby 3.5
  • d66d1cd Merge pull request #1095 from koic/revert_1091
  • 7ecd77c Revert "Fix included modules on Ruby 3.4"
  • e8c5129 Merge pull request #1091 from sailor/master
  • Additional commits viewable in compare view

Updates webrick from 1.8.2 to 1.9.1

Release notes

Sourced from webrick's releases.

v1.9.1

What's Changed

Full Changelog: ruby/webrick@v1.9.0...v1.9.1

v1.9.0

What's Changed

New Contributors

Full Changelog: ruby/webrick@v1.8.2...v1.9.0

Commits
  • 307f24c Bump up v1.9.1
  • 7430364 Change backquote to singlequote in messages (#154)
  • 1ff2b89 Fixed version number of rubygems/release-gem
  • fc91235 Merge pull request #159 from ruby/dependabot/github_actions/rubygems/release-...
  • a34a69b Bump rubygems/release-gem
  • cde6dd4 Merge pull request #157 from ruby/dependabot/github_actions/step-security/har...
  • 633acb6 Bump step-security/harden-runner from 2.10.1 to 2.10.2
  • cb93ef8 Fix bugs and improve (#152)
  • ef2c69d Block of server.start is optional (#155)
  • 516db77 Merge pull request #153 from znz/prepare-new-release
  • 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

@dependabot dependabot bot requested a review from a team as a code owner February 6, 2025 11:32
@dependabot dependabot bot added dependencies ruby Dependabot pull requests that update Ruby code labels Feb 6, 2025
@dependabot dependabot bot force-pushed the dependabot/bundler/updater/dev-dependencies-e5cc39bc96 branch 7 times, most recently from 2a15b26 to 54b7c7a Compare February 12, 2025 22:20
Bumps the dev-dependencies group with 6 updates in the /updater directory:

| Package | From | To |
| --- | --- | --- |
| [debug](https://github.com/ruby/debug) | `1.9.2` | `1.10.0` |
| [rubocop](https://github.com/rubocop/rubocop) | `1.67.0` | `1.71.2` |
| [rubocop-performance](https://github.com/rubocop/rubocop-performance) | `1.22.1` | `1.23.1` |
| [rubocop-sorbet](https://github.com/shopify/rubocop-sorbet) | `0.8.6` | `0.8.7` |
| [webmock](https://github.com/bblimke/webmock) | `3.24.0` | `3.25.0` |
| [webrick](https://github.com/ruby/webrick) | `1.8.2` | `1.9.1` |



Updates `debug` from 1.9.2 to 1.10.0
- [Release notes](https://github.com/ruby/debug/releases)
- [Commits](ruby/debug@v1.9.2...v1.10.0)

Updates `rubocop` from 1.67.0 to 1.71.2
- [Release notes](https://github.com/rubocop/rubocop/releases)
- [Changelog](https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md)
- [Commits](rubocop/rubocop@v1.67.0...v1.71.2)

Updates `rubocop-performance` from 1.22.1 to 1.23.1
- [Release notes](https://github.com/rubocop/rubocop-performance/releases)
- [Changelog](https://github.com/rubocop/rubocop-performance/blob/master/CHANGELOG.md)
- [Commits](rubocop/rubocop-performance@v1.22.1...v1.23.1)

Updates `rubocop-sorbet` from 0.8.6 to 0.8.7
- [Release notes](https://github.com/shopify/rubocop-sorbet/releases)
- [Commits](Shopify/rubocop-sorbet@v0.8.6...v0.8.7)

Updates `webmock` from 3.24.0 to 3.25.0
- [Changelog](https://github.com/bblimke/webmock/blob/master/CHANGELOG.md)
- [Commits](bblimke/webmock@v3.24.0...v3.25.0)

Updates `webrick` from 1.8.2 to 1.9.1
- [Release notes](https://github.com/ruby/webrick/releases)
- [Commits](ruby/webrick@v1.8.2...v1.9.1)

---
updated-dependencies:
- dependency-name: debug
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: rubocop
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: rubocop-performance
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: rubocop-sorbet
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: webmock
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: webrick
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/bundler/updater/dev-dependencies-e5cc39bc96 branch from 54b7c7a to 6004e95 Compare February 13, 2025 11:44
# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
dependencies ruby Dependabot pull requests that update Ruby code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants