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 in /gem with 8 updates #212

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 5, 2024

Bumps the minor-and-patch group in /gem with 8 updates:

Package From To
minitest 5.16.2 5.20.0
rake 13.0.6 13.1.0
debug 1.7.1 1.9.1
rubocop 1.32.0 1.59.0
rubocop-shopify 2.8.0 2.14.0
rubocop-sorbet 0.6.11 0.7.6
sorbet-static-and-runtime 0.5.10741 0.5.11176
spoom 1.2.0 1.2.4

Updates minitest from 5.16.2 to 5.20.0

Changelog

Sourced from minitest's changelog.

=== 5.20.0 / 2023-09-06

  • 1 minor enhancement:

    • Optionally allow autorun exit hook to remain active in forked child. (casperisfine)

=== 5.19.0 / 2023-07-26

  • 2 minor enhancements:

    • Add metadata lazy accessor to Runnable / Result. (matteeyah)
    • Only load minitest/unit (aka ancient MiniTest compatibility layer) if \ENV["MT_COMPAT"]
  • 1 bug fix:

    • Minitest::TestTask enthusiastically added itself to default. (ParadoxV5)

=== 5.18.1 / 2023-06-16

  • 3 bug fixes:

    • Avoid extra string allocations when filtering tests. (tenderlove)
    • Only mention deprecated \ENV['N'] if it is an integer string.
    • Push up test_order to Minitest::Runnable to fix minitest/hell. (koic)

=== 5.18.0 / 2023-03-04

  • 2 major enhancements:

    • Added assert_pattern & refute_pattern for pattern matching. (flavorjones)
    • Added matching must_pattern_match & wont_pattern_match to minitest/spec.
  • 1 bug fix:

    • Support the new message format of NameError in Ruby 3.3 (mame)

=== 5.17.0 / 2022-12-31

  • 1 minor enhancement:

    • Refactor setup hooks into a SETUP_METHODS constant. (MSP-Greg)
  • 3 bug fixes:

    • Fix kwargs for Mock calls to delegator. (blowmage)
    • Fix kwargs for expectations. (bobmazanec, blowmage)
    • Remove check for .b method. (tenderlove)

=== 5.16.3 / 2022-08-17

... (truncated)

