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

Gemfile.lock: Bump the minor-patch group across 1 directory with 16 updates #393

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 31, 2025

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

Package From To
puma 6.5.0 6.6.0
sorbet-runtime 0.5.11742 0.5.11796
rubocop 1.69.2 1.71.1
tapioca 0.16.6 0.16.8
logger 1.6.4 1.6.5
rack 3.1.8 3.1.9
tilt 2.5.0 2.6.0

Updates puma from 6.5.0 to 6.6.0

Release notes

Sourced from puma's releases.

6.6.0 - Return to Forever

image

Some stuff for JRuby users (SIGUSR2 trap), reforkers (see below), and a few debug/logging/observability related goodies.

  • Features

    • Option to turn off SIGUSR2 trapping (#3570, #3567)
    • Shorten ThreadPool trimmer and reaper thread names (#3383)
    • Add after_refork hook (#3386)
    • Add busy threads stat (#3517)
    • Add a debug log before running each type of hook (#3375)
    • Allow alternative schemes in Binder (#3348, #3302)
    • Avoid spawning Threadpool#trim thread if pool size is fixed (#3384)
  • Bugfixes

    • Change HttpParserError to be subclass of StandardError (#3590, #3552)
    • added test cases
    • fix update phased restart symlink folder
  • Performance

    • Only ping worker 0 during phased restart if using fork worker (#3568)
  • Refactor

    • Fix multi-delimiter split to get status app token (#3505)
    • Change ping to use const (#3595)
    • Fixup use of Puma::Const::PipeRequest constants (#3565)
    • Update DSL hook processing logic to be consistent (#3376)
Changelog

Sourced from puma's changelog.

6.6.0 / 2025-01-29

  • Features

    • Option to turn off SIGUSR2 trapping (#3570, #3567)
    • Shorten ThreadPool trimmer and reaper thread names (#3383)
    • Add after_refork hook (#3386)
    • Add busy threads stat (#3517)
    • Add a debug log before running each type of hook (#3375)
    • Allow alternative schemes in Binder (#3348, #3302)
    • Avoid spawning Threadpool#trim thread if pool size is fixed (#3384)
  • Bugfixes

    • Change HttpParserError to be subclass of StandardError (#3590, #3552)
    • added test cases
    • fix update phased restart symlink folder
  • Performance

    • Only ping worker 0 during phased restart if using fork worker (#3568)
  • Refactor

    • Fix multi-delimiter split to get status app token (#3505)
    • Change ping to use const (#3595)
    • Fixup use of Puma::Const::PipeRequest constants (#3565)
    • Update DSL hook processing logic to be consistent (#3376)
Commits

Updates sorbet-runtime from 0.5.11742 to 0.5.11796

Release notes

Sourced from sorbet-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 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.11742 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 tapioca from 0.16.6 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

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

Updates language_server-protocol from 3.17.0.3 to 3.17.0.4

Changelog

Sourced from language_server-protocol's changelog.

3.17.0.4

  • Add #close to Reader and Writer (#112)
Commits

Updates logger from 1.6.4 to 1.6.5

Release notes

Sourced from logger's releases.

v1.6.5

What's Changed

New Contributors

Full Changelog: ruby/logger@v1.6.4...v1.6.5

Commits
  • ef3a128 Bump up v1.6.5
  • e9af529 Merge pull request #114 from andrykonchin/ak/workaround-missing-SHARE_DELETE-...
  • 663a27f Merge pull request #113 from ruby/support-bundled-gems
  • 9f0afd8 Add workaround for TruffleRuby and do not use File::SHARE_DELETE
  • fba3ee3 Dir.glob is not working with bundled gems installation
  • b9daad7 Added lib path to in assert_in_out_err
  • b2c481c Merge pull request #111 from mark-young-atg/provide_changelog_link_on_rubygems
  • c6c64b0 Provide a 'Changelog' link on rubygems.org/gems/logger
  • 4666118 Merge pull request #109 from ruby/dependabot/github_actions/rubygems/release-...
  • b785aaa Bump rubygems/release-gem from 1.1.0 to 1.1.1
  • See full diff in compare view

Updates parser from 3.3.6.0 to 3.3.7.0

Changelog

Sourced from parser's changelog.

v3.3.7.0 (2025-01-16)

API modifications:

  • Bump maintenance branches to 3.3.7 (#1061) (Koichi ITO)
  • bump 3.4 branch, remove 3.0 from CI (EOL) (#1057) (Ilya Bylich)
  • assert that version-specific checks actually run against at least one version (#1050) (Earlopain)

Features implemented:

  • ruby34.y: reject return in singleton class (#1048) (Earlopain)

Bugs fixed:

  • Fix ruby-parse with a folder ending in .rb (#1047) (Earlopain)
Commits

Updates rack from 3.1.8 to 3.1.9

Changelog

Sourced from rack's changelog.

[3.1.9] - 2025-01-31

Fixed

Commits

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-ast from 1.37.0 to 1.38.0

Changelog

Sourced from rubocop-ast's changelog.

1.38.0 (2025-01-27)

New features

  • #346: Add Node#loc? to determine if a node has a given location. ([@​dvandersluis][])
  • #356: Added :any_block as an alias for :block and :numblock, use it with Node#any_block_type?. Also available in node patterns: {block numblock} can become any_block. ([@​earlopain][])

Bug fixes

Changes

  • #357: Support node groups in Node#each_descendant and similar traversal methods. ([@​earlopain][])
Commits
  • 6650bc7 Cut 1.38.0
  • 74a456c Update Changelog
  • 6f7108f Update to use Node#loc?
  • 85bfe84 Add Node#loc? to determine if a node has a given location
  • 5763d46 Add Node#any_block_type? to determine if a node is either a block or numblock
  • 6469d88 Disable InternalAffairs/LocationExpression cop
  • b8d385a Test main specs against prism as well
  • a9f7be9 [Fix #323] Fix node captures inside of ?, +, and * repetition
  • 757c3cc Support node groups in Node#each_descendant and similar traversal methods
  • 02b8d0f Remove windows-specific CI step
  • Additional commits viewable in compare view

Updates sorbet from 0.5.11742 to 0.5.11796

Release notes

Sourced from sorbet'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 sorbet-static from 0.5.11742 to 0.5.11796

Release notes

Sourced from sorbet-static'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 FixesDescription has been truncated

…pdates

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

| Package | From | To |
| --- | --- | --- |
| [puma](https://github.com/puma/puma) | `6.5.0` | `6.6.0` |
| [sorbet-runtime](https://github.com/sorbet/sorbet) | `0.5.11742` | `0.5.11796` |
| [rubocop](https://github.com/rubocop/rubocop) | `1.69.2` | `1.71.1` |
| [tapioca](https://github.com/Shopify/tapioca) | `0.16.6` | `0.16.8` |
| [logger](https://github.com/ruby/logger) | `1.6.4` | `1.6.5` |
| [rack](https://github.com/rack/rack) | `3.1.8` | `3.1.9` |
| [tilt](https://github.com/jeremyevans/tilt) | `2.5.0` | `2.6.0` |



Updates `puma` from 6.5.0 to 6.6.0
- [Release notes](https://github.com/puma/puma/releases)
- [Changelog](https://github.com/puma/puma/blob/master/History.md)
- [Commits](puma/puma@v6.5.0...v6.6.0)

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

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.11742 to 0.5.11796
- [Release notes](https://github.com/sorbet/sorbet/releases)
- [Commits](https://github.com/sorbet/sorbet/commits)

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

Updates `language_server-protocol` from 3.17.0.3 to 3.17.0.4
- [Changelog](https://github.com/mtsmfm/language_server-protocol-ruby/blob/main/CHANGELOG.md)
- [Commits](mtsmfm/language_server-protocol-ruby@v3.17.0.3...v3.17.0.4)

Updates `logger` from 1.6.4 to 1.6.5
- [Release notes](https://github.com/ruby/logger/releases)
- [Commits](ruby/logger@v1.6.4...v1.6.5)

Updates `parser` from 3.3.6.0 to 3.3.7.0
- [Changelog](https://github.com/whitequark/parser/blob/master/CHANGELOG.md)
- [Commits](whitequark/parser@v3.3.6.0...v3.3.7.0)

Updates `rack` from 3.1.8 to 3.1.9
- [Release notes](https://github.com/rack/rack/releases)
- [Changelog](https://github.com/rack/rack/blob/main/CHANGELOG.md)
- [Commits](rack/rack@v3.1.8...v3.1.9)

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-ast` from 1.37.0 to 1.38.0
- [Release notes](https://github.com/rubocop/rubocop-ast/releases)
- [Changelog](https://github.com/rubocop/rubocop-ast/blob/master/CHANGELOG.md)
- [Commits](rubocop/rubocop-ast@v1.37.0...v1.38.0)

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

Updates `sorbet-static` from 0.5.11742 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 `tilt` from 2.5.0 to 2.6.0
- [Changelog](https://github.com/jeremyevans/tilt/blob/master/CHANGELOG.md)
- [Commits](jeremyevans/tilt@v2.5.0...v2.6.0)

Updates `unicode-display_width` from 3.1.3 to 3.1.4
- [Changelog](https://github.com/janlelis/unicode-display_width/blob/main/CHANGELOG.md)
- [Commits](janlelis/unicode-display_width@v3.1.3...v3.1.4)

---
updated-dependencies:
- dependency-name: puma
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-patch
- dependency-name: sorbet-runtime
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-patch
- dependency-name: rubocop
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-patch
- dependency-name: sorbet-static-and-runtime
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-patch
- dependency-name: tapioca
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-patch
- dependency-name: language_server-protocol
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor-patch
- dependency-name: logger
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor-patch
- dependency-name: parser
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor-patch
- dependency-name: rack
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor-patch
- dependency-name: rbi
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor-patch
- dependency-name: rubocop-ast
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor-patch
- dependency-name: sorbet
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor-patch
- dependency-name: sorbet-static
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor-patch
- dependency-name: spoom
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor-patch
- dependency-name: tilt
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor-patch
- dependency-name: unicode-display_width
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file ruby Pull requests that update Ruby code labels Jan 31, 2025
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 ruby Pull requests that update Ruby code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants