Shopify / rbi-central

MIT License
55 stars 36 forks source link

Bump the minor-and-patch group in /gem with 7 updates #273

Closed dependabot[bot] closed 1 month ago

dependabot[bot] commented 1 month ago

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

Package From To
json-schema 4.3.0 4.3.1
rbi 0.1.13 0.1.14
rubocop 1.64.1 1.65.0
rubocop-sorbet 0.8.3 0.8.5
sorbet-static-and-runtime 0.5.11463 0.5.11501
spoom 1.3.2 1.4.2
tapioca 0.15.0 0.15.1

Updates json-schema from 4.3.0 to 4.3.1

Changelog

Sourced from json-schema's changelog.

v4.3.1 (2024-07-12)

Full Changelog

Fixed bugs:

Commits


Updates rbi from 0.1.13 to 0.1.14

Release notes

Sourced from rbi's releases.

v0.1.14

What's Changed

🚧 Breaking Changes

🛠 Other Changes

Full Changelog: https://github.com/Shopify/rbi/compare/v0.1.13...v0.1.14

Commits
  • 7af4dc3 Release v0.1.14
  • 799ce4f Merge pull request #313 from Shopify/dependabot/bundler/minor-and-patch-f60a2...
  • a7b2397 Remove unnecessary &. operator
  • 083ab29 Bump the minor-and-patch group with 2 updates
  • 0893a79 Merge pull request #311 from Shopify/at-errors
  • c20b0ab Make parser errors inherit from RBI::Error
  • 68b5e77 Visitor raises specific error class
  • 57c0abd Merge raises specific error class
  • d16092f GroupNodes raises specific error class
  • 2012f7b Printer raises specific error class
  • Additional commits viewable in compare view


Updates rubocop from 1.64.1 to 1.65.0

Release notes

Sourced from rubocop's releases.

RuboCop 1.65

New features

Bug fixes

  • #12954: Fix a false negative for Style/ArgumentsForwarding when arguments forwarding in yield. (@​koic)
  • #13033: Fix a false positive for Layout/SpaceAroundOperators when using multiple spaces between an operator and a tailing comment. (@​koic)
  • #12885: Fix a false positive for Lint/ToEnumArguments when enumerator is created for another method. (@​koic)
  • #13018: Fix a false positive for Style/MethodCallWithArgsParentheses when EnforcedStyle: omit_parentheses is set and parenthesized method call is used before constant resolution. (@​koic)
  • #12986: Fix a false positive for Style/RedundantBegin when endless method definition with rescue. (@​koic)
  • #12985: Fix an error for Style/RedundantRegexpCharacterClass when using regexp_parser gem 2.3.1 or older. (@​koic)
  • #13010: Fix an error for Style/SuperArguments when the hash argument is or-assigned. (@​koic)
  • #13023: Fix an error for Style/SymbolProc when using lambda -> with one argument and multiline do...end block. (@​koic)
  • #12989: Fix an error for the inherit_gem config when the Gemfile contains an uninstalled git gem. (@​earlopain)
  • #12975: Fix an error for the inherit_gem config when running RuboCop without bundler and no Gemfile exists. (@​earlopain)
  • #12997: Fix an error for Lint/UnmodifiedReduceAccumulator when the block is empty. (@​earlopain)
  • #12979: Fix false negatives for Lint/Void when void expression with guard clause is not on last line. (@​koic)
  • #12716: Fix false negatives for Lint/Void when using parenthesized void operators. (@​koic)
  • #12471: Fix false negatives for Style/ZeroLengthPredicate when using safe navigation operator. (@​koic)
  • #12960: Fix false positives for Lint/NestedMethodDefinition when definition of method on variable. (@​koic)
  • #13012: Fix false positives for Style/HashExcept when using reject and calling include? method with bang. (@​koic)
  • #12983: Fix false positives for Style/SendWithLiteralMethodName using send with writer method name. (@​koic)
  • #12957: Fix false positives for Style/SuperArguments when calling super in a block. (@​koic)

Changes

  • #12970: Add CountModifierForms option to Metrics/BlockNesting and set it to false by default. (@​koic)
  • #13032: Display warning messages for deprecated APIs. (@​koic)
  • #13031: Enable YJIT by default in server mode. (@​koic)
  • #12557: Make server mode aware of auto-restart for bundle update. (@​koic)
  • #12616: Make Style/MapCompactWithConditionalBlock aware of filter_map. (@​koic)
  • #13035: Support autocorrect for Lint/ImplicitStringConcatenation. (@​koic)
Changelog

Sourced from rubocop's changelog.

1.65.0 (2024-07-10)

New features

Bug fixes

  • #12954: Fix a false negative for Style/ArgumentsForwarding when arguments forwarding in yield. ([@​koic][])
  • #13033: Fix a false positive for Layout/SpaceAroundOperators when using multiple spaces between an operator and a tailing comment. ([@​koic][])
  • #12885: Fix a false positive for Lint/ToEnumArguments when enumerator is created for another method. ([@​koic][])
  • #13018: Fix a false positive for Style/MethodCallWithArgsParentheses when EnforcedStyle: omit_parentheses is set and parenthesized method call is used before constant resolution. ([@​koic][])
  • #12986: Fix a false positive for Style/RedundantBegin when endless method definition with rescue. ([@​koic][])
  • #12985: Fix an error for Style/RedundantRegexpCharacterClass when using regexp_parser gem 2.3.1 or older. ([@​koic][])
  • #13010: Fix an error for Style/SuperArguments when the hash argument is or-assigned. ([@​koic][])
  • #13023: Fix an error for Style/SymbolProc when using lambda -> with one argument and multiline do...end block. ([@​koic][])
  • #12989: Fix an error for the inherit_gem config when the Gemfile contains an uninstalled git gem. ([@​earlopain][])
  • #12975: Fix an error for the inherit_gem config when running RuboCop without bundler and no Gemfile exists. ([@​earlopain][])
  • #12997: Fix an error for Lint/UnmodifiedReduceAccumulator when the block is empty. ([@​earlopain][])
  • #12979: Fix false negatives for Lint/Void when void expression with guard clause is not on last line. ([@​koic][])
  • #12716: Fix false negatives for Lint/Void when using parenthesized void operators. ([@​koic][])
  • #12471: Fix false negatives for Style/ZeroLengthPredicate when using safe navigation operator. ([@​koic][])
  • #12960: Fix false positives for Lint/NestedMethodDefinition when definition of method on variable. ([@​koic][])
  • #13012: Fix false positives for Style/HashExcept when using reject and calling include? method with bang. ([@​koic][])
  • #12983: Fix false positives for Style/SendWithLiteralMethodName using send with writer method name. ([@​koic][])
  • #12957: Fix false positives for Style/SuperArguments when calling super in a block. ([@​koic][])

Changes

  • #12970: Add CountModifierForms option to Metrics/BlockNesting and set it to false by default. ([@​koic][])
  • #13032: Display warning messages for deprecated APIs. ([@​koic][])
  • #13031: Enable YJIT by default in server mode. ([@​koic][])
  • #12557: Make server mode aware of auto-restart for bundle update. ([@​koic][])
  • #12616: Make Style/MapCompactWithConditionalBlock aware of filter_map. ([@​koic][])
  • #13035: Support autocorrect for Lint/ImplicitStringConcatenation. ([@​koic][])
