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 4 updates #325

Merged
merged 1 commit into from
Jul 15, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jul 15, 2024

Bumps the minor-and-patch group with 4 updates: rubocop, sorbet, tapioca and sorbet-runtime.

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 sorbet from 0.5.11473 to 0.5.11481

Release notes

Sourced from sorbet's releases.

sorbet 0.5.11480.20240710154824-b6010f72f

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11479.20240710101524-38bb1ae6f

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11478.20240709135901-201284881

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11477.20240709133902-2f11473a7

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11476.20240709133349-56154e434

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11475.20240708120842-743f567d9

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11474.20240708103617-54a03294f

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11473.20240705143756-d53c006bd

... (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: Shopify/tapioca@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 sorbet-runtime from 0.5.11473 to 0.5.11481

Release notes

Sourced from sorbet-runtime's releases.

sorbet 0.5.11480.20240710154824-b6010f72f

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11479.20240710101524-38bb1ae6f

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11478.20240709135901-201284881

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11477.20240709133902-2f11473a7

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11476.20240709133349-56154e434

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11475.20240708120842-743f567d9

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11474.20240708103617-54a03294f

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11473.20240705143756-d53c006bd

... (truncated)

Commits

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 <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> 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 <dependency name> 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 <dependency name> 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 <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the minor-and-patch group with 4 updates: [rubocop](https://github.com/rubocop/rubocop), [sorbet](https://github.com/sorbet/sorbet), [tapioca](https://github.com/Shopify/tapioca) and [sorbet-runtime](https://github.com/sorbet/sorbet).


Updates `rubocop` from 1.64.1 to 1.65.0
- [Release notes](https://github.com/rubocop/rubocop/releases)
- [Changelog](https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md)
- [Commits](rubocop/rubocop@v1.64.1...v1.65.0)

Updates `sorbet` from 0.5.11473 to 0.5.11481
- [Release notes](https://github.com/sorbet/sorbet/releases)
- [Commits](https://github.com/sorbet/sorbet/commits)

Updates `tapioca` from 0.15.0 to 0.15.1
- [Release notes](https://github.com/Shopify/tapioca/releases)
- [Commits](Shopify/tapioca@v0.15.0...v0.15.1)

Updates `sorbet-runtime` from 0.5.11473 to 0.5.11481
- [Release notes](https://github.com/sorbet/sorbet/releases)
- [Commits](https://github.com/sorbet/sorbet/commits)

---
updated-dependencies:
- dependency-name: rubocop
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: sorbet
  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: sorbet-runtime
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot requested a review from a team as a code owner July 15, 2024 05:09
@dependabot dependabot bot requested a review from amomchilov July 15, 2024 05:09
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Jul 15, 2024
@dependabot dependabot bot requested a review from egiurleo July 15, 2024 05:09
@github-actions github-actions bot enabled auto-merge July 15, 2024 05:10
@github-actions github-actions bot merged commit 08cecb6 into main Jul 15, 2024
8 checks passed
@github-actions github-actions bot deleted the dependabot/bundler/minor-and-patch-398c55312f branch July 15, 2024 05:10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants