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 #296

Merged

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 1, 2024

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

Package From To
minitest 5.25.1 5.25.2
json-schema 5.0.1 5.1.0
rubocop 1.68.0 1.69.0
sorbet-static-and-runtime 0.5.11630 0.5.11670
tapioca 0.16.3 0.16.5

Updates minitest from 5.25.1 to 5.25.2

Changelog

Sourced from minitest's changelog.

=== 5.25.2 / 2024-11-21

  • 4 bug fixes:

    • Include class name in spec name. (thomasmarshall)
    • Fixed 'redefining object_id' warning from ruby 3.4. (mattbrictson)
    • Minitest top-level namespace no longer includes entire contents of README.rdoc. Too much!
    • Refactored spec's describe to more cleanly determine the superclass and name
Commits
  • d1b5451 prepped for release
  • 3d54995 + Include class name in spec name. (thomasmarshall)
  • b3cab87 - Refactored spec's describe to more cleanly determine the superclass and name
  • 3214429 - Fixed 'redefining object_id' warning from ruby 3.4. (mattbrictson)
  • e4417c5 Changed some reporter tests to use FakeTest instead of loading up Runnable w/...
  • 20dfa7b - Minitest top-level namespace no longer includes entire contents of README.r...
  • See full diff in compare view

Updates json-schema from 5.0.1 to 5.1.0

Changelog

Sourced from json-schema's changelog.

v5.1.0 (2024-11-20)

Full Changelog

Implemented enhancements:

Fixed bugs:

Merged pull requests:

  • voxpupuli-rubocop: Update 2.8.0->3.0.0 & rubocop: autofix #531 (bastelfreak)
Commits

Updates rubocop from 1.68.0 to 1.69.0

Release notes

Sourced from rubocop's releases.

RuboCop 1.69

New features

Bug fixes

  • #13455: Fix a false positive for Layout/EmptyLineAfterGuardClause when using a guard clause outside oneliner block. (@​koic)
  • #13412: Fix a false positive for Style/RedundantLineContinuation when there is a line continuation at the end of Ruby code followed by __END__ data. (@​koic)
  • #13476: Allow to write generics type of RBS::Inline annotation after subclass definition in Style/CommentedKeyword. ([@​dak2][])
  • #13441: Fix an incorrect autocorrect for Style/IfWithSemicolon when using return with value in if with a semicolon is used. (@​koic)
  • #13448: Fix an incorrect autocorrect for Style/IfWithSemicolon when the then body contains an arithmetic operator method call with an argument. (@​koic)
  • #13199: Make Style/RedundantCondition skip autocorrection when a branch has a comment. (@​koic)
  • #13411: Fix Style/BitwisePredicate when having regular method. ([@​d4be4st][])
  • #13432: Fix false positive for Lint/FloatComparison against nil. ([@​lovro-bikic][])
  • #13461: Fix false positives for Lint/InterpolationCheck when using invalid syntax in interpolation. (@​koic)
  • #13402: Fix a false positive for Lint/SafeNavigationConsistency when using unsafe navigation with both && and ||. (@​koic)
  • #13434: Fix a false positive for Naming/MemoizedInstanceVariableName for assignment methods`. ([@​earlopain][])
  • #13415: Fix false positives for Naming/MemoizedInstanceVariableName when using initialize_clone, initialize_copy, or initialize_dup. (@​koic)
  • #13421: Fix false positives for Style/SafeNavigation when using a method chain that exceeds the MaxChainLength value and includes safe navigation operator. (@​koic)
  • #13433: Fix autocorrection for Style/AccessModifierDeclarations for multiple inline symbols. ([@​dvandersluis][])
  • #13430: Fix EmptyLinesAroundMethodBody for methods with arguments spanning multiple lines. ([@​aduth][])
  • #13438: Fix incorrect correction in Lint/Void if an operator is called in a void context using a dot. ([@​dvandersluis][])
  • #13419: Fix Lint/DeprecatedOpenSSLConstant false positive when the argument is a safe navigation method call. ([@​dvandersluis][])
  • #13404: Fix Style/AccessModifierDeclarations to register (as positive or negative, depending on AllowModifiersOnSymbols value) access modifiers with multiple symbols. ([@​dvandersluis][])
  • #13436: Fix incorrect offense and autocorrect for Lint/RedundantSplatExpansion when percent literal array is used in a safe navigation method call. ([@​lovro-bikic][])
  • #13442: Fix an incorrect autocorrect for Style/NestedTernaryOperator when ternary operators are nested and the inner condition is parenthesized. (@​koic)
  • #13444: Fix an incorrect autocorrect for Style/OneLineConditional when the else branch of a ternary operator has multiple expressions. (@​koic)
  • #13483: Fix an incorrect autocorrect for Style/RedundantRegexpArgument when using escaped double quote character. (@​koic)
  • #13497: Fix infinite loop error for Style/IfWithSemicolon when using nested if/;/end in if body. (@​koic)
  • #13477: Update Layout/LeadingCommentSpace to accept multiline shebangs at the top of the file. ([@​dvandersluis][])
  • #13453: Update Style/AccessModifierDeclarations to handle attr_* methods with multiple parameters. ([@​dvandersluis][])
  • #12597: Update Style/SingleLineDoEndBlock to not register an offense if it will introduce a conflicting Layout/RedundantLineBreak offense. ([@​dvandersluis][])

Changes

... (truncated)

Changelog

Sourced from rubocop's changelog.

1.69.0 (2024-11-26)

New features

Bug fixes

  • #13455: Fix a false positive for Layout/EmptyLineAfterGuardClause when using a guard clause outside oneliner block. ([@​koic][])
  • #13412: Fix a false positive for Style/RedundantLineContinuation when there is a line continuation at the end of Ruby code followed by __END__ data. ([@​koic][])
  • #13476: Allow to write generics type of RBS::Inline annotation after subclass definition in Style/CommentedKeyword. ([@​dak2][])
  • #13441: Fix an incorrect autocorrect for Style/IfWithSemicolon when using return with value in if with a semicolon is used. ([@​koic][])
  • #13448: Fix an incorrect autocorrect for Style/IfWithSemicolon when the then body contains an arithmetic operator method call with an argument. ([@​koic][])
  • #13199: Make Style/RedundantCondition skip autocorrection when a branch has a comment. ([@​koic][])
  • #13411: Fix Style/BitwisePredicate when having regular method. ([@​d4be4st][])
  • #13432: Fix false positive for Lint/FloatComparison against nil. ([@​lovro-bikic][])
  • #13461: Fix false positives for Lint/InterpolationCheck when using invalid syntax in interpolation. ([@​koic][])
  • #13402: Fix a false positive for Lint/SafeNavigationConsistency when using unsafe navigation with both && and ||. ([@​koic][])
  • #13434: Fix a false positive for Naming/MemoizedInstanceVariableName for assignment methods`. ([@​earlopain][])
  • #13415: Fix false positives for Naming/MemoizedInstanceVariableName when using initialize_clone, initialize_copy, or initialize_dup. ([@​koic][])
  • #13421: Fix false positives for Style/SafeNavigation when using a method chain that exceeds the MaxChainLength value and includes safe navigation operator. ([@​koic][])
  • #13433: Fix autocorrection for Style/AccessModifierDeclarations for multiple inline symbols. ([@​dvandersluis][])
  • #13430: Fix EmptyLinesAroundMethodBody for methods with arguments spanning multiple lines. ([@​aduth][])
  • #13438: Fix incorrect correction in Lint/Void if an operator is called in a void context using a dot. ([@​dvandersluis][])
  • #13419: Fix Lint/DeprecatedOpenSSLConstant false positive when the argument is a safe navigation method call. ([@​dvandersluis][])
  • #13404: Fix Style/AccessModifierDeclarations to register (as positive or negative, depending on AllowModifiersOnSymbols value) access modifiers with multiple symbols. ([@​dvandersluis][])
  • #13436: Fix incorrect offense and autocorrect for Lint/RedundantSplatExpansion when percent literal array is used in a safe navigation method call. ([@​lovro-bikic][])
  • #13442: Fix an incorrect autocorrect for Style/NestedTernaryOperator when ternary operators are nested and the inner condition is parenthesized. ([@​koic][])
  • #13444: Fix an incorrect autocorrect for Style/OneLineConditional when the else branch of a ternary operator has multiple expressions. ([@​koic][])
  • #13483: Fix an incorrect autocorrect for Style/RedundantRegexpArgument when using escaped double quote character. ([@​koic][])
  • #13497: Fix infinite loop error for Style/IfWithSemicolon when using nested if/;/end in if body. ([@​koic][])
  • #13477: Update Layout/LeadingCommentSpace to accept multiline shebangs at the top of the file. ([@​dvandersluis][])
  • #13453: Update Style/AccessModifierDeclarations to handle attr_* methods with multiple parameters. ([@​dvandersluis][])
  • #12597: Update Style/SingleLineDoEndBlock to not register an offense if it will introduce a conflicting Layout/RedundantLineBreak offense. ([@​dvandersluis][])

Changes

Commits
  • 9a49a33 Cut 1.69
  • 96833cd Update Changelog
  • 32c8dd5 Merge pull request #13498 from dvandersluis/useless-include-util
  • 2904985 Remove unnecessary include Util
  • 77f3e6f Create Style/FileTouch cop
  • 8ac8947 Fix infinite loop error for Style/IfWithSemicolon
  • beb22bc Update Style/SingleArgumentDig to not register offenses on chained dig ca...
  • c8cdb3d [Fix #13486] Add new Style/DigChain cop
  • efc3fd8 [Fix #13490] Add new Style/FileNull cop
  • 8717f11 Remove unnecessary include IgnoredNode
  • Additional commits viewable in compare view

Updates sorbet-static-and-runtime from 0.5.11630 to 0.5.11670

Release notes

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

sorbet 0.5.11669.20241126111613-1b6d512b0

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11668.20241125154544-235fa9f03

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11667.20241125144437-fcc0047c2

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11666.20241125140635-d3be96c55

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11665.20241125140550-d35c1c143

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11664.20241125100758-b28e8d543

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11663.20241122144000-370510182

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11662.20241122141959-c370b9b50

... (truncated)

Commits

Updates tapioca from 0.16.3 to 0.16.5

Release notes

Sourced from tapioca's releases.

v0.16.5

What's Changed

✨ Enhancements

🐛 Bug Fixes

New Contributors

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

v0.16.4

What's Changed

✨ Enhancements

🐛 Bug Fixes

New Contributors

Full Changelog: Shopify/tapioca@v0.16.3...v0.16.4

Commits
  • ebb0cc2 Bump version to v0.16.5
  • f514052 Merge pull request #2098 from Shopify/vs-pass-addon-to-loader
  • 70373b7 Pass lsp addon option to DSL loader
  • 3c82d8f Merge pull request #2097 from Shopify/vs-pass-addon-option-to-dsl
  • b1ee1c5 Pass LSP add-on option to DSL
  • 3eb102a Merge pull request #2093 from Shopify/ko/tapioca-addon-3
  • c630b69 Refactor checksum & use outgoing_queue for logging
  • f5a1d3d Merge pull request #2094 from Shopify/andyw8/update-minitest-for-ruby-lsp
  • 5d9c3d2 Update Minitest for improved test running experience
  • fc04405 Merge pull request #2089 from rzane/workers
  • 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 |
| --- | --- | --- |
| [minitest](https://github.com/minitest/minitest) | `5.25.1` | `5.25.2` |
| [json-schema](https://github.com/voxpupuli/json-schema) | `5.0.1` | `5.1.0` |
| [rubocop](https://github.com/rubocop/rubocop) | `1.68.0` | `1.69.0` |
| [sorbet-static-and-runtime](https://github.com/sorbet/sorbet) | `0.5.11630` | `0.5.11670` |
| [tapioca](https://github.com/Shopify/tapioca) | `0.16.3` | `0.16.5` |


Updates `minitest` from 5.25.1 to 5.25.2
- [Changelog](https://github.com/minitest/minitest/blob/master/History.rdoc)
- [Commits](minitest/minitest@v5.25.1...v5.25.2)

Updates `json-schema` from 5.0.1 to 5.1.0
- [Changelog](https://github.com/voxpupuli/json-schema/blob/master/CHANGELOG.md)
- [Commits](voxpupuli/json-schema@v5.0.1...v5.1.0)

Updates `rubocop` from 1.68.0 to 1.69.0
- [Release notes](https://github.com/rubocop/rubocop/releases)
- [Changelog](https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md)
- [Commits](rubocop/rubocop@v1.68.0...v1.69.0)

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

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

---
updated-dependencies:
- dependency-name: minitest
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: json-schema
  dependency-type: direct:production
  update-type: version-update:semver-minor
  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: 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 December 1, 2024 03:21
@github-actions github-actions bot enabled auto-merge December 1, 2024 03:21
@@ -9,8 +9,7 @@ class CheckIndexTest < TestWithRepo
def test_index_valid
@repo.write_index!(<<~JSON)
{
"gem1": {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

JSON.pretty_generate no longer include newline inside empty object and arrays.

https://github.com/ruby/json/blob/master/CHANGES.md#2024-11-06-280

@andyw8 andyw8 force-pushed the dependabot/bundler/gem/minor-and-patch-eeccf6bb2e branch 4 times, most recently from 0e12966 to e9b133c Compare December 2, 2024 16:34
@andyw8 andyw8 force-pushed the dependabot/bundler/gem/minor-and-patch-eeccf6bb2e branch from e9b133c to 5908c31 Compare December 2, 2024 16:44
@github-actions github-actions bot merged commit 0879f89 into main Dec 2, 2024
4 checks passed
@github-actions github-actions bot deleted the dependabot/bundler/gem/minor-and-patch-eeccf6bb2e branch December 2, 2024 17:03
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.

1 participant