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 8 updates #22

Closed

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Nov 6, 2023

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

Package From To
rake 13.0.6 13.1.0
rubocop 1.56.2 1.57.2
rubocop-minitest 0.31.1 0.33.0
rubocop-sorbet 0.7.3 0.7.5
sorbet-static-and-runtime 0.5.11011 0.5.11116
tapioca 0.11.8 0.11.10
rdoc 6.5.0 6.6.0
psych 5.1.0 5.1.1.1

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.57.2

Release notes

Sourced from rubocop's releases.

RuboCop 1.57.2

Bug fixes

  • #12274: Fix a false positive for Lint/Void when each's receiver is an object of Enumerator to which filter has been applied. (@​koic)
  • #12291: Fix a false positive for Metrics/ClassLength when a class with a singleton class definition. (@​koic)
  • #12293: Fix a false positive for Style/RedundantDoubleSplatHashBraces when using double splat hash braces with merge and method chain. (@​koic)
  • #12298: Fix a false positive for Style/RedundantParentheses when using a parenthesized hash literal as the first argument in a method call without parentheses. (@​koic)
  • #12283: Fix an error for Style/SingleLineDoEndBlock when using single line do...end with no body. (@​koic)
  • #12312: Fix an incorrect autocorrect for Style/HashSyntax when braced hash key and value are the same and it is used in if...else. (@​koic)
  • #12307: Fix an infinite loop error for Layout/EndAlignment when EnforcedStyleAlignWith: variable and using a conditional statement in a method argument on the same line and end with method call is not aligned. (@​koic)
  • #11652: Make --auto-gen-config generate inherit_from correctly inside ERB if. (@​jonas054)
  • #12310: Drop base64 gem from runtime dependency. (@​koic)
  • #12300: Fix an error for Style/IdenticalConditionalBranches when if...else with identical leading lines and using index assign. (@​koic)
  • #12286: Fix false positives for Style/RedundantDoubleSplatHashBraces when using double splat with a hash literal enclosed in parenthesized ternary operator. (@​koic)
  • #12279: Fix false positives for Lint/EmptyConditionalBody when missing 2nd if body with a comment. (@​koic)
  • #12275: Fix a false positive for Style/RedundantDoubleSplatHashBraces when using double splat within block argument containing a hash literal in an array literal. (@​koic)
  • #12284: Fix false positives for Style/SingleArgumentDig when using some anonymous argument syntax. (@​koic)
  • #12301: Make Style/RedundantFilterChain aware of safe navigation operator. (@​koic)

RuboCop 1.57.1

Bug fixes

  • #12271: Fix a false positive for Lint/RedundantSafeNavigation when using snake case constant receiver. (@​koic)
  • #12265: Fix an error for Layout/MultilineMethodCallIndentation when usingarithmetic operation with block inside a grouped expression. (@​koic)
  • #12177: Fix an incorrect autocorrect for Style/RedundantException. (@​ydah)
  • #12261: Fix an infinite loop for Layout/MultilineMethodCallIndentation when multiline method chain with a block argument and method chain. (@​ydah)
  • #12263: Fix false positives for Style/RedundantDoubleSplatHashBraces when method call for no hash braced double splat receiver. (@​koic)
  • #12262: Fix an incorrect autocorrect for Style/RedundantDoubleSplatHashBraces when using double splat hash braces with merge method call twice. (@​koic)

RuboCop 1.57

New features

  • #12227: Add new Style/SingleLineDoEndBlock cop. (@​koic)
  • #12246: Make Lint/RedundantSafeNavigation aware of constant receiver. (@​koic)
  • #12257: Make Style/RedundantDoubleSplatHashBraces aware of merge methods. (@​koic)

Bug fixes

  • #12244: Fix a false negative for Lint/Debugger when using debugger method inside block. (@​koic)
  • #12231: Fix a false negative for Metrics/ModuleLength when defining a singleton class in a module. (@​koic)
  • #12249: Fix a false positive Style/IdenticalConditionalBranches when if..else with identical leading lines and assign to condition value. (@​koic)
  • #12253: Fix Lint/LiteralInInterpolation to accept an empty string literal interpolated in words literal. ([@​knu][])
  • #12198: Fix an error for flip-flop with beginless or endless ranges. (@​koic)
  • #12259: Fix an error for Lint/MixedCaseRange when using nested character class in regexp. (@​koic)

... (truncated)

Changelog

Sourced from rubocop's changelog.

