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 in /gem with 5 updates #303

Merged

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 1, 2025

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

Package From To
rbi 0.2.2 0.2.4
rubocop 1.69.2 1.71.1
sorbet-static-and-runtime 0.5.11766 0.5.11796
spoom 1.5.0 1.5.3
tapioca 0.16.5 0.16.8

Updates rbi from 0.2.2 to 0.2.4

Release notes

Sourced from rbi's releases.

v0.2.4

What's Changed

🐛 Bug Fixes

Full Changelog: Shopify/rbi@v0.2.3...v0.2.4

v0.2.3

What's Changed

🐛 Bug Fixes

🛠 Other Changes

Full Changelog: Shopify/rbi@v0.2.2...v0.2.3

Commits
  • ab7bd60 Bump version to v0.2.4
  • b16c86e Merge pull request #402 from Shopify/at-fix-parse
  • 0038e4c Do not raise unnecessarily during parsing
  • aca32f2 Merge pull request #401 from Shopify/dependabot/bundler/minor-and-patch-68795...
  • 1d90dfc Bump the minor-and-patch group across 1 directory with 3 updates
  • 993bed4 Merge pull request #389 from Shopify/dependabot/bundler/minor-and-patch-55737...
  • 9ec5a8a $ bin/style --config .rubocop.yml -a
  • 554d9a8 Bump version to v0.2.3
  • f635d47 Merge pull request #399 from Shopify/at-rbs-attr-writer
  • 5f50fe0 Fix RBS translation of attr_writer signatures
  • Additional commits viewable in compare view

Updates rubocop from 1.69.2 to 1.71.1

Release notes

Sourced from rubocop's releases.

RuboCop 1.71.1

Bug fixes

  • #10081: Add the missing include RuboCop::RSpec::ExpectOffense in rubocop/rspec/support.rb. (@​d4rky-pl)
  • #13765: Fix a false negative for Lint/AmbiguousBlockAssociation with numblocks. (@​earlopain)
  • #13759: Fix a false negative for Lint/ConstantDefinitionInBlock with numblocks. (@​earlopain)
  • #13741: Register an offense for Naming/BlockForwarding and Style/ArgumentsForwarding with Ruby >= 3.4 when the block argument is referenced inside a block. This was previously disabled because of a bug in Ruby 3.3.0. (@​earlopain)
  • #13777: Fix a false negative for Layout/EmptyLineBetweenDefs with DefLikeMacros and numblocks. (@​earlopain)
  • #13769: Fix a false negative for Style/RedundantParentheses with numblocks. (@​earlopain)
  • #13780: Fix a false positive Style/AccessModifierDeclarations when using access modifier in a numblock. (@​earlopain)
  • #13775: Fix a false positive for Lint/AssignmentInCondition when assigning in numblocks. (@​earlopain)
  • #13773: Fix false positives for Layout/RedundantLineBreak when using numbered block parameter. (@​koic)
  • #13761: Fix a false positive for Style/SuperArguments when calling super in a numblock. (@​earlopain)
  • #13768: Fix a false positive for Lint/UnreachableCode with instance_eval numblock. (@​earlopain)
  • #13750: Fix false positives for Style/RedundantSelfAssignment when assigning to attribute of self. (@​koic)
  • #13739: Fix false positive for Style/HashExcept and Style/HashSlice when checking for inclusion with a range. (@​dvandersluis)
  • #13751: Fix false positive in Layout/ExtraSpacing with ForceEqualSignAlignment: true for endless methods. (@​dvandersluis)
  • #13767: Fix Style/IdenticalConditionalBranches autocorrect when condition is inside assignment. (@​dvandersluis)
  • #13764: Fix a false negative for Layout/SingleLineBlockChain with numblocks. (@​earlopain)
  • #13771: Fix wrong autocorrect for Style/SoleNestedConditional when using numblocks. (@​earlopain)

RuboCop 1.71

New features

Bug fixes

  • #13684: Fix a false positive for Style/FrozenStringLiteralComment when using the frozen string literal magic comment in Active Admin's arb files. (@​koic)
  • #13372: Add rubocop_cache to the path given by --cache-root when pruning cache. ([@​capncavedan][])
  • #13257: Fix department disable/enable comments enabling the cop for the whole file even if that file is excluded by the cop. (@​earlopain)
  • #13704: Fix false positives for Lint/OutOfRangeRegexpRef when matching with match using safe navigation. (@​koic)
  • #13720: Fix false positives for Style/BlockDelimiters when using brace blocks as conditions under EnforcedStyle: semantic. (@​koic)
  • #13688: Fix false negative on Style/RedundantLineContinuation when the continuation is preceded by an interpolated string. (@​dvandersluis)
  • #13677: Fix false negative on Style/RedundantLineContinuation when the continuation is followed by a percent array. (@​dvandersluis)
  • #13692: Fix false positive in Style/RedundantLineContinuation when the ruby code ends with a commented continuation. (@​dvandersluis)
  • #13675: Fix invalid autocorrect for Style/ArrayFirstLast when calling .[] or &.[] with 0 or -1. (@​dvandersluis)
  • #13685: Fix syntax error introduced by Lint/SafeNavigationChain when adding safe navigation to an operator call inside a hash. (@​dvandersluis)
  • #13725: Fix an incorrect autocorrect for Style/IfUnlessModifier when using omitted hash values in an assignment. ([@​elliottt][])
  • #13667: Maintain precedence in autocorrect for Style/SoleNestedConditional. ([@​tejasbubane][])
  • #13679: Fix false positive for Style/RedundantLineContinuation when calling methods with fully qualified constants. (@​earlopain)
  • #13728: Fix a RuboCop error on provided glob pattern which matches directory. ([@​viralpraxis][])
  • #13693: Fix Style/ConditionalAssignment cop error on unless without else and assign_inside_condition enforced style. ([@​viralpraxis][])
  • #13669: Fix Style/FrozenStringLiteralComment cop error on unnormalized magic comment and never enforced style. ([@​viralpraxis][])

... (truncated)

Changelog

Sourced from rubocop's changelog.

1.71.1 (2025-01-31)

Bug fixes

  • #10081: Add the missing include RuboCop::RSpec::ExpectOffense in rubocop/rspec/support.rb. ([@​d4rky-pl][])
  • #13765: Fix a false negative for Lint/AmbiguousBlockAssociation with numblocks. ([@​earlopain][])
  • #13759: Fix a false negative for Lint/ConstantDefinitionInBlock with numblocks. ([@​earlopain][])
  • #13741: Register an offense for Naming/BlockForwarding and Style/ArgumentsForwarding with Ruby >= 3.4 when the block argument is referenced inside a block. This was previously disabled because of a bug in Ruby 3.3.0. ([@​earlopain][])
  • #13777: Fix a false negative for Layout/EmptyLineBetweenDefs with DefLikeMacros and numblocks. ([@​earlopain][])
  • #13769: Fix a false negative for Style/RedundantParentheses with numblocks. ([@​earlopain][])
  • #13780: Fix a false positive Style/AccessModifierDeclarations when using access modifier in a numblock. ([@​earlopain][])
  • #13775: Fix a false positive for Lint/AssignmentInCondition when assigning in numblocks. ([@​earlopain][])
  • #13773: Fix false positives for Layout/RedundantLineBreak when using numbered block parameter. ([@​koic][])
  • #13761: Fix a false positive for Style/SuperArguments when calling super in a numblock. ([@​earlopain][])
  • #13768: Fix a false positive for Lint/UnreachableCode with instance_eval numblock. ([@​earlopain][])
  • #13750: Fix false positives for Style/RedundantSelfAssignment when assigning to attribute of self. ([@​koic][])
  • #13739: Fix false positive for Style/HashExcept and Style/HashSlice when checking for inclusion with a range. ([@​dvandersluis][])
  • #13751: Fix false positive in Layout/ExtraSpacing with ForceEqualSignAlignment: true for endless methods. ([@​dvandersluis][])
  • #13767: Fix Style/IdenticalConditionalBranches autocorrect when condition is inside assignment. ([@​dvandersluis][])
  • #13764: Fix a false negative for Layout/SingleLineBlockChain with numblocks. ([@​earlopain][])
  • #13771: Fix wrong autocorrect for Style/SoleNestedConditional when using numblocks. ([@​earlopain][])