Commits
  • 28786cf Cut 1.65
  • b20355f Update Changelog
  • f3b368a [Fix #13035] Support autocorrect for Lint/ImplicitStringConcatenation
  • 357ff41 Merge pull request #13034 from koic/fix_a_false_positive_for_layout_space_aro...
  • 3395b6a [Fix #13033] Fix a false positive for Layout/SpaceAroundOperators
  • a71c653 Enable YJIT by default in server mode
  • 2d332e9 Display warning messages for deprecated APIs
  • 9872bca Use Regexp#match?
  • 961ca82 [Docs] Prioritize using add_dependency over add_runtime_dependency in exa...
  • ce3d448 Add new Gemspec/AddRuntimeDependency cop
  • Additional commits viewable in compare view


Updates rubocop-sorbet from 0.8.3 to 0.8.5

Release notes

Sourced from rubocop-sorbet's releases.

v0.8.5

What's Changed

✨ Enhancements

Full Changelog: https://github.com/Shopify/rubocop-sorbet/compare/v0.8.4...v0.8.5

v0.8.4

What's Changed

🛠 Other Changes

New Contributors

Full Changelog: https://github.com/Shopify/rubocop-sorbet/compare/v0.8.3...v0.8.4

Commits
  • 7443406 Bump version to v0.8.5
  • 05c6081 Merge pull request #249 from Shopify/at-rbi-cop
  • 3c6ad00 Enable Layout/SpaceInsideReferenceBrackets cop
  • e25f534 Reorder Sorbet/ValidGemVersionAnnotations cop config
  • d2ceae7 Merge pull request #248 from Shopify/KaanOzkan-patch-1
  • a543588 Enable Layout/SpaceInsideBlockBraces
  • 5cba866 Merge pull request #199 from Shopify/emily/valid-rbi-version-annotations
  • 3cffa24 Create a cop to validate gem version annotations in RBI files
  • b781739 Use consistent inheritance style (#246)
  • ccb0dfd Bump version to v0.8.4 in Gemfile.lock
  • Additional commits viewable in compare view


Updates sorbet-static-and-runtime from 0.5.11463 to 0.5.11501

Release notes

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

sorbet 0.5.11500.20240729155837-8d2a98f0f

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11499.20240729150127-44fc605c7

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11498.20240729145941-1645466a9

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11497.20240729144522-dc3f0336c

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11496.20240729114016-511d75c37

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11495.20240724142429-5101acfc7

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11494.20240724105627-75d297d14

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11493.20240723110839-2820e9ee6

... (truncated)

Commits


Updates spoom from 1.3.2 to 1.4.2

Release notes

Sourced from spoom's releases.

v1.4.2

What's Changed

🐛 Bug Fixes

Full Changelog: https://github.com/Shopify/spoom/compare/v1.4.1...v1.4.2

v1.4.1

What's Changed

🐛 Bug Fixes

Full Changelog: https://github.com/Shopify/spoom/compare/v1.4.0...v1.4.1

v1.4.0

What's Changed

✨ Enhancements

🐛 Bug Fixes

New Contributors

Full Changelog: https://github.com/Shopify/spoom/compare/v1.3.3...v1.4.0

v1.3.3

What's Changed

✨ Enhancements

🐛 Bug Fixes

... (truncated)

Commits
  • 614aa8f Bump version to v1.4.2
  • 2e6e39d Merge pull request #596 from Shopify/at-fix-minitest-plugin
  • 84bb2df Revert Improve deadcode plugin for Minitest #579
  • 1a612ab Merge pull request #595 from Shopify/dependabot/bundler/minor-and-patch-93d93...
  • eb0ce70 Bump the minor-and-patch group with 2 updates
  • cf9c6a7 Prepare v1.4.1 release (#594)
  • e1da5bf Ignore *Test named classes again (#593)
  • 962589d [test only] Make sure ActiveSupport plugin ignores class definition (#591)
  • 6087731 Merge pull request #589 from Shopify/ar/release_1.4.0
  • ad43df5 Bump version to v1.4.0
  • Additional commits viewable in compare view


Updates tapioca from 0.15.0 to 0.15.1

Release notes

Sourced from tapioca's releases.

v0.15.1

What's Changed

🐛 Bug Fixes

New Contributors

Full Changelog: https://github.com/Shopify/tapioca/compare/v0.15.0...v0.15.1

Commits
  • c895393 Bump version to v0.15.1
  • ce4d132 Merge pull request #1949 from Shopify/at-fix-spoom-generics
  • b79c440 Merge pull request #1650 from JamieMagee/issue-1485
  • 3c712de Fix gem RBI generation for Spoom's generic
  • 8bab339 Require
  • c6abadd Merge pull request #1944 from tubaxenor/xc-aasm-private-methods-change
  • ba97057 Merge pull request #1947 from Shopify/andyw8/update-rack
  • 1650d38 Update rack dependency
  • eb7f9b4 Merge pull request #1943 from Shopify/dependabot/bundler/minor-and-patch-c95a...
  • 6d51e4b $ tapioca gem --all
  • 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