Shopify / rbi-central

MIT License
55 stars 36 forks source link

Bump the minor-and-patch group in /gem with 8 updates #237

Closed dependabot[bot] closed 5 months ago

dependabot[bot] commented 5 months ago

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

Package From To
minitest 5.22.2 5.22.3
debug 1.9.1 1.9.2
json-schema 4.1.1 4.3.0
rubocop 1.61.0 1.62.1
rubocop-sorbet 0.7.7 0.8.0
sorbet-static-and-runtime 0.5.11276 0.5.11319
spoom 1.2.4 1.3.0
tapioca 0.12.0 0.13.1

Updates minitest from 5.22.2 to 5.22.3

Changelog

Sourced from minitest's changelog.

=== 5.22.3 / 2024-03-13

  • 1 minor enhancement:

    • MASSIVE improvement of minitest's pride plugin output: Frequencies doubled! Sine waves shifted!! Comments improved!!! Colors rotated!!!! (havenwood)
  • 3 bug fixes:

    • Improved wording on Minitest::Test#parallelize_me! to clarify it goes INSIDE your test class/describe.
    • Minor changes to tests to pass when tests ran with extra flags (eg -p).
    • Support Ruby 3.4's new error message format. (mame)
Commits
  • d0a993f Branching minitest to version 5.22.3
  • 112cdff - Minor changes to tests to pass when tests ran with extra flags (eg -p).
  • 9d2fc6c + MASSIVE improvement of minitest's pride plugin output: Frequencies doubled!...
  • 1ead76c - Improved wording on Minitest::Test#parallelize_me! to clarify it goes INSID...
  • 93597e5 - Support Ruby 3.4's new error message format. (mame)
  • See full diff in compare view


Updates debug from 1.9.1 to 1.9.2

Release notes

Sourced from debug's releases.

v1.9.2

What's Changed

New Contributors

Full Changelog: https://github.com/ruby/debug/compare/v1.9.1...v1.9.2

Commits
  • 0b77e82 v1.9.2
  • 6407c98 Format tables
  • a655f10 Mention IRB as the console in readme
  • ffbdb30 Use rb_iseqw_to_iseq to get iseq pointer
  • 75326e2 Fix name of rb_iseq_t struct
  • 6e9a127 Add Launchable in CI
  • 3564601 Fix flakey test "test_reponse_returns_correct_threads_info"
  • 98dad00 Separate setup and execution steps in CI
  • 68f7753 Add Session#deactivate_irb_integration
  • 935f903 Make irb_console toggleable with config update
  • Additional commits viewable in compare view


Updates json-schema from 4.1.1 to 4.3.0

Changelog

Sourced from json-schema's changelog.

v4.3.0 (2024-03-26)

Full Changelog

Implemented enhancements:

v4.2.0 (2024-03-15)

Full Changelog

Implemented enhancements:

  • Ensure compatibility with ruby --enable-frozen-string-literal #508 (casperisfine)
Commits
  • 4aed27d Merge pull request #511 from bastelfreak/rel430
  • bd2bb3d Release 4.3.0
  • 907eb28 Merge pull request #510 from olleolleolle/patch-1
  • 29fcaa1 Linting json-schema.gemspec
  • 7695345 json-schema.gemspec: add metadata links
  • 8d5740d Merge pull request #509 from bastelfreak/rel420
  • b36ebf3 Release 4.2.0
  • 7e4c49a Merge pull request #508 from casperisfine/enable-frozen-string-literal
  • d1d1e48 Ensure compatibility with ruby --enable-frozen-string-literal
  • 2cc181b Merge pull request #505 from ydah/fix-typo
  • Additional commits viewable in compare view


Updates rubocop from 1.61.0 to 1.62.1

Release notes

Sourced from rubocop's releases.

RuboCop 1.62.1

Bug fixes

  • #12761: Fix a false positive for Style/HashEachMethods when the key block argument of Enumerable#each method is unused after chunk. (@​koic)
  • #12768: Fix a false positive for Style/NilComparison without receiver and EnforcedStyle: comparison. (@​earlopain)
  • #12752: Fix an error for Gemspec/RequiredRubyVersion when the file is empty. (@​earlopain)
  • #12770: Fix an error for Lint/RedundantWithIndex when the method has no receiver. (@​earlopain)
  • #12775: Fix an error for Lint/UselessTimes when no block is present. (@​earlopain)
  • #12772: Fix an error for Style/ClassVars when calling class_variable_set without arguments. (@​earlopain)
  • #12773: Fix an error for Style/For with EnforcedStyle: for when no receiver. (@​earlopain)
  • #12765: Fix an error for Layout/MultilineMethodCallIndentation with safe navigation and assignment method. (@​earlopain)
  • #12703: Fix an error for Lint/MixedCaseRange with invalid byte sequence in UTF-8. (@​earlopain)
  • #12755: Fix an exception for RedundantCurrentDirectoryInPath in case of require_relative without arguments. (@​viralpraxis)
  • #12710: Fix a false negative for Layout/EmptyLineAfterMagicComment when the file is comments only. (@​earlopain)
  • #12758: Fix false positives for Layout/RedundantLineBreak when using && or || after a backslash newline. (@​koic)
  • #12763: Fix an infinite loop for Style/MultilineMethodSignature when there is a newline directly after the def keyword. (@​earlopain)
  • #12774: Fix an infinite loop for Style/RaiseArgs with EnforcedStyle: compact when passing more than 2 arguments to raise. (@​earlopain)
  • #12663: Fix Lint/Syntax getting disabled by rubocop:disable Lint/Syntax. (@​earlopain)
  • #12756: Only parse target Ruby from gemspec if array elements are strings. (@​davidrunger)

Changes

RuboCop 1.62

Note: This is the first RuboCop release that features (experimental) support for using Prism instead of the parser gem. Check out the docs for more details.

See also this article for additional context.

New features

Bug fixes

  • #12746: Fix a false positive for Lint/ToEnumArguments when enumerator is created for another method in no arguments method definition. (@​koic)
  • #12726: Fix a false positive for Style/RedundantLineContinuation when using line concatenation and calling a method with keyword arguments without parentheses. (@​koic)
  • #12738: Fix an error for Style/Encoding when magic encoding with mixed case present. (@​koic)
  • #12732: Fix error determining target Ruby when gemspec required_ruby_version is read from another file. (@​davidrunger)
  • #12736: Fix invalid autocorrect in Layout/SpaceInsideHashLiteralBraces. ([@​bquorning][])
  • #12667: Don't load excluded configuration. ([@​jonas054][])

... (truncated)

Changelog

Sourced from rubocop's changelog.

1.62.1 (2024-03-11)

Bug fixes

  • #12761: Fix a false positive for Style/HashEachMethods when the key block argument of Enumerable#each method is unused after chunk. ([@​koic][])
  • #12768: Fix a false positive for Style/NilComparison without receiver and EnforcedStyle: comparison. ([@​earlopain][])
  • #12752: Fix an error for Gemspec/RequiredRubyVersion when the file is empty. ([@​earlopain][])
  • #12770: Fix an error for Lint/RedundantWithIndex when the method has no receiver. ([@​earlopain][])
  • #12775: Fix an error for Lint/UselessTimes when no block is present. ([@​earlopain][])
  • #12772: Fix an error for Style/ClassVars when calling class_variable_set without arguments. ([@​earlopain][])
  • #12773: Fix an error for Style/For with EnforcedStyle: for when no receiver. ([@​earlopain][])
  • #12765: Fix an error for Layout/MultilineMethodCallIndentation with safe navigation and assignment method. ([@​earlopain][])
  • #12703: Fix an error for Lint/MixedCaseRange with invalid byte sequence in UTF-8. ([@​earlopain][])
  • #12755: Fix an exception for RedundantCurrentDirectoryInPath in case of require_relative without arguments. ([@​viralpraxis][])
  • #12710: Fix a false negative for Layout/EmptyLineAfterMagicComment when the file is comments only. ([@​earlopain][])
  • #12758: Fix false positives for Layout/RedundantLineBreak when using && or || after a backslash newline. ([@​koic][])
  • #12763: Fix an infinite loop for Style/MultilineMethodSignature when there is a newline directly after the def keyword. ([@​earlopain][])
  • #12774: Fix an infinite loop for Style/RaiseArgs with EnforcedStyle: compact when passing more than 2 arguments to raise. ([@​earlopain][])
  • #12663: Fix Lint/Syntax getting disabled by rubocop:disable Lint/Syntax. ([@​earlopain][])
  • #12756: Only parse target Ruby from gemspec if array elements are strings. ([@​davidrunger][])

Changes

1.62.0 (2024-03-06)

New features

  • #12600: Support Prism as a Ruby parser (experimental). ([@​koic][])
  • #12725: Support TargetRubyVersion 3.4 (experimental). ([@​koic][])

Bug fixes

  • #12746: Fix a false positive for Lint/ToEnumArguments when enumerator is created for another method in no arguments method definition. ([@​koic][])
  • #12726: Fix a false positive for Style/RedundantLineContinuation when using line concatenation and calling a method with keyword arguments without parentheses. ([@​koic][])
  • #12738: Fix an error for Style/Encoding when magic encoding with mixed case present. ([@​koic][])
  • #12732: Fix error determining target Ruby when gemspec required_ruby_version is read from another file. ([@​davidrunger][])
  • #12736: Fix invalid autocorrect in Layout/SpaceInsideHashLiteralBraces. ([@​bquorning][])
  • #12667: Don't load excluded configuration. ([@​jonas054][])
Commits
  • ed9b69e Cut 1.62.1
  • a99fe78 Update Changelog
  • eceedb7 Fix an error for Lint/UselessTimes when no block is present
  • 8d2ef48 Fix an infinite loop for Style/RaiseArgs with EnforcedStyle: compact when...
  • bb0dd97 Merge pull request #12771 from Earlopain/node-matcher-directive-followup
  • 9b39a55 Merge pull request #12773 from Earlopain/fix-error-for-style-for
  • 409c5a0 Merge pull request #12772 from Earlopain/fix-error-for-style-class-vars
  • 54dbee1 Fix an error for Style/For with EnforcedStyle: for when no receiver
  • 94c17b8 Fix an error for Style/ClassVars when calling class_variable_set without ...
  • 5ee786d Merge pull request #12770 from Earlopain/fix-an-error-for-lint-redundant-with...
  • Additional commits viewable in compare view


Updates rubocop-sorbet from 0.7.7 to 0.8.0

Release notes

Sourced from rubocop-sorbet's releases.

v0.8.0

What's Changed

[!NOTE] This version drops the runtime dependency that Sorbet/SignatureBuildOrder had on unparser, so if you had that dependency in your Gemfile for only this reason, you should be able to drop it now.

🛠 Other Changes

Full Changelog: https://github.com/Shopify/rubocop-sorbet/compare/v0.7.8...v0.8.0

v0.7.8

What's Changed

🛠 Other Changes

Full Changelog: https://github.com/Shopify/rubocop-sorbet/compare/v0.7.7...v0.7.8

Commits
  • fde440d Bump version to v0.8.0
  • e4181c5 Merge pull request #189 from Shopify/order-more-signature-builders
  • e9be4a9 Consolidate dev deps into Gemfile
  • 4e1c3fc Refactor SignatureBuildOrder
  • 67efc28 Add final, bind, & implementation to SignatureBuildOrder
  • 233cf9a Extract SignatureBuildOrder Order config
  • 6b87977 Remove trailing spaces in default config
  • 517d4de Bump version to v0.7.8
  • bd50ee1 Merge pull request #203 from Shopify/at-tmp
  • dcf2f1c Handle spaces in type definitions
  • Additional commits viewable in compare view


Updates sorbet-static-and-runtime from 0.5.11276 to 0.5.11319

Release notes

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

sorbet 0.5.11318.20240328160456-a3f5df505

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11317.20240328144455-3a170f7b2

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11316.20240327175628-afd0fd2f0

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11315.20240327175533-dd1e5710b

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11314.20240327174609-176146026

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11313.20240327124806-deb2363e4

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11312.20240327110619-b87279c97

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11311.20240326153500-c0331cec0

... (truncated)

Commits


Updates spoom from 1.2.4 to 1.3.0

Release notes

Sourced from spoom's releases.

v1.3.0

What's Changed

🚧 Breaking Changes

✨ Enhancements

🐛 Bug Fixes

🛠 Other Changes

New Contributors

Full Changelog: https://github.com/Shopify/spoom/compare/v1.2.4...v1.3.0

Commits
  • f2b202f Bump version to v1.3.0
  • a9bcf2b Bump Tapioca
  • 6374c3b Merge pull request #527 from Shopify/at-deadcode-prism
  • 35b15d8 Use multiple lines to display parse exceptions
  • 0b32028 Also require Tapioca when running Sorbet in test projects
  • 94c7ea4 Migrate dead code remover to Prism
  • 0525a3e Migrate dead code plugins to Prism
  • c857183 Migrate dead code indexing to Prism
  • 19e10bd Introduce custom Prism visitor
  • 3d7e88f Regenerate gem RBIs
  • Additional commits viewable in compare view


Updates tapioca from 0.12.0 to 0.13.1

Release notes

Sourced from tapioca's releases.

v0.13.1

What's Changed

🐛 Bug Fixes

New Contributors

Full Changelog: https://github.com/Shopify/tapioca/compare/v0.13.0...v0.13.1

v0.13.0

What's Changed

✨ Enhancements

🐛 Bug Fixes

New Contributors

Full Changelog: https://github.com/Shopify/tapioca/compare/v0.12.0...v0.13.0

Commits
  • 6f515e0 Bump version to v0.13.1
  • a497082 Merge pull request #1843 from Shopify/at-fix-active-record-relations-compiler
  • cc008be Merge pull request #1840 from Shopify/emily/fix-protobuf-compiler
  • 62d4eca Write test for protobuf dsl with gem version before 3.26
  • 5fda757 Fix ActiveRecordRelations compiler spec for Rails 7.0
  • b5d08d9 Do not call has_presence? on Protobuf::FieldDescriptor unless method exists
  • 05359bf Merge pull request #1846 from Shopify/centralize_ruby_version
  • 22a8190 Complete the .ruby-version standardization
  • fff1131 Merge pull request #1838 from Shopify/dependabot/bundler/rdoc-6.6.3.1
  • d0a0622 Fix ActiveRecordRelations compiler
  • 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 ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore 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 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 ` 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 ` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore ` will remove the ignore condition of the specified dependency and ignore conditions