1.57.2 (2023-10-26)

Bug fixes

  • #12274: Fix a false positive for Lint/Void when each's receiver is an object of Enumerator to which filter has been applied. ([@​koic][])
  • #12291: Fix a false positive for Metrics/ClassLength when a class with a singleton class definition. ([@​koic][])
  • #12293: Fix a false positive for Style/RedundantDoubleSplatHashBraces when using double splat hash braces with merge and method chain. ([@​koic][])
  • #12298: Fix a false positive for Style/RedundantParentheses when using a parenthesized hash literal as the first argument in a method call without parentheses. ([@​koic][])
  • #12283: Fix an error for Style/SingleLineDoEndBlock when using single line do...end with no body. ([@​koic][])
  • #12312: Fix an incorrect autocorrect for Style/HashSyntax when braced hash key and value are the same and it is used in if...else. ([@​koic][])
  • #12307: Fix an infinite loop error for Layout/EndAlignment when EnforcedStyleAlignWith: variable and using a conditional statement in a method argument on the same line and end with method call is not aligned. ([@​koic][])
  • #11652: Make --auto-gen-config generate inherit_from correctly inside ERB if. ([@​jonas054][])
  • #12310: Drop base64 gem from runtime dependency. ([@​koic][])
  • #12300: Fix an error for Style/IdenticalConditionalBranches when if...else with identical leading lines and using index assign. ([@​koic][])
  • #12286: Fix false positives for Style/RedundantDoubleSplatHashBraces when using double splat with a hash literal enclosed in parenthesized ternary operator. ([@​koic][])
  • #12279: Fix false positives for Lint/EmptyConditionalBody when missing 2nd if body with a comment. ([@​koic][])
  • #12275: Fix a false positive for Style/RedundantDoubleSplatHashBraces when using double splat within block argument containing a hash literal in an array literal. ([@​koic][])
  • #12284: Fix false positives for Style/SingleArgumentDig when using some anonymous argument syntax. ([@​koic][])
  • #12301: Make Style/RedundantFilterChain aware of safe navigation operator. ([@​koic][])

1.57.1 (2023-10-13)

Bug fixes

  • #12271: Fix a false positive for Lint/RedundantSafeNavigation when using snake case constant receiver. ([@​koic][])
  • #12265: Fix an error for Layout/MultilineMethodCallIndentation when usingarithmetic operation with block inside a grouped expression. ([@​koic][])
  • #12177: Fix an incorrect autocorrect for Style/RedundantException. ([@​ydah][])
  • #12261: Fix an infinite loop for Layout/MultilineMethodCallIndentation when multiline method chain with a block argument and method chain. ([@​ydah][])
  • #12263: Fix false positives for Style/RedundantDoubleSplatHashBraces when method call for no hash braced double splat receiver. ([@​koic][])
  • #12262: Fix an incorrect autocorrect for Style/RedundantDoubleSplatHashBraces when using double splat hash braces with merge method call twice. ([@​koic][])

1.57.0 (2023-10-11)

New features

  • #12227: Add new Style/SingleLineDoEndBlock cop. ([@​koic][])
  • #12246: Make Lint/RedundantSafeNavigation aware of constant receiver. ([@​koic][])
  • #12257: Make Style/RedundantDoubleSplatHashBraces aware of merge methods. ([@​koic][])

Bug fixes

  • #12244: Fix a false negative for Lint/Debugger when using debugger method inside block. ([@​koic][])
  • #12231: Fix a false negative for Metrics/ModuleLength when defining a singleton class in a module. ([@​koic][])
  • #12249: Fix a false positive Style/IdenticalConditionalBranches when if..else with identical leading lines and assign to condition value. ([@​koic][])
  • #12253: Fix Lint/LiteralInInterpolation to accept an empty string literal interpolated in words literal. ([@​knu][])
  • #12198: Fix an error for flip-flop with beginless or endless ranges. ([@​koic][])
  • #12259: Fix an error for Lint/MixedCaseRange when using nested character class in regexp. ([@​koic][])
  • #12237: Fix an error for Style/NestedTernaryOperator when a ternary operator has a nested ternary operator within an if. ([@​koic][])
  • #12228: Fix false negatives for Style/MultilineBlockChain when using multiline block chain with safe navigation operator. ([@​koic][])
  • #12247: Fix false negatives for Style/RedundantParentheses when using logical or comparison expressions with redundant parentheses. ([@​koic][])

... (truncated)

Commits

Updates rubocop-minitest from 0.31.1 to 0.33.0

Release notes

Sourced from rubocop-minitest's releases.

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)

Changes

  • #265: Make Minitest/RefuteEqual aware of refute(expected == actual). (@​koic)

RuboCop Minitest 0.32.2

Bug fixes

  • #263: Fix an error for Minitest/AssertOperator and Minitest/RefuteOperator when using unary operation argument. (@​koic)

Changes

  • #264: Make Minitest/AssertOperator and Minitest/RefuteOperator allow index access with []. (@​flavorjones)

RuboCop Minitest 0.32.1

Bug fixes

  • #261: Fix an error for Minitest/AssertOperator and Minitest/RefuteOperator when using variable argument. (@​koic)

RuboCop Minitest 0.32.0

New features

  • #255: Add new Minitest/AssertOperator and Minitest/RefuteOperator cops. (@​koic)

Bug fixes

  • #259: Fix autocorrection for Minitest/LiteralAsActualArgument, Minitest/AssertPathExists, and Minitest/RefutePathExists cops to preserve the presence or absence of argument parentheses. (@​koic)
Changelog

Sourced from rubocop-minitest's changelog.

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

0.32.2 (2023-09-27)

Bug fixes

  • #263: Fix an error for Minitest/AssertOperator and Minitest/RefuteOperator when using unary operation argument. ([@​koic][])

Changes

  • #264: Make Minitest/AssertOperator and Minitest/RefuteOperator allow index access with []. ([@​flavorjones][])

0.32.1 (2023-09-24)

Bug fixes

  • #261: Fix an error for Minitest/AssertOperator and Minitest/RefuteOperator when using variable argument. ([@​koic][])

0.32.0 (2023-09-23)

New features

  • #255: Add new Minitest/AssertOperator and Minitest/RefuteOperator cops. ([@​koic][])

Bug fixes

  • #259: Fix autocorrection for Minitest/LiteralAsActualArgument, Minitest/AssertPathExists, and Minitest/RefutePathExists cops to preserve the presence or absence of argument parentheses. ([@​koic][])
Commits
  • ed4e847 Cut 0.33.0
  • dc49783 Update Changelog
  • 5d7a349 Merge pull request #269 from koic/make_minitest_refute_match_aware_of_refute_...
  • f55259b Make Minitest/RefuteMatch aware of refute_operator
  • f2396a6 Merge pull request #268 from koic/make_minitest_assert_match_aware_of_assert_...
  • d0b42c6 Merge pull request #267 from koic/make_minitest_refute_equal_aware_of_refute_...
  • aba8cff Merge pull request #266 from koic/make_minitest_assert_equal_aware_of_assert_...
  • b94890b Make Minitest/AssertMatch aware of assert_operator
  • 060e7a0 Make Minitest/AssertEqual aware of assert_operator
  • d9dcb8c Make Minitest/RefuteEqual aware of assert_operator and refute_operator
  • Additional commits viewable in compare view

Updates rubocop-sorbet from 0.7.3 to 0.7.5

Release notes

Sourced from rubocop-sorbet's releases.

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
  • 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
  • 5499b1c Merge pull request #185 from Shopify/optimize-empty-line-after-sig
  • 4f74f27 Optimize EmptyLineAfterSig
  • fd1e1e0 Add edge case specs
  • e74f994 Migrate from deprecated Cop to Base parent class
  • Additional commits viewable in compare view

Updates sorbet-static-and-runtime from 0.5.11011 to 0.5.11116

Release notes

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

sorbet 0.5.11115.20231103094515-6c3d57cd4

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11114.20231102164225-a037da976

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11113.20231102150922-135689c68

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11112.20231102145604-31d3dd74a

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11111.20231102132246-b084e47d2

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11110.20231102133410-024c489a7

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11109.20231031153836-083179e6e

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11108.20231030164906-147acb40a

... (truncated)

Commits

Updates tapioca from 0.11.8 to 0.11.10

Release notes

Sourced from tapioca's releases.

v0.11.10

What's Changed

✨ Enhancements

🐛 Bug Fixes

🛠 Other Changes

New Contributors

Full Changelog: Shopify/tapioca@v0.11.9...v0.11.10

v0.11.9

What's Changed

🚧 Breaking Changes

✨ Enhancements

🐛 Bug Fixes

🛠 Other Changes

... (truncated)

Commits
  • 1d509df Bump version to v0.11.10
  • 34fc676 Merge pull request #1702 from Shopify/vs/fix_engine_loading_rails_72
  • 700f431 Fix typo
  • 7b8a37d Merge pull request #1703 from Shopify/dependabot/bundler/graphql-2.1.5
  • e819bbe Update GraphQL RBI
  • a15c66f Bump graphql from 2.1.3 to 2.1.5
  • dd54925 Fix engine loading for Rails 7.2
  • d2a27bd Merge pull request #1694 from pedrol3001/main
  • 20d77ba Merge pull request #1695 from Shopify/dependabot/bundler/minor-and-patch-c052...
  • 298255d Remove unneeded branch
  • Additional commits viewable in compare view

Updates rdoc from 6.5.0 to 6.6.0

Release notes

Sourced from rdoc's releases.

v6.6.0

What's Changed

New Contributors

... (truncated)

Commits
  • 9c14229 Bump up 6.6.0
  • 42cdad1 test/rdoc/test_rdoc_generator_json_index.rb: pend in test_generate in ppc64le.
  • c9ce452 Bump ruby/setup-ruby from 1.157.0 to 1.159.0
  • 91d40ce test/rdoc/test_rdoc_generator_json_index.rb: Use assert_equal instead of assert.
  • 31e9206 Bump ruby/setup-ruby from 1.156.0 to 1.157.0
  • b59ca2f Delay DidYouMean until NotFoundError#message is called
  • d0d4f46 Bump ruby/setup-ruby from 1.155.0 to 1.156.0
  • c908918 Bump ruby/setup-ruby from 1.154.0 to 1.155.0
  • 9e75bf6 Bump ruby/setup-ruby from 1.153.0 to 1.154.0
  • cac1709 Bump ruby/setup-ruby from 1.152.0 to 1.153.0
  • Additional commits viewable in compare view

Updates psych from 5.1.0 to 5.1.1.1

Release notes

Sourced from psych's releases.

v5.1.1.1

v5.1.1

What's Changed

Full Changelog: ruby/psych@v5.1.0...v5.1.1

Commits
  • 51cc86f Bump up v5.1.1.1
  • f306512 Bump up v5.1.1
  • cc5daad Merge pull request #653 from headius/remove_ineffective_snakeyaml_settings
  • 307c368 Remove SnakeYAML settings that don't work
  • e8188ce Merge pull request #650 from headius/jruby_improvements
  • 323530a Whitespace style changes
  • 1330f22 Use a respond_to site for path check
  • 1c7dd96 Move some bare strings into constants

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

| Package | From | To |
| --- | --- | --- |
| [rake](https://github.com/ruby/rake) | `13.0.6` | `13.1.0` |
| [rubocop](https://github.com/rubocop/rubocop) | `1.56.2` | `1.57.2` |
| [rubocop-minitest](https://github.com/rubocop/rubocop-minitest) | `0.31.1` | `0.33.0` |
| [rubocop-sorbet](https://github.com/shopify/rubocop-sorbet) | `0.7.3` | `0.7.5` |
| [sorbet-static-and-runtime](https://github.com/sorbet/sorbet) | `0.5.11011` | `0.5.11116` |
| [tapioca](https://github.com/Shopify/tapioca) | `0.11.8` | `0.11.10` |
| [rdoc](https://github.com/ruby/rdoc) | `6.5.0` | `6.6.0` |
| [psych](https://github.com/ruby/psych) | `5.1.0` | `5.1.1.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.57.2
- [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.57.2)

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

Updates `rubocop-sorbet` from 0.7.3 to 0.7.5
- [Release notes](https://github.com/shopify/rubocop-sorbet/releases)
- [Commits](Shopify/rubocop-sorbet@v0.7.3...v0.7.5)

Updates `sorbet-static-and-runtime` from 0.5.11011 to 0.5.11116
- [Release notes](https://github.com/sorbet/sorbet/releases)
- [Commits](https://github.com/sorbet/sorbet/commits)

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

Updates `rdoc` from 6.5.0 to 6.6.0
- [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.0)

Updates `psych` from 5.1.0 to 5.1.1.1
- [Release notes](https://github.com/ruby/psych/releases)
- [Commits](ruby/psych@v5.1.0...v5.1.1.1)

---
updated-dependencies:
- 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 Nov 13, 2023

Superseded by #23.

@dependabot dependabot bot closed this Nov 13, 2023
@dependabot dependabot bot deleted the dependabot/bundler/minor-and-patch-493acf74c1 branch November 13, 2023 12:49
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