Commits
  • 6719ad8 prepped for release
  • 780dc15 + Optionally allow autorun exit hook to remain active in forked child. (caspe...
  • ed88d19 Fixed skip messages for non-forking systems. (casperisfine)
  • 96a9972 prepped for release
  • de80282 + Add metadata lazy accessor to Runnable / Result. (matteeyah)
  • 4795997 - Minitest::TestTask enthusiastically added itself to default. (ParadoxV5)
  • a2c6c18 + Only load minitest/unit (aka ancient MiniTest compatibility layer) if ENV["...
  • 5f05692 Replace 'MiniTest' with 'Minitest' in example code. (sambostock)
  • 31da3c6 prepped for release
  • a90720a Removed 2.6 from CI.
  • Additional commits viewable in compare view

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 debug from 1.7.1 to 1.9.1

Release notes

Sourced from debug's releases.

v1.9.1

Fix small issue to release with Ruby 3.3.0.

What's Changed

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

v1.9.0

This release fixes many issues reported after v1.8.0, introduce IRB integrated console and more.

What's Changed

New Contributors

... (truncated)

Commits

Updates rubocop from 1.32.0 to 1.59.0

Release notes

Sourced from rubocop's releases.

RuboCop 1.59

New features

Bug fixes

  • #12434: Fix a false positive for Lint/LiteralAssignmentInCondition when using interpolated string or xstring literals. (@​koic)
  • #12435: Fix a false positive for Lint/SelfAssignment when using attribute assignment with method call with arguments. (@​koic)
  • #12444: Fix false positive for Style/HashEachMethods when receiver literal is not a hash literal. (@​koic)
  • #12524: Fix a false positive for Style/MethodCallWithArgsParentheses when EnforcedStyle: omit_parentheses and parens in when clause is used to pass an argument. (@​koic)
  • #12505: Fix a false positive for Style/RedundantParentheses when using parenthesized lambda or proc with do...end block. (@​koic)
  • #12442: Fix an incorrect autocorrect for Style/CombinableLoops when looping over the same data as previous loop in do...end and {...} blocks. (@​koic)
  • #12432: Fix a false positive for Lint/LiteralAssignmentInCondition when using parallel assignment with splat operator in block of guard condition. (@​koic)
  • #12441: Fix false positives for Style/HashEachMethods when using destructed block arguments. (@​koic)
  • #12436: Fix false positives for Style/RedundantParentheses when a part of range is a parenthesized condition. (@​koic)
  • #12429: Fix incorrect autocorrect for Style/MapToHash when using dot method calls for to_h. (@​koic)
  • #12488: Make Lint/HashCompareByIdentity aware of safe navigation operator. (@​koic)
  • #12489: Make Lint/NextWithoutAccumulator aware of safe navigation operator. (@​koic)
  • #12490: Make Lint/NumberConversion aware of safe navigation operator. (@​koic)
  • #12491: Make Lint/RedundantWithIndex aware of safe navigation operator. (@​koic)
  • #12492: Make Lint/RedundantWithObject aware of safe navigation operator. (@​koic)
  • #12493: Make Lint/UnmodifiedReduceAccumulator aware of safe navigation operator. (@​koic)
  • #12473: Make Style/ClassCheck aware of safe navigation operator. (@​koic)
  • #12445: Make Style/CollectionCompact aware of safe navigation operator. (@​koic)
  • #12474: Make Style/ConcatArrayLiterals aware of safe navigation operator. (@​koic)
  • #12476: Make Style/DateTime aware of safe navigation operator. (@​koic)
  • #12479: Make Style/EachWithObject aware of safe navigation operator. (@​koic)
  • #12446: Make Style/HashExcept aware of safe navigation operator. (@​koic)
  • #12447: Make Style/MapCompactWithConditionalBlock aware of safe navigation operator. (@​koic)
  • #12484: Make Style/Next aware of safe navigation operator. (@​koic)
  • #12486: Make Style/RedundantArgument aware of safe navigation operator. (@​koic)
  • #12454: Make Style/RedundantFetchBlock aware of safe navigation operator. (@​koic)
  • #12495: Make Layout/RedundantLineBreak aware of safe navigation operator. (@​koic)
  • #12455: Make Style/RedundantSortBy aware of safe navigation operator. (@​koic)
  • #12456: Make Style/RedundantSortBy aware of safe navigation operator. (@​koic)
  • #12480: Make Style/ExactRegexpMatch aware of safe navigation operator. (@​koic)
  • #12457: Make Style/Sample aware of safe navigation operator. (@​koic)
  • #12458: Make Style/SelectByRegexp cops aware of safe navigation operator. (@​koic)
  • #12494: Make Layout/SingleLineBlockChain aware of safe navigation operator. (@​koic)
  • #12461: Make Style/StringChars aware of safe navigation operator. (@​koic)
  • #12468: Make Style/Strip aware of safe navigation operator. (@​koic)
  • #12469: Make Style/UnpackFirst aware of safe navigation operator. (@​koic)

Changes

  • #12522: Make Style/MethodCallWithoutArgsParentheses allow the parenthesized it method in a block. (@​koic)
  • #12523: Make Style/RedundantSelf allow the self.it method in a block. (@​koic)

... (truncated)

Changelog

Sourced from rubocop's changelog.

1.59.0 (2023-12-11)

New features

Bug fixes

  • #12434: Fix a false positive for Lint/LiteralAssignmentInCondition when using interpolated string or xstring literals. ([@​koic][])
  • #12435: Fix a false positive for Lint/SelfAssignment when using attribute assignment with method call with arguments. ([@​koic][])
  • #12444: Fix false positive for Style/HashEachMethods when receiver literal is not a hash literal. ([@​koic][])
  • #12524: Fix a false positive for Style/MethodCallWithArgsParentheses when EnforcedStyle: omit_parentheses and parens in when clause is used to pass an argument. ([@​koic][])
  • #12505: Fix a false positive for Style/RedundantParentheses when using parenthesized lambda or proc with do...end block. ([@​koic][])
  • #12442: Fix an incorrect autocorrect for Style/CombinableLoops when looping over the same data as previous loop in do...end and {...} blocks. ([@​koic][])
  • #12432: Fix a false positive for Lint/LiteralAssignmentInCondition when using parallel assignment with splat operator in block of guard condition. ([@​koic][])
  • #12441: Fix false positives for Style/HashEachMethods when using destructed block arguments. ([@​koic][])
  • #12436: Fix false positives for Style/RedundantParentheses when a part of range is a parenthesized condition. ([@​koic][])
  • #12429: Fix incorrect autocorrect for Style/MapToHash when using dot method calls for to_h. ([@​koic][])
  • #12488: Make Lint/HashCompareByIdentity aware of safe navigation operator. ([@​koic][])
  • #12489: Make Lint/NextWithoutAccumulator aware of safe navigation operator. ([@​koic][])
  • #12490: Make Lint/NumberConversion aware of safe navigation operator. ([@​koic][])
  • #12491: Make Lint/RedundantWithIndex aware of safe navigation operator. ([@​koic][])
  • #12492: Make Lint/RedundantWithObject aware of safe navigation operator. ([@​koic][])
  • #12493: Make Lint/UnmodifiedReduceAccumulator aware of safe navigation operator. ([@​koic][])
  • #12473: Make Style/ClassCheck aware of safe navigation operator. ([@​koic][])
  • #12445: Make Style/CollectionCompact aware of safe navigation operator. ([@​koic][])
  • #12474: Make Style/ConcatArrayLiterals aware of safe navigation operator. ([@​koic][])
  • #12476: Make Style/DateTime aware of safe navigation operator. ([@​koic][])
  • #12479: Make Style/EachWithObject aware of safe navigation operator. ([@​koic][])
  • #12446: Make Style/HashExcept aware of safe navigation operator. ([@​koic][])
  • #12447: Make Style/MapCompactWithConditionalBlock aware of safe navigation operator. ([@​koic][])
  • #12484: Make Style/Next aware of safe navigation operator. ([@​koic][])
  • #12486: Make Style/RedundantArgument aware of safe navigation operator. ([@​koic][])
  • #12454: Make Style/RedundantFetchBlock aware of safe navigation operator. ([@​koic][])
  • #12495: Make Layout/RedundantLineBreak aware of safe navigation operator. ([@​koic][])
  • #12455: Make Style/RedundantSortBy aware of safe navigation operator. ([@​koic][])
  • #12456: Make Style/RedundantSortBy aware of safe navigation operator. ([@​koic][])
  • #12480: Make Style/ExactRegexpMatch aware of safe navigation operator. ([@​koic][])
  • #12457: Make Style/Sample aware of safe navigation operator. ([@​koic][])
  • #12458: Make Style/SelectByRegexp cops aware of safe navigation operator. ([@​koic][])
  • #12494: Make Layout/SingleLineBlockChain aware of safe navigation operator. ([@​koic][])
  • #12461: Make Style/StringChars aware of safe navigation operator. ([@​koic][])
  • #12468: Make Style/Strip aware of safe navigation operator. ([@​koic][])
  • #12469: Make Style/UnpackFirst aware of safe navigation operator. ([@​koic][])

Changes

  • #12522: Make Style/MethodCallWithoutArgsParentheses allow the parenthesized it method in a block. ([@​koic][])
  • #12523: Make Style/RedundantSelf allow the self.it method in a block. ([@​koic][])

... (truncated)

Commits
  • e5a164a Cut 1.59
  • 2912b6e Update Changelog
  • 3bcc171 [Fix #12524] Fix a false positive for Style/MethodCallWithArgsParentheses
  • 0daa4aa Make Style/MethodCallWithoutArgsParentheses allow parenthesized it
  • b240a09 Make Style/RedundantSelf allow self.it
  • a0e1042 [Fix #12526] Fix incorrect rendering typos
  • b1bcb31 [Fix #12444] Fix false positive for Style/HashEachMethods
  • 3b0360b Add new Lint/ItWithoutArgumentsInBlock cop
  • 4e9cfcc Merge pull request #12521 from koic/make_style_select_by_regexp_aware_of_safe...
  • 037c860 Merge pull request #12438 from koic/fix_a_false_positive_for_lint_literal_ass...
  • Additional commits viewable in compare view

Updates rubocop-shopify from 2.8.0 to 2.14.0

Release notes

Sourced from rubocop-shopify's releases.

v2.14.0

What's Changed

Enabled Cops

Changed Cops

  • Tweak Naming/InclusiveLanguage AllowedRegex to allow more git repository links (#535)

Minimum Rubocop Version

The minimum Rubocop version is now 1.50.0 (Shopify/ruby-style-guide#525).

Relevant PRs

New Contributors

Full Changelog: Shopify/ruby-style-guide@v2.13.0...v2.14.0

v2.13.0

What's Changed

Enabled Cops

The following cops have been enabled:

Changed Cops

  • Layout/LineLength now allows inline # rubocop:disable ... comments to exceed the line length. (#488)
  • Layout/LineLength now allows def test_... lines to exceed the line length limit, making it consistent with test "..." do lines, which were already permitted to exceed the limit. (#496)
  • Naming/MethodName now allows methods starting with test_ to violate the snake_case convention. (#511)
  • Style/AndOr now allows and and or outside of conditionals (which must still use && and || instead). (#515)

Minimum Rubocop Version

... (truncated)

Commits
  • 375cde7 Merge pull request #546 from Shopify/rm-prepare-new-release
  • 32ab61b Prepare for 2.14.0
  • 01bf777 Merge pull request #545 from Shopify/catlee/no_return_in_blocks
  • 326dbbc Enable the Lint/NoReturnInBeginEndBlocks cop
  • 5c936af Merge pull request #543 from Shopify/dependabot/npm_and_yarn/eslint-config-st...
  • 37e908c Bump eslint-config-standard from 17.0.0 to 17.1.0
  • d6b5fc5 Merge pull request #542 from Shopify/dependabot/npm_and_yarn/eslint-8.41.0
  • cf54f3e Bump eslint from 8.39.0 to 8.41.0
  • 1a6daf3 Merge pull request #541 from Shopify/dependabot/bundler/rubocop-1.51.0
  • 8b6a74a Enable Style/ExactRegexpMatch
  • Additional commits viewable in compare view

Updates rubocop-sorbet from 0.6.11 to 0.7.6

Release notes

Sourced from rubocop-sorbet's releases.

v0.7.6

What's Changed

🛠 Other Changes

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

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

v0.7.3

... (truncated)

Commits
  • a414cb7 Bump version to v0.7.6
  • 6613f8e Merge pull request #181 from Shopify/ko/aliased-shapes
  • 5bb7bfe Increment VersionAdded metadata
  • 139ca55 Use descendant search
  • 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
  • Additional commits viewable in compare view

Updates sorbet-static-and-runtime from 0.5.10741 to 0.5.11176

Release notes

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

sorbet 0.5.11175.20240103143002-ddd14d633

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11174.20240103134548-3b18f876d

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11173.20240103104327-ee31a06a5

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11172.20240103103218-2016d442b

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11171.20240103103742-4c82b6518

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11170.20240102151700-8bd792751

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11169.20240102145042-a65aacac9

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11168.20240102143826-f105a1faf

... (truncated)

Commits

Updates spoom from 1.2.0 to 1.2.4

Commits
  • 99d2d82 Merge pull request #463 from Shopify/andyw8/v1.2.4
  • eab6f86 $ bundle exec tapioca gem
  • 110d7ae Bump version to v1.2.4
  • daff0ac Merge pull request #461 from Shopify/dependabot/bundler/sorbet-static-and-run...
  • 21e19fa Merge pull request #460 from Shopify/dependabot/bundler/minitest-5.20.0
  • bbe4c68 Bump sorbet-static-and-runtime from 0.5.11001 to 0.5.11011
  • 77f9d5c Bump minitest from 5.19.0 to 5.20.0
  • e1bbb87 Merge pull request #458 from Shopify/dependabot/bundler/sorbet-static-and-run...
  • 47d6fc1 Update test expectation spacing
  • 67d4b38 Merge pull request #457 from Shopify/andyw8/add-minitest-backtrace-filter
  • 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 January 5, 2024 15:18
@dependabot dependabot bot requested review from andyw8 and Morriar January 5, 2024 15:18
Bumps the minor-and-patch group in /gem with 8 updates:

| Package | From | To |
| --- | --- | --- |
| [minitest](https://github.com/minitest/minitest) | `5.16.2` | `5.20.0` |
| [rake](https://github.com/ruby/rake) | `13.0.6` | `13.1.0` |
| [debug](https://github.com/ruby/debug) | `1.7.1` | `1.9.1` |
| [rubocop](https://github.com/rubocop/rubocop) | `1.32.0` | `1.59.0` |
| [rubocop-shopify](https://github.com/Shopify/ruby-style-guide) | `2.8.0` | `2.14.0` |
| [rubocop-sorbet](https://github.com/shopify/rubocop-sorbet) | `0.6.11` | `0.7.6` |
| [sorbet-static-and-runtime](https://github.com/sorbet/sorbet) | `0.5.10741` | `0.5.11176` |
| [spoom](https://github.com/Shopify/spoom) | `1.2.0` | `1.2.4` |

Updates `minitest` from 5.16.2 to 5.20.0
- [Changelog](https://github.com/minitest/minitest/blob/master/History.rdoc)
- [Commits](minitest/minitest@v5.16.2...v5.20.0)

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 `debug` from 1.7.1 to 1.9.1
- [Release notes](https://github.com/ruby/debug/releases)
- [Commits](ruby/debug@v1.7.1...v1.9.1)

Updates `rubocop` from 1.32.0 to 1.59.0
- [Release notes](https://github.com/rubocop/rubocop/releases)
- [Changelog](https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md)
- [Commits](rubocop/rubocop@v1.32.0...v1.59.0)

Updates `rubocop-shopify` from 2.8.0 to 2.14.0
- [Release notes](https://github.com/Shopify/ruby-style-guide/releases)
- [Commits](Shopify/ruby-style-guide@v2.8.0...v2.14.0)

Updates `rubocop-sorbet` from 0.6.11 to 0.7.6
- [Release notes](https://github.com/shopify/rubocop-sorbet/releases)
- [Commits](Shopify/rubocop-sorbet@v0.6.11...v0.7.6)

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

Updates `spoom` from 1.2.0 to 1.2.4
- [Commits](Shopify/spoom@v1.2.0...v1.2.4)

---
updated-dependencies:
- dependency-name: minitest
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: rake
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: debug
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: rubocop
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: rubocop-shopify
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: rubocop-sorbet
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: sorbet-static-and-runtime
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: spoom
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
@egiurleo egiurleo force-pushed the dependabot/bundler/gem/minor-and-patch-a125222f20 branch from d6fd69d to ec415a4 Compare January 29, 2024 14:32
@egiurleo
Copy link
Contributor

@dependabot rebase

Copy link
Contributor Author

dependabot bot commented on behalf of github Jan 29, 2024

Looks like this PR has been edited by someone other than Dependabot. That means Dependabot can't rebase it - sorry!

If you're happy for Dependabot to recreate it from scratch, overwriting any edits, you can request @dependabot recreate.

@egiurleo
Copy link
Contributor

@dependabot recreate

Copy link
Contributor Author

dependabot bot commented on behalf of github Jan 29, 2024

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

@dependabot dependabot bot closed this Jan 29, 2024
@dependabot dependabot bot deleted the dependabot/bundler/gem/minor-and-patch-a125222f20 branch January 29, 2024 14:55
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.

1 participant