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

Bump the dev-dependencies group across 1 directory with 7 updates #574

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 9, 2024

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

Package From To
rubocop 1.67.0 1.69.1
rubocop-sorbet 0.8.6 0.8.7
sorbet-runtime 0.5.11618 0.5.11690
mocha 2.5.0 2.7.0
minitest 5.25.1 5.25.4

Updates rubocop from 1.67.0 to 1.69.1

Release notes

Sourced from rubocop's releases.

RuboCop 1.69.1

Bug fixes

  • #13502: Fix an incorrect autocorrect for Style/DigChain when using safe navigation method chain with dig method. (@​koic)
  • #13505: Fix an error for Style/ParallelAssignment when using the anonymous splat operator. (@​earlopain)
  • #13184: Fix some false positives in Lint/UnreachableCode. (@​isuckatcs)
  • #13494: Fix false positives for Style/HashExcept cop when using reject/!include?, reject/!in? or select/!exclude? combinations. (@​lovro-bikic)
  • #13522: Fix Lint/UnescapedBracketInRegexp cop failure with invalid regular expression. (@​viralpraxis)
  • #13523: Fix Style::AccessModifierDeclarations cop failure in case of if node without else. (@​viralpraxis)
  • #13524: Fix Style/RedundantArgument cop failure while inspecting string literal with invalid encoding. (@​viralpraxis)
  • #13528: Fix Style/RedundantParentheses cop failure in case of splatted case node without condition. (@​viralpraxis)
  • #13521: Fix Style/RedundantSelf cop failure with kwnilarg argument node. (@​viralpraxis)
  • #13526: Fix Style/StringConcatenation cop failure when there are mixed implicit and explicit concatenations. (@​viralpraxis)
  • #13511: Fix false positive in Lint/UnescapedBracketInRegexp when using regexp_parser 2.9.2 and earlier. (@​dvandersluis)
  • #13096: Update Style/BlockDelimiters to not change braces when they are required for syntax. (@​dvandersluis)
  • #13512: Update Style/LambdaCall to be aware of safe navigation. (@​dvandersluis)

RuboCop 1.69

New features

Bug fixes

  • #13455: Fix a false positive for Layout/EmptyLineAfterGuardClause when using a guard clause outside oneliner block. (@​koic)
  • #13412: Fix a false positive for Style/RedundantLineContinuation when there is a line continuation at the end of Ruby code followed by __END__ data. (@​koic)
  • #13476: Allow to write generics type of RBS::Inline annotation after subclass definition in Style/CommentedKeyword. ([@​dak2][])
  • #13441: Fix an incorrect autocorrect for Style/IfWithSemicolon when using return with value in if with a semicolon is used. (@​koic)
  • #13448: Fix an incorrect autocorrect for Style/IfWithSemicolon when the then body contains an arithmetic operator method call with an argument. (@​koic)
  • #13199: Make Style/RedundantCondition skip autocorrection when a branch has a comment. (@​koic)
  • #13411: Fix Style/BitwisePredicate when having regular method. ([@​d4be4st][])
  • #13432: Fix false positive for Lint/FloatComparison against nil. (@​lovro-bikic)
  • #13461: Fix false positives for Lint/InterpolationCheck when using invalid syntax in interpolation. (@​koic)
  • #13402: Fix a false positive for Lint/SafeNavigationConsistency when using unsafe navigation with both && and ||. (@​koic)
  • #13434: Fix a false positive for Naming/MemoizedInstanceVariableName for assignment methods`. (@​earlopain)
  • #13415: Fix false positives for Naming/MemoizedInstanceVariableName when using initialize_clone, initialize_copy, or initialize_dup. (@​koic)
  • #13421: Fix false positives for Style/SafeNavigation when using a method chain that exceeds the MaxChainLength value and includes safe navigation operator. (@​koic)
  • #13433: Fix autocorrection for Style/AccessModifierDeclarations for multiple inline symbols. (@​dvandersluis)

... (truncated)

Changelog

Sourced from rubocop's changelog.

1.69.1 (2024-12-03)

Bug fixes

  • #13502: Fix an incorrect autocorrect for Style/DigChain when using safe navigation method chain with dig method. ([@​koic][])
  • #13505: Fix an error for Style/ParallelAssignment when using the anonymous splat operator. ([@​earlopain][])
  • #13184: Fix some false positives in Lint/UnreachableCode. ([@​isuckatcs][])
  • #13494: Fix false positives for Style/HashExcept cop when using reject/!include?, reject/!in? or select/!exclude? combinations. ([@​lovro-bikic][])
  • #13522: Fix Lint/UnescapedBracketInRegexp cop failure with invalid regular expression. ([@​viralpraxis][])
  • #13523: Fix Style::AccessModifierDeclarations cop failure in case of if node without else. ([@​viralpraxis][])
  • #13524: Fix Style/RedundantArgument cop failure while inspecting string literal with invalid encoding. ([@​viralpraxis][])
  • #13528: Fix Style/RedundantParentheses cop failure in case of splatted case node without condition. ([@​viralpraxis][])
  • #13521: Fix Style/RedundantSelf cop failure with kwnilarg argument node. ([@​viralpraxis][])
  • #13526: Fix Style/StringConcatenation cop failure when there are mixed implicit and explicit concatenations. ([@​viralpraxis][])
  • #13511: Fix false positive in Lint/UnescapedBracketInRegexp when using regexp_parser 2.9.2 and earlier. ([@​dvandersluis][])
  • #13096: Update Style/BlockDelimiters to not change braces when they are required for syntax. ([@​dvandersluis][])
  • #13512: Update Style/LambdaCall to be aware of safe navigation. ([@​dvandersluis][])

1.69.0 (2024-11-26)

New features

Bug fixes

  • #13455: Fix a false positive for Layout/EmptyLineAfterGuardClause when using a guard clause outside oneliner block. ([@​koic][])
  • #13412: Fix a false positive for Style/RedundantLineContinuation when there is a line continuation at the end of Ruby code followed by __END__ data. ([@​koic][])
  • #13476: Allow to write generics type of RBS::Inline annotation after subclass definition in Style/CommentedKeyword. ([@​dak2][])
  • #13441: Fix an incorrect autocorrect for Style/IfWithSemicolon when using return with value in if with a semicolon is used. ([@​koic][])
  • #13448: Fix an incorrect autocorrect for Style/IfWithSemicolon when the then body contains an arithmetic operator method call with an argument. ([@​koic][])
  • #13199: Make Style/RedundantCondition skip autocorrection when a branch has a comment. ([@​koic][])
  • #13411: Fix Style/BitwisePredicate when having regular method. ([@​d4be4st][])
  • #13432: Fix false positive for Lint/FloatComparison against nil. ([@​lovro-bikic][])
  • #13461: Fix false positives for Lint/InterpolationCheck when using invalid syntax in interpolation. ([@​koic][])
  • #13402: Fix a false positive for Lint/SafeNavigationConsistency when using unsafe navigation with both && and ||. ([@​koic][])
  • #13434: Fix a false positive for Naming/MemoizedInstanceVariableName for assignment methods`. ([@​earlopain][])
  • #13415: Fix false positives for Naming/MemoizedInstanceVariableName when using initialize_clone, initialize_copy, or initialize_dup. ([@​koic][])
  • #13421: Fix false positives for Style/SafeNavigation when using a method chain that exceeds the MaxChainLength value and includes safe navigation operator. ([@​koic][])
  • #13433: Fix autocorrection for Style/AccessModifierDeclarations for multiple inline symbols. ([@​dvandersluis][])
  • #13430: Fix EmptyLinesAroundMethodBody for methods with arguments spanning multiple lines. ([@​aduth][])
  • #13438: Fix incorrect correction in Lint/Void if an operator is called in a void context using a dot. ([@​dvandersluis][])
  • #13419: Fix Lint/DeprecatedOpenSSLConstant false positive when the argument is a safe navigation method call. ([@​dvandersluis][])
  • #13404: Fix Style/AccessModifierDeclarations to register (as positive or negative, depending on AllowModifiersOnSymbols value) access modifiers with multiple symbols. ([@​dvandersluis][])
  • #13436: Fix incorrect offense and autocorrect for Lint/RedundantSplatExpansion when percent literal array is used in a safe navigation method call. ([@​lovro-bikic][])

