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 10 updates #33

Closed

Conversation

dependabot[bot]
Copy link

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

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

Package From To
debug 1.8.0 1.9.1
minitest 5.20.0 5.21.2
rake 13.0.6 13.1.0
rubocop 1.56.2 1.60.1
rubocop-minitest 0.31.1 0.34.5
rubocop-sorbet 0.7.3 0.7.6
sorbet-static-and-runtime 0.5.11011 0.5.11214
tapioca 0.11.8 0.11.17
rdoc 6.5.0 6.6.2
psych 5.1.0 5.1.2

Updates debug from 1.8.0 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 minitest from 5.20.0 to 5.21.2

Changelog

Sourced from minitest's changelog.

=== 5.21.2 / 2024-01-17

  • 1 bug fix:

    • Fixed bug in Minitest::Compress#compress formatting w/ nested patterns. Now recurses properly.

=== 5.21.1 / 2024-01-11

  • 1 bug fix:

    • Rails' default backtrace filter can't currently work with caller_locations, so reverting back to caller.

=== 5.21.0 / 2024-01-11

  • 10 minor enhancements:

    • Add include_all kw arg to assert_respond_to and refute_respond_to.
    • Added --quiet flag to skip ProgressReporter (prints the dots). Minor speedup.
    • Added Minitest::Compress#compress and added it to UnexpectedError.
    • Added ability to initialize BacktraceFilter w/ custom regexp.
    • Filter failure backtraces using backtrace_filter before calculating location. (thomasmarshall)
    • Make BacktraceFilter#filter compatible with locations (still compares strings).
    • Optimized Assertion#location ~30%.
    • Output relative paths for all failures/errors/backtraces.
    • Refactored location information in assertions, now using locations.
    • Removed thread and mutex_m dependencies. (hsbt, eregon)
  • 2 bug fixes:

    • Drop undocumented bt arg in #skip. Dunno why that ever happened, prolly for testing?
    • Fix mock to work with ruby debugger enabled. (keithlayne)
Commits
  • 71dab66 prepped for release
  • 005b187 - Fixed bug in Minitest::Compress#compress formatting w/ nested patterns. Now...
  • 8ccc4d9 prepped for release
  • 9f78d3a - Rails' default backtrace filter can't currently work with caller_locations,...
  • 4a90528 prepped for release
  • ea319f7 + Added Minitest::Compress#compress and added it to UnexpectedError
  • 43d4efc + Filter failure backtraces using backtrace_filter before calculating locatio...
  • 024e315 better
  • 2751c9d + Added ability to initialize BacktraceFilter w/ custom regexp.
  • 71340b6 Add changelog link to README and gem specification. (mattbrictson)
  • 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 rubocop from 1.56.2 to 1.60.1

Release notes

Sourced from rubocop's releases.

RuboCop 1.60.1

Bug fixes

  • #12625: Fix an error when server cache dir has read-only file system. (@​Strzesia)
  • #12618: Fix false positives for Style/ArgumentsForwarding when using block argument forwarding with other arguments. (@​koic)
  • #12614: Fix false positiveis for Style/RedundantParentheses when parentheses in control flow keyword with multiline style argument. (@​koic)

Changes

  • #12617: Make Style/CollectionCompact aware of grep_v with nil. (@​koic)

RuboCop 1.60

Bug fixes

  • #12603: Fix an infinite loop error for Style/MultilineTernaryOperator when using a method call as a ternary operator condition with a line break between receiver and method. (@​koic)
  • #12549: Fix a false positive for Style/RedundantLineContinuation when line continuations for multiline leading dot method chain with a blank line. (@​koic)
  • #12610: Accept parentheses in argument calls with blocks for Style/MethodCallWithArgsParentheses omit_parentheses style. ([@​gsamokovarov][])
  • #12580: Fix an infinite loop error for Layout/EndAlignment when misaligned in singleton class assignments with EnforcedStyleAlignWith: variable. (@​koic)
  • #12548: Fix an infinite loop error for Layout/FirstArgumentIndentation when specifying EnforcedStyle: with_fixed_indentation of Layout/ArrayAlignment. (@​koic)
  • #12236: Fix an error for Lint/ShadowedArgument when self assigning to a block argument in for. (@​koic)
  • #12569: Fix an error for Style/IdenticalConditionalBranches when using if...else with identical leading lines that assign to self.foo. (@​koic)
  • #12437: Fix an infinite loop error for EnforcedStyle: omit_parentheses of Style/MethodCallWithArgsParentheses with Style/SuperWithArgsParentheses. (@​koic)
  • #12558: Fix an incorrect autocorrect for Style/MapToHash when using map.to_h without receiver. (@​koic)
  • #12179: Let --auto-gen-config generate Exclude when Max is overridden. ([@​jonas054][])
  • #12574: Fix bug for unrecognized style in --auto-gen-config. ([@​jonas054][])
  • #12542: Fix false positive for Lint/MixedRegexpCaptureTypes when using look-ahead matcher. ([@​marocchino][])
  • #12607: Fix a false positive for Style/RedundantParentheses when regexp literal attempts to match against a parenthesized condition. (@​koic)
  • #12539: Fix false positives for Lint/LiteralAssignmentInCondition when a collection literal contains non-literal elements. (@​koic)
  • #12571: Fix false positives for Naming/BlockForwarding when using explicit block forwarding in block method. (@​koic)
  • #12537: Fix false positives for Style/RedundantParentheses when AllowInMultilineConditions: true of Style/ParenthesesAroundCondition. (@​koic)
  • #12578: Fix false positives for Style/ArgumentsForwarding when rest arguments forwarding to a method in block. (@​koic)
  • #12540: Fix false positives for Style/HashEachMethods when rest block argument of Enumerable#each method is used. (@​koic)
  • #12529: Fix false positives for Style/ParenthesesAroundCondition. (@​koic)
  • #12556: Fix false positives for Style/RedundantParentheses when parentheses are used around a semantic operator in expressions within assignments. (@​koic)
  • #12541: Fix false negative in Style/ArgumentsForwarding when a block is forwarded but other args aren't. ([@​dvandersluis][])
  • #12581: Handle trailing line continuation in Layout/LineContinuationLeadingSpace. ([@​eugeneius][])
  • #12601: Make Style/EachForSimpleLoop accept block with no parameters. (@​koic)

Changes

  • #12535: Allow --autocorrect with --display-only-fail-level-offenses. ([@​naveg][])
  • #12572: Follow a Ruby 3.3 warning for Security/Open when open with a literal string starting with a pipe. (@​koic)
  • #12453: Make Style/RedundantEach aware of safe navigation operator. (@​koic)
  • #12233: Make Style/SlicingWithRange aware of redundant and beginless range. (@​koic)
  • #12388: Reject additional 'expanded' EnforcedStyle options when --no-auto-gen-enforced-style is given. ([@​kpost][])
  • #12593: Require Parser 3.3.0.2 or higher. (@​koic)

... (truncated)

Changelog

Sourced from rubocop's changelog.

1.60.1 (2024-01-17)

Bug fixes

  • #12625: Fix an error when server cache dir has read-only file system. ([@​Strzesia][])
  • #12618: Fix false positives for Style/ArgumentsForwarding when using block argument forwarding with other arguments. ([@​koic][])
  • #12614: Fix false positiveis for Style/RedundantParentheses when parentheses in control flow keyword with multiline style argument. ([@​koic][])

Changes

  • #12617: Make Style/CollectionCompact aware of grep_v with nil. ([@​koic][])

1.60.0 (2024-01-15)

