Shopify / cli-ui

CLI tooling framework with simple interactive widgets
MIT License
1.01k stars 50 forks source link

Bump the dev-dependencies group across 1 directory with 6 updates #542

Closed dependabot[bot] closed 2 months ago

dependabot[bot] commented 3 months ago

Bumps the dev-dependencies group with 4 updates in the / directory: rubocop, rubocop-sorbet, sorbet-runtime and mocha.

Updates rubocop from 1.64.1 to 1.65.1

Release notes

Sourced from rubocop's releases.

RuboCop 1.65.1

New features

  • #13068: Add config validation to Naming/PredicateName to check that all ForbiddenPrefixes are being checked. (@​maxjacobson)

Bug fixes

  • #13051: Fix an error for Lint/FloatComparison when comparing with rational literal. (@​koic)
  • #13065: Fix an error for Lint/UselessAssignment when same name variables are assigned using chained assignment. (@​koic)
  • #13062: Fix an error for Style/InvertibleUnlessCondition when using empty parenthesis as condition. (@​earlopain)
  • #11438: Explicitly load fileutils before calculating before_us. (@​r7kamura)
  • #13044: Fix false negatives for Lint/ImplicitStringConcatenation when using adjacent string interpolation literals on the same line. (@​koic)
  • #13083: Fix a false positive for Style/GlobalStdStream when using namespaced constants like Foo::STDOUT. (@​earlopain)
  • #13081: Fix a false positive for Style/ZeroLengthPredicate when using safe navigation and non-zero comparison. (@​fatkodima)
  • #13041: Fix false positives for Lint/UselessAssignment when pattern match variable is assigned and used in a block. (@​koic)
  • #13076: Fix an incorrect autocorrect for Naming/RescuedExceptionsVariableName when using hash value omission. (@​koic)

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

... (truncated)

Changelog

Sourced from rubocop's changelog.

1.65.1 (2024-08-01)

New features

  • #13068: Add config validation to Naming/PredicateName to check that all ForbiddenPrefixes are being checked. ([@​maxjacobson][])

Bug fixes

  • #13051: Fix an error for Lint/FloatComparison when comparing with rational literal. ([@​koic][])
  • #13065: Fix an error for Lint/UselessAssignment when same name variables are assigned using chained assignment. ([@​koic][])
  • #13062: Fix an error for Style/InvertibleUnlessCondition when using empty parenthesis as condition. ([@​earlopain][])
  • #11438: Explicitly load fileutils before calculating before_us. ([@​r7kamura][])
  • #13044: Fix false negatives for Lint/ImplicitStringConcatenation when using adjacent string interpolation literals on the same line. ([@​koic][])
  • #13083: Fix a false positive for Style/GlobalStdStream when using namespaced constants like Foo::STDOUT. ([@​earlopain][])
  • #13081: Fix a false positive for Style/ZeroLengthPredicate when using safe navigation and non-zero comparison. ([@​fatkodima][])
  • #13041: Fix false positives for Lint/UselessAssignment when pattern match variable is assigned and used in a block. ([@​koic][])
  • #13076: Fix an incorrect autocorrect for Naming/RescuedExceptionsVariableName when using hash value omission. ([@​koic][])

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

... (truncated)

Commits
  • b073d7a Cut 1.65.1
  • 8c4c144 Update Changelog
  • 19b3d9d Merge pull request #13083 from Earlopain/false-positive-global-std-stream
  • 761b917 Fix false positive for Style/GlobalStdStream for namespaced constants
  • 58eeb7a Clarify docs in Naming/PredicateName
  • 2443641 Add a validate_config for Naming/PredicateName
  • 68bd9da Merge pull request #13079 from koic/fix_incorrect_autocorrect_for_naming_resc...
  • 748a568 Merge pull request #13081 from fatkodima/zero_length_predicate-false-positive
  • 70d8e88 Fix a false positive for Style/ZeroLengthPredicate when using safe navigati...
  • ea309c2 [Fix #13076] Fix an incorrect autocorrect for `Naming/RescuedExceptionsVariab...
  • 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-runtime from 0.5.11463 to 0.5.11506

Release notes

Sourced from sorbet-runtime's releases.

sorbet 0.5.11505.20240802155434-6f56fa4fe

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11504.20240731154411-2d91ebab7

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11503.20240731143622-5b4782ef1

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11502.20240731130558-ece51e0c9

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11501.20240730165607-19fa95b57

To use Sorbet add this line to your Gemfile:

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

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

... (truncated)

Commits


Updates sorbet from 0.5.11463 to 0.5.11506

Release notes

Sourced from sorbet's releases.

sorbet 0.5.11505.20240802155434-6f56fa4fe

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11504.20240731154411-2d91ebab7

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11503.20240731143622-5b4782ef1

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11502.20240731130558-ece51e0c9

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11501.20240730165607-19fa95b57

To use Sorbet add this line to your Gemfile:

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

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

... (truncated)

Commits


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


Updates mocha from 2.4.0 to 2.4.5

Changelog

Sourced from mocha's changelog.

2.4.5

External changes

  • Fix regression when stubbed method expects Hash but receives ActionController::Parameters object (#662, #664) - thanks to @​evgeni for reporting and testing

2.4.4

External changes

  • Fix regression when method expecting Hash parameter or keyword arguments is invoked with no arguments (#662, #663) - thanks to @​vlad-pisanov for reporting

2.4.3

External changes

  • Fix regression when matching Hash parameter or keyword arguments (#657, #660) - thanks to @​josesei for reporting and testing

2.4.2

External changes

2.4.1

External changes

  • Fix regression in matchers when used with keyword arguments (#654 & #655) - thanks to @​ElvinEfendi for reporting

Internal changes

  • Reduce duplication & consolidate #to_matcher method definitions (600ee2aa, e9de64e4, #655)
  • Change #to_matcher method to use keyword arguments (3b60b7df, #655)
Commits
  • 4e2ca1b [skip ci] Update documentation for v2.4.5
  • 3d77c69 Bump version to 2.4.5 & prepare for release
  • 6a91439 Merge pull request #664 from freerange/fix-regression-when-stubbed-method-exp...
  • 228acc9 Fix exact match on ActionController::Parameters
  • 0e2b73c Add missing unit tests for HasEntries exact option
  • 9d7b2ba Add missing unit tests for HasEntries
  • 9f917f8 [skip ci] Update documentation for v2.4.4
  • 06ee5ba Bump version to 2.4.4 & prepare for release
  • 64b8904 Improve formatting in release notes for v2.4.3
  • 869c24e Fix regression when stubbed method invoked with no args
  • 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