... (truncated)

Commits
  • 3d95b38 Cut 1.69.1
  • c60ffa5 Update Changelog
  • 4f2ac18 Lint/BinaryOperatorWithIdenticalOperands: Remove MATH_OPERATORS as they will ...
  • ea4aa48 Merge pull request #13529 from dvandersluis/generator-internal-affairs
  • 12e1ea2 Update rake new_cop to handle InternalAffairs cops
  • 84f3d43 Specify maximum_target_ruby_version for a handful of cops, document it
  • ef8009c Merge pull request #13531 from rubocop/dependabot/github_actions/karancode/ya...
  • 7715ed7 Bump karancode/yamllint-github-action from 2.1.1 to 3.0.0
  • cc43be0 Merge pull request #13528 from viralpraxis/fix-style-redundant-parentheses-co...
  • bd8b674 Fix Style/RedundantParentheses cop failure in case of splatted case node ...
  • 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 sorbet-runtime from 0.5.11618 to 0.5.11690

Release notes

Sourced from sorbet-runtime's releases.

sorbet 0.5.11689.20241206154643-ad0625c2d

To use Sorbet add this line to your Gemfile:

gem 'sorbet', '0.5.11689', :group => :development
gem 'sorbet-runtime', '0.5.11689'

sorbet 0.5.11688.20241206112350-5a733f244

To use Sorbet add this line to your Gemfile:

gem 'sorbet', '0.5.11688', :group => :development
gem 'sorbet-runtime', '0.5.11688'

sorbet 0.5.11687.20241206104606-1a49f8e15

To use Sorbet add this line to your Gemfile:

gem 'sorbet', '0.5.11687', :group => :development
gem 'sorbet-runtime', '0.5.11687'

sorbet 0.5.11686.20241206132151-f4775ff46

To use Sorbet add this line to your Gemfile:

gem 'sorbet', '0.5.11686', :group => :development
gem 'sorbet-runtime', '0.5.11686'

sorbet 0.5.11685.20241205215431-5fdcd4601

To use Sorbet add this line to your Gemfile:

gem 'sorbet', '0.5.11685', :group => :development
gem 'sorbet-runtime', '0.5.11685'

sorbet 0.5.11684.20241205145042-7e0c2ac11

To use Sorbet add this line to your Gemfile:

gem 'sorbet', '0.5.11684', :group => :development
gem 'sorbet-runtime', '0.5.11684'

sorbet 0.5.11683.20241205131847-ffca655eb

To use Sorbet add this line to your Gemfile:

gem 'sorbet', '0.5.11683', :group => :development
gem 'sorbet-runtime', '0.5.11683'

sorbet 0.5.11682.20241205113541-edb637350

... (truncated)

Commits

Updates sorbet from 0.5.11618 to 0.5.11690

Release notes

Sourced from sorbet's releases.

sorbet 0.5.11689.20241206154643-ad0625c2d

To use Sorbet add this line to your Gemfile:

gem 'sorbet', '0.5.11689', :group => :development
gem 'sorbet-runtime', '0.5.11689'

sorbet 0.5.11688.20241206112350-5a733f244

To use Sorbet add this line to your Gemfile:

gem 'sorbet', '0.5.11688', :group => :development
gem 'sorbet-runtime', '0.5.11688'

sorbet 0.5.11687.20241206104606-1a49f8e15

To use Sorbet add this line to your Gemfile:

gem 'sorbet', '0.5.11687', :group => :development
gem 'sorbet-runtime', '0.5.11687'

sorbet 0.5.11686.20241206132151-f4775ff46

To use Sorbet add this line to your Gemfile:

gem 'sorbet', '0.5.11686', :group => :development
gem 'sorbet-runtime', '0.5.11686'

sorbet 0.5.11685.20241205215431-5fdcd4601

