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 9 updates #31

Closed

Conversation

dependabot[bot]
Copy link

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

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

Package From To
debug 1.8.0 1.9.1
rake 13.0.6 13.1.0
rubocop 1.56.2 1.59.0
rubocop-minitest 0.31.1 0.34.3
rubocop-sorbet 0.7.3 0.7.6
sorbet-static-and-runtime 0.5.11011 0.5.11178
tapioca 0.11.8 0.11.14
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 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.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-minitest from 0.31.1 to 0.34.3

Release notes

Sourced from rubocop-minitest's releases.

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)
  • #271: Fix a false positive for Minitest/EmptyLineBeforeAssertionMethods and assert_raises. (@​fatkodima)

Changes

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)

... (truncated)

Changelog

Sourced from rubocop-minitest's changelog.

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

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][])

... (truncated)

Commits
  • 90fc925 Cut 0.34.3
  • 5f7a42d Update Changelog
  • 48a64ae Merge pull request #291 from G-Rath/fix-assertion-count-again
  • 1cbbe83 [Fix #289] count asserts within blocks for assignments
  • 1ef32c0 Merge pull request #290 from G-Rath/fix-assertion-count
  • c1a5405 [Fix #289] don't count assertions twice when their return value is being assi...
  • d0b6912 Merge pull request #288 from G-Rath/fix-error
  • c907e1c [Fix #287] don't error on empty blocks when linting assert_raises
  • de7824c Merge pull request #286 from koic/ci_against_ruby_3_3
  • c1f6576 CI against Ruby 3.3
  • 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.11178

Release notes

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

sorbet 0.5.11177.20240105103412-15aa5874a

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11176.20240104122727-0f8f23c4d

To use Sorbet add this line to your Gemfile:

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

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

... (truncated)

Commits

Updates tapioca from 0.11.8 to 0.11.14

Release notes

Sourced from tapioca's releases.

v0.11.14

What's Changed

🐛 Bug Fixes

🛠 Other Changes

New Contributors

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

v0.11.13

What's Changed

✨ Enhancements

🐛 Bug Fixes

🛠 Other Changes

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

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

... (truncated)

Commits
  • 0bc05d6 Merge pull request #1735 from Shopify/uk-fix-set-compare-by-identity
  • c1333df Make sure we use compare by identity Sets properly
  • f7970d8 Add failing test with a constant that implements hash
  • ffe63f4 Merge pull request #1734 from Shopify/vs/remove_identity_feature_check
  • 7645631 Remove identity comparison feature check in favour of a conditional
  • d67c001 Merge pull request #1730 from bdewater/aj-perform-later-block
  • ceabc81 Active Job 7+ perform_later takes an optional block
  • b63ae95 Bump version to v0.11.14
  • 2e4ab6f Merge pull request #1732 from Shopify/vs/handle_new_identity_comparison_hashes
  • 5673e5f Merge pull request #1721 from DougEdey/de/handle_graphql_prepare_method
  • 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 9 updates:

| Package | From | To |
| --- | --- | --- |
| [debug](https://github.com/ruby/debug) | `1.8.0` | `1.9.1` |
| [rake](https://github.com/ruby/rake) | `13.0.6` | `13.1.0` |
| [rubocop](https://github.com/rubocop/rubocop) | `1.56.2` | `1.59.0` |
| [rubocop-minitest](https://github.com/rubocop/rubocop-minitest) | `0.31.1` | `0.34.3` |
| [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.11178` |
| [tapioca](https://github.com/Shopify/tapioca) | `0.11.8` | `0.11.14` |
| [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 `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.59.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.59.0)

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

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.11178
- [Release notes](https://github.com/sorbet/sorbet/releases)
- [Commits](https://github.com/sorbet/sorbet/commits)

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

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: 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 15, 2024

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

@dependabot dependabot bot closed this Jan 15, 2024
@dependabot dependabot bot deleted the dependabot/bundler/minor-and-patch-27968ce582 branch January 15, 2024 12:11
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