1.71.0 (2025-01-22)

New features

Bug fixes

  • #13684: Fix a false positive for Style/FrozenStringLiteralComment when using the frozen string literal magic comment in Active Admin's arb files. ([@​koic][])
  • #13372: Add rubocop_cache to the path given by --cache-root when pruning cache. ([@​capncavedan][])
  • #13257: Fix department disable/enable comments enabling the cop for the whole file even if that file is excluded by the cop. ([@​earlopain][])
  • #13704: Fix false positives for Lint/OutOfRangeRegexpRef when matching with match using safe navigation. ([@​koic][])
  • #13720: Fix false positives for Style/BlockDelimiters when using brace blocks as conditions under EnforcedStyle: semantic. ([@​koic][])
  • #13688: Fix false negative on Style/RedundantLineContinuation when the continuation is preceded by an interpolated string. ([@​dvandersluis][])
  • #13677: Fix false negative on Style/RedundantLineContinuation when the continuation is followed by a percent array. ([@​dvandersluis][])
  • #13692: Fix false positive in Style/RedundantLineContinuation when the ruby code ends with a commented continuation. ([@​dvandersluis][])
  • #13675: Fix invalid autocorrect for Style/ArrayFirstLast when calling .[] or &.[] with 0 or -1. ([@​dvandersluis][])
  • #13685: Fix syntax error introduced by Lint/SafeNavigationChain when adding safe navigation to an operator call inside a hash. ([@​dvandersluis][])
  • #13725: Fix an incorrect autocorrect for Style/IfUnlessModifier when using omitted hash values in an assignment. ([@​elliottt][])
  • #13667: Maintain precedence in autocorrect for Style/SoleNestedConditional. ([@​tejasbubane][])
  • #13679: Fix false positive for Style/RedundantLineContinuation when calling methods with fully qualified constants. ([@​earlopain][])
  • #13728: Fix a RuboCop error on provided glob pattern which matches directory. ([@​viralpraxis][])
  • #13693: Fix Style/ConditionalAssignment cop error on unless without else and assign_inside_condition enforced style. ([@​viralpraxis][])
  • #13669: Fix Style/FrozenStringLiteralComment cop error on unnormalized magic comment and never enforced style. ([@​viralpraxis][])
  • #13696: Update Metrics/CollectionLiteralLength to only register for [] when called on Set. ([@​dvandersluis][])

Changes

... (truncated)

Commits
  • 2b94512 Cut 1.71.1
  • 6afa078 Update Changelog
  • 5160359 [Fix #13750] Fix false positives for Style/RedundantSelfAssignment
  • 3dc1694 [Fix #13751] Fix false positive in Layout/ExtraSpacing with `ForceEqualSign...
  • cce60da Merge pull request #13780 from Earlopain/access-mod-numblock
  • 2a4ee1a Fix a false positive Style/AccessModifierDeclarations when using access mod...
  • b275d5a Fix InternalAffairs/NodeTypeMultiplePredicates offenses
  • 750fc1b Add InternalAffairs/NodeTypeMultiplePredicates to look for and or or co...
  • bb4b87d Merge pull request #13778 from dvandersluis/remove-host-environment-simulatio...
  • b1a17c9 Remove HostEnvironmentSimulatorHelper
  • Additional commits viewable in compare view

Updates sorbet-static-and-runtime from 0.5.11766 to 0.5.11796

Release notes

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

sorbet 0.5.11795.20250130162659-824bb0c88

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11794.20250130132621-b8af6961e

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11793.20250130131941-39aa91448

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11792.20250130113010-67126b56d

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11791.20250130075500-a95ebaeb8

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11790.20250130064544-7ff0a96a2

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11789.20250129152533-228303c51

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11788.20250129131612-e03e9376e

... (truncated)

Commits

Updates spoom from 1.5.0 to 1.5.3

Release notes

Sourced from spoom's releases.

v1.5.3

What's Changed

🛠 Other Changes

Full Changelog: Shopify/spoom@v1.5.2...v1.5.3

v1.5.2

What's Changed

🐛 Bug Fixes

New Contributors

Full Changelog: Shopify/spoom@v1.5.1...v1.5.2

v1.5.1

What's Changed

✨ Enhancements

🐛 Bug Fixes

Full Changelog: Shopify/spoom@v1.5.0...v1.5.1

Commits
  • fc5f6be Bump version to v1.5.3
  • 3a374be Merge pull request #634 from Shopify/dependabot/bundler/minor-and-patch-271fc...
  • 73584bf Bump the minor-and-patch group with 2 updates
  • 06f9139 Merge pull request #633 from Shopify/ko/quote-config
  • e2518a0 Add coverage test that utilizes options parsing
  • dac0d85 Wrap options_string values in quotes
  • 7afab9d Merge pull request #632 from Shopify/KaanOzkan-patch-1
  • 0e09fdb Remove duplicate case statement
  • fbe1841 Bump version to v1.5.2
  • 8b8f31e Merge pull request #629 from rzane/add-rbi-dep
  • Additional commits viewable in compare view

Updates tapioca from 0.16.5 to 0.16.8

Release notes

Sourced from tapioca's releases.

v0.16.8

What's Changed

✨ Enhancements

🐛 Bug Fixes

Full Changelog: Shopify/tapioca@v0.16.7...v0.16.8

v0.16.7

What's Changed

🐛 Bug Fixes

New Contributors

Full Changelog: Shopify/tapioca@v0.16.6...v0.16.7

v0.16.6

What's Changed

🚧 Breaking Changes

✨ Enhancements

🐛 Bug Fixes

🛠 Other Changes

New Contributors

Full Changelog: Shopify/tapioca@v0.16.5...v0.16.6

Commits
  • 91ad272 Bump version to v0.16.8
  • d150a6c Merge pull request #2135 from alex-tan/support-postgres-enum
  • 85bf9f2 Load DSL compilers and extensions ahead of time in add-on mode (#2152)
  • 7527f5b Merge pull request #2153 from Shopify/uk-relation-size-method
  • 895fe10 Merge pull request #2151 from Shopify/dependabot/bundler/minor-and-patch-6400...
  • 451fd23 Fix signature of GroupChain#size method
  • b298065 Load DSL compilers and extensions ahead of time in add-on mode
  • 2eb35dc Bump RBI files
  • 4525be8 Bump the minor-and-patch group with 4 updates
  • d90ca33 Bump version to v0.16.7
  • 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 <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 in /gem with 5 updates:

| Package | From | To |
| --- | --- | --- |
| [rbi](https://github.com/Shopify/rbi) | `0.2.2` | `0.2.4` |
| [rubocop](https://github.com/rubocop/rubocop) | `1.69.2` | `1.71.1` |
| [sorbet-static-and-runtime](https://github.com/sorbet/sorbet) | `0.5.11766` | `0.5.11796` |
| [spoom](https://github.com/Shopify/spoom) | `1.5.0` | `1.5.3` |
| [tapioca](https://github.com/Shopify/tapioca) | `0.16.5` | `0.16.8` |


Updates `rbi` from 0.2.2 to 0.2.4
- [Release notes](https://github.com/Shopify/rbi/releases)
- [Commits](Shopify/rbi@v0.2.2...v0.2.4)

Updates `rubocop` from 1.69.2 to 1.71.1
- [Release notes](https://github.com/rubocop/rubocop/releases)
- [Changelog](https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md)
- [Commits](rubocop/rubocop@v1.69.2...v1.71.1)

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

Updates `spoom` from 1.5.0 to 1.5.3
- [Release notes](https://github.com/Shopify/spoom/releases)
- [Commits](Shopify/spoom@v1.5.0...v1.5.3)

Updates `tapioca` from 0.16.5 to 0.16.8
- [Release notes](https://github.com/Shopify/tapioca/releases)
- [Commits](Shopify/tapioca@v0.16.5...v0.16.8)

---
updated-dependencies:
- dependency-name: rbi
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: rubocop
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: sorbet-static-and-runtime
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: spoom
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: tapioca
  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 February 1, 2025 03:56
@github-actions github-actions bot enabled auto-merge February 1, 2025 03:56
@github-actions github-actions bot merged commit 7dcee95 into main Feb 1, 2025
5 checks passed
@github-actions github-actions bot deleted the dependabot/bundler/gem/minor-and-patch-17984af399 branch February 1, 2025 04:18
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