Bug fixes

  • #12603: Fix an infinite loop error for Style/MultilineTernaryOperator when using a method call as a ternary operator condition with a line break between receiver and method. ([@​koic][])
  • #12549: Fix a false positive for Style/RedundantLineContinuation when line continuations for multiline leading dot method chain with a blank line. ([@​koic][])
  • #12610: Accept parentheses in argument calls with blocks for Style/MethodCallWithArgsParentheses omit_parentheses style. ([@​gsamokovarov][])
  • #12580: Fix an infinite loop error for Layout/EndAlignment when misaligned in singleton class assignments with EnforcedStyleAlignWith: variable. ([@​koic][])
  • #12548: Fix an infinite loop error for Layout/FirstArgumentIndentation when specifying EnforcedStyle: with_fixed_indentation of Layout/ArrayAlignment. ([@​koic][])
  • #12236: Fix an error for Lint/ShadowedArgument when self assigning to a block argument in for. ([@​koic][])
  • #12569: Fix an error for Style/IdenticalConditionalBranches when using if...else with identical leading lines that assign to self.foo. ([@​koic][])
  • #12437: Fix an infinite loop error for EnforcedStyle: omit_parentheses of Style/MethodCallWithArgsParentheses with Style/SuperWithArgsParentheses. ([@​koic][])
  • #12558: Fix an incorrect autocorrect for Style/MapToHash when using map.to_h without receiver. ([@​koic][])
  • #12179: Let --auto-gen-config generate Exclude when Max is overridden. ([@​jonas054][])
  • #12574: Fix bug for unrecognized style in --auto-gen-config. ([@​jonas054][])
  • #12542: Fix false positive for Lint/MixedRegexpCaptureTypes when using look-ahead matcher. ([@​marocchino][])
  • #12607: Fix a false positive for Style/RedundantParentheses when regexp literal attempts to match against a parenthesized condition. ([@​koic][])
  • #12539: Fix false positives for Lint/LiteralAssignmentInCondition when a collection literal contains non-literal elements. ([@​koic][])
  • #12571: Fix false positives for Naming/BlockForwarding when using explicit block forwarding in block method. ([@​koic][])
  • #12537: Fix false positives for Style/RedundantParentheses when AllowInMultilineConditions: true of Style/ParenthesesAroundCondition. ([@​koic][])
  • #12578: Fix false positives for Style/ArgumentsForwarding when rest arguments forwarding to a method in block. ([@​koic][])
  • #12540: Fix false positives for Style/HashEachMethods when rest block argument of Enumerable#each method is used. ([@​koic][])
  • #12529: Fix false positives for Style/ParenthesesAroundCondition. ([@​koic][])
  • #12556: Fix false positives for Style/RedundantParentheses when parentheses are used around a semantic operator in expressions within assignments. ([@​koic][])
  • #12541: Fix false negative in Style/ArgumentsForwarding when a block is forwarded but other args aren't. ([@​dvandersluis][])
  • #12581: Handle trailing line continuation in Layout/LineContinuationLeadingSpace. ([@​eugeneius][])
  • #12601: Make Style/EachForSimpleLoop accept block with no parameters. ([@​koic][])

Changes

  • #12535: Allow --autocorrect with --display-only-fail-level-offenses. ([@​naveg][])
  • #12572: Follow a Ruby 3.3 warning for Security/Open when open with a literal string starting with a pipe. ([@​koic][])
  • #12453: Make Style/RedundantEach aware of safe navigation operator. ([@​koic][])
  • #12233: Make Style/SlicingWithRange aware of redundant and beginless range. ([@​koic][])
  • #12388: Reject additional 'expanded' EnforcedStyle options when --no-auto-gen-enforced-style is given. ([@​kpost][])
  • #12593: Require Parser 3.3.0.2 or higher. ([@​koic][])

1.59.0 (2023-12-11)

... (truncated)

Commits
  • 1f507c9 Cut 1.60.1
  • 356b6cb Update Changelog
  • 936895d [Fix #12618] Fix false positives for Style/ArgumentsForwarding
  • 927a220 Merge pull request #12625 from Strzesia/handle-errno-erofs-exception
  • d0dccdd Add Errno::EROFS exception handling for read-only file systems
  • ef7f54e [Fix #12617] Make Style/CollectionCompact aware of grep_v with nil
  • f4cc292 [Fix #12614] Fix false positiveis for Style/RedundantParentheses
  • ce906c6 Switch back the docs version
  • 56e88bb Cut 1.60
  • 84ee480 Update Changelog
  • Additional commits viewable in compare view

Updates rubocop-minitest from 0.31.1 to 0.34.5

Release notes

Sourced from rubocop-minitest's releases.

RuboCop Minitest 0.34.5

Bug fixes

  • #299: Fix an error for Style/UselessAssertion when passing a single argument to methods to accept two arguments. (@​earlopain)

Changes

  • #298: Extend Minitest/AssertKindOf to also correct assert(object.is_a?(Class)). (@​amomchilov)

RuboCop Minitest 0.34.4

Bug fixes

  • #292: Ensure all kinds of assignments are correctly handled when counting assertions. (@​G-Rath)

RuboCop Minitest 0.34.3

Bug fixes

  • #287: Don't error on empty blocks when linting assert_raises. (@​G-Rath)
  • #289: Don't count assertions twice when their return value is being assigned. (@​G-Rath)

RuboCop Minitest 0.34.2

Bug fixes

  • #283: Fix an error for Minitest/MultipleAssertions when using || assigning a value to a variable. (@​koic)

RuboCop Minitest 0.34.1

Bug fixes

  • #281: Fix an error when assigning a value to an object attribute. (@​koic)

RuboCop Minitest 0.34.0 (The RubyConf Taiwan 2023 Edition)

New features

  • #272: Add new Minitest/RedundantMessageArgument cop. (@​koic)
  • #279: Add new Minitest/NonExecutableTestMethod cop. (@​koic)

Bug fixes

  • #275: Make Minitest/AssertMatch aware of assert_operator when running with Ruby 2.7. (@​koic)

... (truncated)

Changelog

Sourced from rubocop-minitest's changelog.

0.34.5 (2024-01-20)

Bug fixes

  • #299: Fix an error for Style/UselessAssertion when passing a single argument to methods to accept two arguments. ([@​earlopain][])

Changes

  • #298: Extend Minitest/AssertKindOf to also correct assert(object.is_a?(Class)). ([@​amomchilov][])

0.34.4 (2024-01-09)

Bug fixes

  • #292: Ensure all kinds of assignments are correctly handled when counting assertions. ([@​G-Rath][])

0.34.3 (2024-01-01)

Bug fixes

  • #287: Don't error on empty blocks when linting assert_raises. ([@​G-Rath][])
  • #289: Don't count assertions twice when their return value is being assigned. ([@​G-Rath][])

0.34.2 (2023-12-25)

Bug fixes

  • #283: Fix an error for Minitest/MultipleAssertions when using || assigning a value to a variable. ([@​koic][])

0.34.1 (2023-12-16)

Bug fixes

  • #281: Fix an error when assigning a value to an object attribute. ([@​koic][])

0.34.0 (2023-12-16)

New features

  • #272: Add new Minitest/RedundantMessageArgument cop. ([@​koic][])
  • #279: Add new Minitest/NonExecutableTestMethod cop. ([@​koic][])

Bug fixes

  • #275: Make Minitest/AssertMatch aware of assert_operator when running with Ruby 2.7. ([@​koic][])
  • #271: Fix a false positive for Minitest/EmptyLineBeforeAssertionMethods and assert_raises. ([@​fatkodima][])

Changes

... (truncated)

Commits
  • d097efa Cut 0.34.5
  • 3cac9e3 Update Changelog
  • 0ccd6f9 Merge pull request #299 from Earlopain/fix-error-for-style-useless-assertion
  • 9257270 Fix an error for Style/UselessAssertion when passing a single argument to m...
  • 4218ced Merge pull request #298 from amomchilov/AssertKindOf-is_a
  • 8627375 AssertKindOf: also replace is_a?
  • 3fa043a Switch back docs version to master
  • 2124638 Cut 0.34.4
  • 188a281 Update Changelog
  • f063979 Add missing private for Minitest/NonExecutableTestMethod
  • Additional commits viewable in compare view

Updates rubocop-sorbet from 0.7.3 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

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.11011 to 0.5.11214

Release notes

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

sorbet 0.5.11213.20240119122914-ac1e9620f

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11212.20240118144312-6440c6956

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11211.20240118144233-e57959a04

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11210.20240118144215-1d71d864a

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11209.20240118141219-6c818f93a

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11208.20240118121215-9770dabd0

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11207.20240118120849-12f337e12

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11205.20240117155259-af601a916

... (truncated)

Commits

Updates tapioca from 0.11.8 to 0.11.17

Release notes

Sourced from tapioca's releases.

v0.11.17

What's Changed

🐛 Bug Fixes

Full Changelog: Shopify/tapioca@v0.11.16...v0.11.17

v0.11.16

What's Changed

✨ Enhancements

🛠 Other Changes

New Contributors

Full Changelog: Shopify/tapioca@v0.11.15...v0.11.16

v0.11.15

What's Changed

🐛 Bug Fixes

🛠 Other Changes

New Contributors

Full Changelog: Shopify/tapioca@v0.11.14...v0.11.15

v0.11.14

What's Changed

... (truncated)

Commits
  • cdb674e Bump version to v0.11.17
  • 7b845d7 Merge pull request #1762 from Shopify/ko/fix_graphql_type_for
  • 0b458c9 Check if prepare argument is a symbol or string
  • 2c25e6a Merge pull request #1760 from Shopify/uk-improve-pipeline-testing
  • 0127bc3 Move a few gem cli specs to gem pipeline specs
  • 5ee3aec Add ability to define multiple mock gems in gem pipeline spec
  • 9d243f5 Merge pull request #1758 from Shopify/ba-identity-cache-multi
  • fcfd251 Update IdentityCache compiler to generate correct multi methods
  • aeffcdb Merge pull request #1756 from Shopify/emily/skip-alias-in-namespace
  • 9cc3977 Skip compiling constants with alias in namespace
  • Additional commits viewable in compare view

Updates rdoc from 6.5.0 to 6.6.2

Release notes

Sourced from rdoc's releases.

v6.6.2

What's Changed

Full Changelog: ruby/rdoc@v6.6.1...v6.6.2

v6.6.1

What's Changed

Full Changelog: ruby/rdoc@v6.6.0...v6.6.1

v6.6.0

What's Changed

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

| Package | From | To |
| --- | --- | --- |
| [debug](https://github.com/ruby/debug) | `1.8.0` | `1.9.1` |
| [minitest](https://github.com/minitest/minitest) | `5.20.0` | `5.21.2` |
| [rake](https://github.com/ruby/rake) | `13.0.6` | `13.1.0` |
| [rubocop](https://github.com/rubocop/rubocop) | `1.56.2` | `1.60.1` |
| [rubocop-minitest](https://github.com/rubocop/rubocop-minitest) | `0.31.1` | `0.34.5` |
| [rubocop-sorbet](https://github.com/shopify/rubocop-sorbet) | `0.7.3` | `0.7.6` |
| [sorbet-static-and-runtime](https://github.com/sorbet/sorbet) | `0.5.11011` | `0.5.11214` |
| [tapioca](https://github.com/Shopify/tapioca) | `0.11.8` | `0.11.17` |
| [rdoc](https://github.com/ruby/rdoc) | `6.5.0` | `6.6.2` |
| [psych](https://github.com/ruby/psych) | `5.1.0` | `5.1.2` |


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

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

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.60.1
- [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.60.1)

Updates `rubocop-minitest` from 0.31.1 to 0.34.5
- [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.34.5)

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

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

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

Updates `rdoc` from 6.5.0 to 6.6.2
- [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.2)

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

---
updated-dependencies:
- dependency-name: debug
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- 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: 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 Jan 29, 2024

Superseded by #34.

@dependabot dependabot bot closed this Jan 29, 2024
@dependabot dependabot bot deleted the dependabot/bundler/minor-and-patch-e8f4244b3e branch January 29, 2024 12:38
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