To use Sorbet add this line to your Gemfile:

gem 'sorbet', '0.5.11685', :group => :development
gem 'sorbet-runtime', '0.5.11685'

sorbet 0.5.11684.20241205145042-7e0c2ac11

To use Sorbet add this line to your Gemfile:

gem 'sorbet', '0.5.11684', :group => :development
gem 'sorbet-runtime', '0.5.11684'

sorbet 0.5.11683.20241205131847-ffca655eb

To use Sorbet add this line to your Gemfile:

gem 'sorbet', '0.5.11683', :group => :development
gem 'sorbet-runtime', '0.5.11683'

sorbet 0.5.11682.20241205113541-edb637350

... (truncated)

Commits

Updates tapioca from 0.16.3 to 0.16.5

Release notes

Sourced from tapioca's releases.

v0.16.5

What's Changed

✨ Enhancements

🐛 Bug Fixes

New Contributors

Full Changelog: Shopify/tapioca@v0.16.4...v0.16.5

v0.16.4

What's Changed

✨ Enhancements

🐛 Bug Fixes

New Contributors

Full Changelog: Shopify/tapioca@v0.16.3...v0.16.4

Commits
  • ebb0cc2 Bump version to v0.16.5
  • f514052 Merge pull request #2098 from Shopify/vs-pass-addon-to-loader
  • 70373b7 Pass lsp addon option to DSL loader
  • 3c82d8f Merge pull request #2097 from Shopify/vs-pass-addon-option-to-dsl
  • b1ee1c5 Pass LSP add-on option to DSL
  • 3eb102a Merge pull request #2093 from Shopify/ko/tapioca-addon-3
  • c630b69 Refactor checksum & use outgoing_queue for logging
  • f5a1d3d Merge pull request #2094 from Shopify/andyw8/update-minitest-for-ruby-lsp
  • 5d9c3d2 Update Minitest for improved test running experience
  • fc04405 Merge pull request #2089 from rzane/workers
  • Additional commits viewable in compare view

Updates mocha from 2.5.0 to 2.7.0

Changelog

Sourced from mocha's changelog.

2.7.0

External changes

Internal changes

  • Workaround for JRuby jar-dependencies issue (#690)
  • Ruby v3.4 stacktrace uses single-quote vs backtick (#688 & #689) - thanks to Vít Ondruch

WARNING: This release fixes a very old bug

  • The bug relates to the use of Expectation#never in combination with other expectations on the same method.

  • Please ensure you fix the relevant deprecation warnings when running against v2.6.1 before upgrading to v2.7.0.

  • Previously, the following test would have passed, but now it will fail with an unexpected invocation error on the foo.bar line.

    foo = mock('foo') foo.stubs(:bar) foo.expects(:bar).never foo.bar

2.6.1

External changes

  • Fix logic for displaying deprecation warning for expectation with never cardinality (#686) - thanks to @​davidstosik for reporting

2.6.0

External changes

  • Expectation with never cardinality should display deprecation warning (#681) - thanks to @​ducmtran for reporting and testing

WARNING: This release results in some incorrect deprecation warnings:

  • The logic for displaying the deprecation warnings is fixed in v2.6.1 (#686).

Internal changes

  • Simplify backtrace related assertions (#680)
  • Remove unused ExpectationList#match_but_out_of_order (f2fa9919)
Commits
  • f2e8ab1 [skip ci] Update documentation for v2.7.0
  • 8faedac Bump version to 2.7.0 & prepare for release
  • b2b1773 Merge pull request #679 from freerange/expectation-with-never-cardinality-sho...
  • d9a2254 Fail fast if invocation matches never expectation
  • 727ce52 Merge pull request #689 from freerange/ruby-3.4-backtick
  • 009f348 Ruby v3.4 stacktrace uses single-quote vs backtick
  • 52446eb Add Ruby v3.4.0-preview2 to CI in prep for v3.4.0
  • bc144ae Merge pull request #690 from freerange/workaround-for-jruby-jar-dependencies-...
  • 3127e00 Workaround for JRuby jar-dependencies issue
  • 5f660dc [skip ci] Update documentation for v2.7.0
  • Additional commits viewable in compare view

Updates minitest from 5.25.1 to 5.25.4

Changelog

Sourced from minitest's changelog.

=== 5.25.4 / 2024-12-03

  • 1 bug fix:

    • Fix for must_verify definition if only requiring minitest/mock (but why?).

=== 5.25.3 / 2024-12-03

  • 5 bug fixes:

    • Fixed assert_mock to fail instead of raise on unmet mock expectations.
    • Fixed assert_mock to take an optional message argument.
    • Fixed formatting of unmet mock expectation messages.
    • Fixed missing must_verify expectation to match assert_mock.
    • minitest/pride: Fixed to use true colors with *-direct terminals (bk2204)

=== 5.25.2 / 2024-11-21

  • 4 bug fixes:

    • Include class name in spec name. (thomasmarshall)
    • Fixed 'redefining object_id' warning from ruby 3.4. (mattbrictson)
    • Minitest top-level namespace no longer includes entire contents of README.rdoc. Too much!
    • Refactored spec's describe to more cleanly determine the superclass and name
Commits
  • d84437f prepped for release
  • 51cfac5 - Fix for must_verify definition if only requiring minitest/mock (but why?).
  • 704d310 prepped for release
  • 2d542ff - Fixed formatting of unmet mock expectation messages.
  • 212de90 - minitest/pride: Fixed to use true colors with *-direct terminals (bk2204)
  • d1b5451 prepped for release
  • 3d54995 + Include class name in spec name. (thomasmarshall)
  • b3cab87 - Refactored spec's describe to more cleanly determine the superclass and name
  • 3214429 - Fixed 'redefining object_id' warning from ruby 3.4. (mattbrictson)
  • e4417c5 Changed some reporter tests to use FakeTest instead of loading up Runnable w/...
  • 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 dev-dependencies group with 5 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [rubocop](https://github.com/rubocop/rubocop) | `1.67.0` | `1.69.1` |
| [rubocop-sorbet](https://github.com/shopify/rubocop-sorbet) | `0.8.6` | `0.8.7` |
| [sorbet-runtime](https://github.com/sorbet/sorbet) | `0.5.11618` | `0.5.11690` |
| [mocha](https://github.com/freerange/mocha) | `2.5.0` | `2.7.0` |
| [minitest](https://github.com/minitest/minitest) | `5.25.1` | `5.25.4` |



Updates `rubocop` from 1.67.0 to 1.69.1
- [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.69.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 `sorbet-runtime` from 0.5.11618 to 0.5.11690
- [Release notes](https://github.com/sorbet/sorbet/releases)
- [Commits](https://github.com/sorbet/sorbet/commits)

Updates `sorbet` from 0.5.11618 to 0.5.11690
- [Release notes](https://github.com/sorbet/sorbet/releases)
- [Commits](https://github.com/sorbet/sorbet/commits)

Updates `tapioca` from 0.16.3 to 0.16.5
- [Release notes](https://github.com/Shopify/tapioca/releases)
- [Commits](Shopify/tapioca@v0.16.3...v0.16.5)

Updates `mocha` from 2.5.0 to 2.7.0
- [Changelog](https://github.com/freerange/mocha/blob/main/RELEASE.md)
- [Commits](freerange/mocha@v2.5.0...v2.7.0)

Updates `minitest` from 5.25.1 to 5.25.4
- [Changelog](https://github.com/minitest/minitest/blob/master/History.rdoc)
- [Commits](minitest/minitest@v5.25.1...v5.25.4)

---
updated-dependencies:
- dependency-name: rubocop
  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: sorbet-runtime
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: sorbet
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: tapioca
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: mocha
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: minitest
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot requested a review from a team as a code owner December 9, 2024 12:46
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Dec 9, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Dec 16, 2024

Superseded by #576.

@dependabot dependabot bot closed this Dec 16, 2024
@dependabot dependabot bot deleted the dependabot/bundler/dev-dependencies-a34940d64e branch December 16, 2024 12:25
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants