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 minor-and-patch group with 8 updates #26

Closed

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Dec 4, 2023

Bumps the minor-and-patch group with 8 updates:

Package From To
rake 13.0.6 13.1.0
rubocop 1.56.2 1.58.0
rubocop-minitest 0.31.1 0.33.0
rubocop-sorbet 0.7.3 0.7.5
sorbet-static-and-runtime 0.5.11011 0.5.11144
tapioca 0.11.8 0.11.12
rdoc 6.5.0 6.6.0
psych 5.1.0 5.1.1.1

Updates rake from 13.0.6 to 13.1.0

Commits
  • 5476cda Bump up v13.1.0
  • 1b6afad Merge pull request #521 from ruby/dependabot/github_actions/ruby/setup-ruby-1...
  • 8b2a01c Bump ruby/setup-ruby from 1.156.0 to 1.157.0
  • 1607fbf Merge pull request #520 from ruby/dependabot/github_actions/actions/checkout-...
  • 6594585 Bump actions/checkout from 4.1.0 to 4.1.1
  • 6717ce8 Merge pull request #519 from ruby/dependabot/github_actions/ruby/setup-ruby-1...
  • 4b4b211 Bump ruby/setup-ruby from 1.155.0 to 1.156.0
  • 5e76ef6 Merge pull request #518 from ruby/dependabot/github_actions/ruby/setup-ruby-1...
  • 8d39c6b Bump ruby/setup-ruby from 1.154.0 to 1.155.0
  • 191a9d7 Merge pull request #517 from ruby/dependabot/github_actions/ruby/setup-ruby-1...
  • Additional commits viewable in compare view

Updates rubocop from 1.56.2 to 1.58.0

Release notes

Sourced from rubocop's releases.

RuboCop 1.58

New features

Bug fixes

  • #12372: Fix a false negative for Lint/Debugger when used within method arguments a begin...end block. (@​koic)
  • #12378: Fix a false negative for Style/Semicolon when a semicolon at the beginning of a lambda block. (@​koic)
  • #12146: Fix a false positive for Lint/FloatComparison when comparing against zero. (@​earlopain)
  • #12404: Fix a false positive for Layout/RescueEnsureAlignment when aligned rescue in do-end numbered block in a method. (@​koic)
  • #12374: Fix a false positive for Layout/SpaceBeforeSemicolon when a space between an opening lambda brace and a semicolon. (@​koic)
  • #12326: Fix an error for Style/RedundantDoubleSplatHashBraces when method call for parenthesized no hash double double splat. (@​koic)
  • #12361: Fix an incorrect autocorrect for Naming/BlockForwarding and Style/ArgumentsForwarding when autocorrection conflicts for anonymous arguments. (@​koic)
  • #12324: Fix an error for Layout/RescueEnsureAlignment when using rescue in do...end block assigned to object attribute. (@​koic)
  • #12322: Fix an error for Style/CombinableLoops when looping over the same data for the third consecutive time or more. (@​koic)
  • #12366: Fix a false negative for Layout/ExtraSpacing when a file has exactly two comments. (@​eugeneius)
  • #12373: Fix a false negative for Lint/SymbolConversion when using string interpolation. (@​earlopain)
  • #12402: Fix false negatives for Style/RedundantLineContinuation when redundant line continuations for a block are used, especially without parentheses around first argument. (@​koic)
  • #12311: Fix false negatives for Style/RedundantParentheses when parentheses around logical operator keywords in method definition. (@​koic)
  • #12394: Fix false negatives for Style/RedundantReturn when lambda (->) ending with return. (@​koic)
  • #12377: Fix false positives for Lint/Void when a collection literal that includes non-literal elements in a method definition. (@​koic)
  • #12407: Fix an incorrect autocorrect for Style/MapToHash with Layout/SingleLineBlockChain. (@​koic)
  • #12409: Fix an incorrect autocorrect for Lint/SafeNavigationChain when ordinary method chain exists after safe navigation leading dot method call. (@​koic)
  • #12363: Fix incorrect rendering of HTML character entities in HTMLFormatter formatter. (@​koic)
  • #12424: Make Style/HashEachMethods aware of safe navigation operator. (@​koic)
  • #12413: Make Style/InverseMethods aware of safe navigation operator. (@​koic)
  • #12408: Make Style/MapToHash aware of safe navigation operator. (@​koic)

Changes

  • #12328: Make Style/AutoResourceCleanup aware of Tempfile.open. (@​koic)
  • #12412: Enhance Lint/RedundantSafeNavigation to handle conversion methods with defaults. (@​fatkodima)
  • #12410: Enhance Lint/SelfAssignment to check attribute assignment and key assignment. (@​fatkodima)
  • #12370: Make Style/HashEachMethods aware of unused block value. (@​koic)
  • #12380: Make Style/RedundantParentheses aware of lambda or proc. (@​koic)
  • #12421: Make Style/SelfAssignment aware of %, ^, <<, and >> operators. (@​koic)
  • #12305: Require rubocop-ast version 1.30 or greater. (@​sambostock)
  • #12337: Supports EnforcedStyleForRationalLiterals option for Layout/SpaceAroundOperators. (@​koic)
  • #12296: Support RedundantRestArgumentNames, RedundantKeywordRestArgumentNames, and RedundantBlockArgumentNames options for Style/ArgumentsForwarding. (@​koic)

RuboCop 1.57.2

... (truncated)

Changelog

Sourced from rubocop's changelog.

1.58.0 (2023-12-01)

New features

Bug fixes

  • #12372: Fix a false negative for Lint/Debugger when used within method arguments a begin...end block. ([@​koic][])
  • #12378: Fix a false negative for Style/Semicolon when a semicolon at the beginning of a lambda block. ([@​koic][])
  • #12146: Fix a false positive for Lint/FloatComparison when comparing against zero. ([@​earlopain][])
  • #12404: Fix a false positive for Layout/RescueEnsureAlignment when aligned rescue in do-end numbered block in a method. ([@​koic][])
  • #12374: Fix a false positive for Layout/SpaceBeforeSemicolon when a space between an opening lambda brace and a semicolon. ([@​koic][])
  • #12326: Fix an error for Style/RedundantDoubleSplatHashBraces when method call for parenthesized no hash double double splat. ([@​koic][])
  • #12361: Fix an incorrect autocorrect for Naming/BlockForwarding and Style/ArgumentsForwarding when autocorrection conflicts for anonymous arguments. ([@​koic][])
  • #12324: Fix an error for Layout/RescueEnsureAlignment when using rescue in do...end block assigned to object attribute. ([@​koic][])
  • #12322: Fix an error for Style/CombinableLoops when looping over the same data for the third consecutive time or more. ([@​koic][])
  • #12366: Fix a false negative for Layout/ExtraSpacing when a file has exactly two comments. ([@​eugeneius][])
  • #12373: Fix a false negative for Lint/SymbolConversion when using string interpolation. ([@​earlopain][])
  • #12402: Fix false negatives for Style/RedundantLineContinuation when redundant line continuations for a block are used, especially without parentheses around first argument. ([@​koic][])
  • #12311: Fix false negatives for Style/RedundantParentheses when parentheses around logical operator keywords in method definition. ([@​koic][])
  • #12394: Fix false negatives for Style/RedundantReturn when lambda (->) ending with return. ([@​koic][])
  • #12377: Fix false positives for Lint/Void when a collection literal that includes non-literal elements in a method definition. ([@​koic][])
  • #12407: Fix an incorrect autocorrect for Style/MapToHash with Layout/SingleLineBlockChain. ([@​koic][])
  • #12409: Fix an incorrect autocorrect for Lint/SafeNavigationChain when ordinary method chain exists after safe navigation leading dot method call. ([@​koic][])
  • #12363: Fix incorrect rendering of HTML character entities in HTMLFormatter formatter. ([@​koic][])
  • #12424: Make Style/HashEachMethods aware of safe navigation operator. ([@​koic][])
  • #12413: Make Style/InverseMethods aware of safe navigation operator. ([@​koic][])
  • #12408: Make Style/MapToHash aware of safe navigation operator. ([@​koic][])

Changes

  • #12328: Make Style/AutoResourceCleanup aware of Tempfile.open. ([@​koic][])
  • #12412: Enhance Lint/RedundantSafeNavigation to handle conversion methods with defaults. ([@​fatkodima][])
  • #12410: Enhance Lint/SelfAssignment to check attribute assignment and key assignment. ([@​fatkodima][])
  • #12370: Make Style/HashEachMethods aware of unused block value. ([@​koic][])
  • #12380: Make Style/RedundantParentheses aware of lambda or proc. ([@​koic][])
  • #12421: Make Style/SelfAssignment aware of %, ^, <<, and >> operators. ([@​koic][])
  • #12305: Require rubocop-ast version 1.30 or greater. ([@​sambostock][])
  • #12337: Supports EnforcedStyleForRationalLiterals option for Layout/SpaceAroundOperators. ([@​koic][])
  • #12296: Support RedundantRestArgumentNames, RedundantKeywordRestArgumentNames, and RedundantBlockArgumentNames options for Style/ArgumentsForwarding. ([@​koic][])

1.57.2 (2023-10-26)

Bug fixes

  • #12274: Fix a false positive for Lint/Void when each's receiver is an object of Enumerator to which filter has been applied. ([@​koic][])
  • #12291: Fix a false positive for Metrics/ClassLength when a class with a singleton class definition. ([@​koic][])

... (truncated)

Commits
  • f27164b Cut 1.58
  • 73b0876 Update Changelog
  • 19daa1c Add new Lint/LiteralAssignmentInCondition cop
  • c8d2d77 [Fix #12424] Make Style/HashEachMethods aware of safe navigation operator
  • 3db23fa Merge pull request #12422 from fatkodima/optimize-tests
  • 7f0a589 Optimize rspec tests
  • 4753e92 Merge pull request #12421 from koic/make_style_self_assignment_aware_of_some_...
  • 2f9a2d2 Make Style/SelfAssignment aware of some operators
  • a31a37c Merge pull request #12387 from Earlopain/fix-zero-method-for-float-comparison
  • 7a66f24 [Fix #12146] Fix a false positive for Lint/FloatComparison
  • Additional commits viewable in compare view

Updates rubocop-minitest from 0.31.1 to 0.33.0

Release notes

Sourced from rubocop-minitest's releases.

RuboCop Minitest 0.33.0

New features

  • #266: Make Minitest/AssertEqual aware of assert_operator. (@​koic)
  • #268: Make Minitest/AssertMatch aware of assert_operator. (@​koic)
  • #267: Make Minitest/RefuteEqual aware of assert_operator and refute_operator. (@​koic)
  • #269: Make Minitest/RefuteMatch aware of refute_operator and assert_operator. (@​koic)

Changes

  • #265: Make Minitest/RefuteEqual aware of refute(expected == actual). (@​koic)

RuboCop Minitest 0.32.2

Bug fixes

  • #263: Fix an error for Minitest/AssertOperator and Minitest/RefuteOperator when using unary operation argument. (@​koic)

Changes

  • #264: Make Minitest/AssertOperator and Minitest/RefuteOperator allow index access with []. (@​flavorjones)

RuboCop Minitest 0.32.1

Bug fixes

  • #261: Fix an error for Minitest/AssertOperator and Minitest/RefuteOperator when using variable argument. (@​koic)

RuboCop Minitest 0.32.0

New features

  • #255: Add new Minitest/AssertOperator and Minitest/RefuteOperator cops. (@​koic)

Bug fixes

  • #259: Fix autocorrection for Minitest/LiteralAsActualArgument, Minitest/AssertPathExists, and Minitest/RefutePathExists cops to preserve the presence or absence of argument parentheses. (@​koic)
Changelog

Sourced from rubocop-minitest's changelog.

0.33.0 (2023-10-21)

New features

  • #266: Make Minitest/AssertEqual aware of assert_operator. ([@​koic][])
  • #268: Make Minitest/AssertMatch aware of assert_operator. ([@​koic][])
  • #267: Make Minitest/RefuteEqual aware of assert_operator and refute_operator. ([@​koic][])
  • #269: Make Minitest/RefuteMatch aware of refute_operator and assert_operator. ([@​koic][])

Changes

  • #265: Make Minitest/RefuteEqual aware of refute(expected == actual). ([@​koic][])

0.32.2 (2023-09-27)

Bug fixes

  • #263: Fix an error for Minitest/AssertOperator and Minitest/RefuteOperator when using unary operation argument. ([@​koic][])

Changes

  • #264: Make Minitest/AssertOperator and Minitest/RefuteOperator allow index access with []. ([@​flavorjones][])

0.32.1 (2023-09-24)

Bug fixes

  • #261: Fix an error for Minitest/AssertOperator and Minitest/RefuteOperator when using variable argument. ([@​koic][])

0.32.0 (2023-09-23)

New features

  • #255: Add new Minitest/AssertOperator and Minitest/RefuteOperator cops. ([@​koic][])

Bug fixes

  • #259: Fix autocorrection for Minitest/LiteralAsActualArgument, Minitest/AssertPathExists, and Minitest/RefutePathExists cops to preserve the presence or absence of argument parentheses. ([@​koic][])
Commits
  • ed4e847 Cut 0.33.0
  • dc49783 Update Changelog
  • 5d7a349 Merge pull request #269 from koic/make_minitest_refute_match_aware_of_refute_...
  • f55259b Make Minitest/RefuteMatch aware of refute_operator
  • f2396a6 Merge pull request #268 from koic/make_minitest_assert_match_aware_of_assert_...
  • d0b42c6 Merge pull request #267 from koic/make_minitest_refute_equal_aware_of_refute_...
  • aba8cff Merge pull request #266 from koic/make_minitest_assert_equal_aware_of_assert_...
  • b94890b Make Minitest/AssertMatch aware of assert_operator
  • 060e7a0 Make Minitest/AssertEqual aware of assert_operator
  • d9dcb8c Make Minitest/RefuteEqual aware of assert_operator and refute_operator
  • Additional commits viewable in compare view

Updates rubocop-sorbet from 0.7.3 to 0.7.5

Release notes

Sourced from rubocop-sorbet's releases.

v0.7.5

What's Changed

🐛 Bug Fixes

🛠 Other Changes

Full Changelog: Shopify/rubocop-sorbet@v0.7.4...v0.7.5

v0.7.4

What's Changed

✨ Enhancements

🛠 Other Changes

New Contributors

Full Changelog: Shopify/rubocop-sorbet@v0.7.3...v0.7.4

Commits
  • 8f3126a Bump version to v0.7.5
  • 8d87472 Merge pull request #191 from Shopify/vs/fix_incompatible_override_breaking
  • 602e946 Make incompatible override rule not fail on incomplete signatures
  • d94f631 Merge pull request #188 from Shopify/empty-lines-in-rbis
  • 5183f23 Enable EmptyLineAfterSig in RBI config
  • 065ac0c Detect empty lines between multiple signatures
  • 5499b1c Merge pull request #185 from Shopify/optimize-empty-line-after-sig
  • 4f74f27 Optimize EmptyLineAfterSig
  • fd1e1e0 Add edge case specs
  • e74f994 Migrate from deprecated Cop to Base parent class
  • Additional commits viewable in compare view

Updates sorbet-static-and-runtime from 0.5.11011 to 0.5.11144

Release notes

Sourced from sorbet-static-and-runtime's releases.

sorbet 0.5.11143.20231129164529-e6c7d518d

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11142.20231122111018-b1ec9d25f

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11141.20231121145801-25c84b1ef

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11140.20231121142129-ab25fecd7

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11139.20231116145045-9dbddbe8b

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11138.20231116112043-de15f547a

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11137.20231116111219-a327cd3ae

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11136.20231116101029-9af771785

... (truncated)

Commits

Updates tapioca from 0.11.8 to 0.11.12

Release notes

Sourced from tapioca's releases.

v0.11.12

What's Changed

🐛 Bug Fixes

🛠 Other Changes

New Contributors

Full Changelog: Shopify/tapioca@v0.11.11...v0.11.12

v0.11.11

What's Changed

🐛 Bug Fixes

🛠 Other Changes

Full Changelog: Shopify/tapioca@v0.11.10...v0.11.11

v0.11.10

What's Changed

✨ Enhancements

🐛 Bug Fixes

🛠 Other Changes

New Contributors

Full Changelog: Shopify/tapioca@v0.11.9...v0.11.10

v0.11.9

What's Changed

🚧 Breaking Changes

... (truncated)

Commits
  • d17a9f9 Bump version to v0.11.12
  • 486eecb Merge pull request #1711 from Shopify/ignore-irb
  • 78dea23 Ignore rbi gem by default
  • 692e486 Merge pull request #1659 from Shopify/support-custom-scalar-coerce-input
  • f35a20e Add safety for Void and NotTyped return types
  • 6782a81 Merge pull request #1708 from Shopify/vs/bump_rbi_requirement
  • 133c31a Bump RBI requirement to 0.1.4 or higher
  • 14acb51 Merge pull request #1707 from Shopify/vs/fix_engine_loading_older_rails
  • e42529f Upgrade RBI and temporarily lock Prism < 0.16
  • 05d94ee Fix Rails engine loading for Rails < 7.2
  • Additional commits viewable in compare view

Updates rdoc from 6.5.0 to 6.6.0

Release notes

Sourced from rdoc's releases.

v6.6.0

What's Changed

New Contributors

... (truncated)

Commits
  • 9c14229 Bump up 6.6.0
  • 42cdad1 test/rdoc/test_rdoc_generator_json_index.rb: pend in test_generate in ppc64le.
  • c9ce452 Bump ruby/setup-ruby from 1.157.0 to 1.159.0
  • 91d40ce test/rdoc/test_rdoc_generator_json_index.rb: Use assert_equal instead of assert.
  • 31e9206 Bump ruby/setup-ruby from 1.156.0 to 1.157.0
  • b59ca2f Delay DidYouMean until NotFoundError#message is called
  • d0d4f46 Bump ruby/setup-ruby from 1.155.0 to 1.156.0
  • c908918 Bump ruby/setup-ruby from 1.154.0 to 1.155.0
  • 9e75bf6 Bump ruby/setup-ruby from 1.153.0 to 1.154.0
  • cac1709 Bump ruby/setup-ruby from 1.152.0 to 1.153.0
  • Additional commits viewable in compare view

Updates psych from 5.1.0 to 5.1.1.1

Release notes

Sourced from psych's releases.

v5.1.1.1

v5.1.1

What's Changed

Full Changelog: ruby/psych@v5.1.0...v5.1.1

Commits
  • 51cc86f Bump up v5.1.1.1
  • f306512 Bump up v5.1.1
  • cc5daad Merge pull request #653 from headius/remove_ineffective_snakeyaml_settings
  • 307c368 Remove SnakeYAML settings that don't work
  • e8188ce Merge pull request #650 from headius/jruby_improvements
  • 323530a Whitespace style changes
  • 1330f22 Use a respond_to site for path check
  • 1c7dd96 Move some bare strings into constants
  • ac6ae9e Move call sites to a data structure
  • 8caff50 Add SnakeYAML exception as cause
  • 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 <depende...

Description has been truncated

Bumps the minor-and-patch group with 8 updates:

| Package | From | To |
| --- | --- | --- |
| [rake](https://github.com/ruby/rake) | `13.0.6` | `13.1.0` |
| [rubocop](https://github.com/rubocop/rubocop) | `1.56.2` | `1.58.0` |
| [rubocop-minitest](https://github.com/rubocop/rubocop-minitest) | `0.31.1` | `0.33.0` |
| [rubocop-sorbet](https://github.com/shopify/rubocop-sorbet) | `0.7.3` | `0.7.5` |
| [sorbet-static-and-runtime](https://github.com/sorbet/sorbet) | `0.5.11011` | `0.5.11144` |
| [tapioca](https://github.com/Shopify/tapioca) | `0.11.8` | `0.11.12` |
| [rdoc](https://github.com/ruby/rdoc) | `6.5.0` | `6.6.0` |
| [psych](https://github.com/ruby/psych) | `5.1.0` | `5.1.1.1` |


Updates `rake` from 13.0.6 to 13.1.0
- [Release notes](https://github.com/ruby/rake/releases)
- [Changelog](https://github.com/ruby/rake/blob/master/History.rdoc)
- [Commits](ruby/rake@v13.0.6...v13.1.0)

Updates `rubocop` from 1.56.2 to 1.58.0
- [Release notes](https://github.com/rubocop/rubocop/releases)
- [Changelog](https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md)
- [Commits](rubocop/rubocop@v1.56.2...v1.58.0)

Updates `rubocop-minitest` from 0.31.1 to 0.33.0
- [Release notes](https://github.com/rubocop/rubocop-minitest/releases)
- [Changelog](https://github.com/rubocop/rubocop-minitest/blob/master/CHANGELOG.md)
- [Commits](rubocop/rubocop-minitest@v0.31.1...v0.33.0)

Updates `rubocop-sorbet` from 0.7.3 to 0.7.5
- [Release notes](https://github.com/shopify/rubocop-sorbet/releases)
- [Commits](Shopify/rubocop-sorbet@v0.7.3...v0.7.5)

Updates `sorbet-static-and-runtime` from 0.5.11011 to 0.5.11144
- [Release notes](https://github.com/sorbet/sorbet/releases)
- [Commits](https://github.com/sorbet/sorbet/commits)

Updates `tapioca` from 0.11.8 to 0.11.12
- [Release notes](https://github.com/Shopify/tapioca/releases)
- [Commits](Shopify/tapioca@v0.11.8...v0.11.12)

Updates `rdoc` from 6.5.0 to 6.6.0
- [Release notes](https://github.com/ruby/rdoc/releases)
- [Changelog](https://github.com/ruby/rdoc/blob/master/History.rdoc)
- [Commits](ruby/rdoc@v6.5.0...v6.6.0)

Updates `psych` from 5.1.0 to 5.1.1.1
- [Release notes](https://github.com/ruby/psych/releases)
- [Commits](ruby/psych@v5.1.0...v5.1.1.1)

---
updated-dependencies:
- dependency-name: rake
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: rubocop
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: rubocop-minitest
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: rubocop-sorbet
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: sorbet-static-and-runtime
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: tapioca
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: rdoc
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: psych
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Copy link
Author

dependabot bot commented on behalf of github Dec 11, 2023

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Dec 11, 2023
@dependabot dependabot bot deleted the dependabot/bundler/minor-and-patch-b564e5c5b2 branch December 11, 2023 12:24
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants