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 7 updates #299

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 1, 2025

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

Package From To
minitest 5.25.2 5.25.4
debug 1.9.2 1.10.0
bigdecimal 3.1.8 3.1.9
json-schema 5.1.0 5.1.1
rbi 0.2.1 0.2.2
rubocop 1.69.0 1.69.2
sorbet-static-and-runtime 0.5.11670 0.5.11708

Updates minitest from 5.25.2 to 5.25.4

Changelog

Sourced from minitest's changelog.

=== 5.25.4 / 2024-12-03

  • 1 bug fix:

    • Fix for must_verify definition if only requiring minitest/mock (but why?).

=== 5.25.3 / 2024-12-03

  • 5 bug fixes:

    • Fixed assert_mock to fail instead of raise on unmet mock expectations.
    • Fixed assert_mock to take an optional message argument.
    • Fixed formatting of unmet mock expectation messages.
    • Fixed missing must_verify expectation to match assert_mock.
    • minitest/pride: Fixed to use true colors with *-direct terminals (bk2204)
Commits
  • d84437f prepped for release
  • 51cfac5 - Fix for must_verify definition if only requiring minitest/mock (but why?).
  • 704d310 prepped for release
  • 2d542ff - Fixed formatting of unmet mock expectation messages.
  • 212de90 - minitest/pride: Fixed to use true colors with *-direct terminals (bk2204)
  • See full diff in compare view

Updates debug from 1.9.2 to 1.10.0

Release notes

Sourced from debug's releases.

v1.10.0

What's Changed

New Contributors

Full Changelog: ruby/debug@v1.9.2...v1.10.0

Commits
  • bead098 v1.10.0
  • 51b0161 port_range lvar is not defined
  • affee18 Add option for trying a range of TCP ports
  • 87d607d allow puts without argument
  • 3685859 Improve RUBYOPT's handling in tests
  • ee59c85 Prompt assertion should use assert_raw_line_text instead of assert_line_text
  • 07df517 Modify misc/README.md.erb and regenerate README
  • 1405bf8 Fix minor typos / grammar in README.md
  • 9c42795 Add changelog_uri to gemspec (#1106)
  • ef5e54c Fix flaky tests
  • Additional commits viewable in compare view

Updates bigdecimal from 3.1.8 to 3.1.9

Changelog

Sourced from bigdecimal's changelog.

3.1.9

  • Accept no digits in the fractional part (#302)

    @​kou

Commits
  • a015c8b CI: Disable benchmarking of some versions on Ruby
  • 8bdeafc Bump up to v3.1.9
  • 480dd79 CHANGES: Add v3.1.9 entries
  • 66868ab Accept no digits in the fractional part (#302)
  • de0634c Merge pull request #305 from nobu/c2x-pedantic
  • 5f9466a Fix extra semicolon outside of a function in NO_SANITIZE
  • 996c51b Merge pull request #296 from franzliedke/patch-1
  • ad4fec6 Merge pull request #303 from nobu/extconf
  • 8fa7712 Reduce unnecessary checks
  • 33b5374 Merge pull request #299 from anakinj/minimal-typo-fix
  • Additional commits viewable in compare view

Updates json-schema from 5.1.0 to 5.1.1

Changelog

Sourced from json-schema's changelog.

v5.1.1 (2024-12-02)

Full Changelog

Fixed bugs:

  • Add bigdecimal dependency to fix deprecation warning for Ruby 3.4 #533 (jamiecobbett)
Commits
  • 64e7e95 Merge pull request #534 from bastelfreak/rel511
  • 2293875 Release 5.1.1
  • 0eeaa91 Merge pull request #533 from jamiecobbett/fix-bigdecimal-deprecation-warning
  • 73c61ed Add bigdecimal dependency to fix deprecation warning for Ruby 3.4
  • See full diff in compare view

Updates rbi from 0.2.1 to 0.2.2

Commits
  • e9c6406 Bump version to v0.2.2
  • b1dd32b Merge pull request #384 from Shopify/at-rbs-attached-class
  • e8d7495 Merge pull request #385 from Shopify/dependabot/bundler/minor-and-patch-bfcd6...
  • 6538787 Bump the minor-and-patch group with 3 updates
  • 70d9f52 Translate RBI attached_class to RBS instance
  • c108596 Merge pull request #383 from Shopify/dependabot/bundler/minor-and-patch-78902...
  • a7a0f19 Bump the minor-and-patch group with 4 updates
  • ac2b536 Merge pull request #382 from Shopify/dependabot/bundler/minor-and-patch-34e56...
  • 93efe1f Bump the minor-and-patch group with 4 updates
  • 14871a3 Merge pull request #381 from Shopify/dependabot/bundler/minor-and-patch-24121...
  • Additional commits viewable in compare view

Updates rubocop from 1.69.0 to 1.69.2

Release notes

Sourced from rubocop's releases.

RuboCop 1.69.2

Bug fixes

  • #13553: Fix an incorrect autocorrect for Style/MultipleComparison when a variable is compared multiple times after a method call. (@​koic)
  • #13562: Fix Bundler/DuplicatedGem cop error in case of empty branch. (@​viralpraxis)
  • #13573: Fix Lint/UnescapedBracketInRegexp cop failure with invalid multibyte escape. (@​earlopain)
  • #13556: Fix false positives for Style/FileNull when using 'nul' string. (@​koic)
  • #12995: Fix --disable-uncorrectable to not insert directives inside a string. (@​dvandersluis)
  • #13320: Fix incorrect autocorrect when Layout/LineContinuationLeadingSpace and Style/StringLiterals autocorrects in the same pass. (@​dvandersluis)
  • #13299: Fix Style/BlockDelimiters to always accept braces when an operator method argument is chained. (@​dvandersluis)
  • #13565: Fix Style/RedundantLineContinuation false negatives when a redundant continuation follows a required continuation. (@​dvandersluis)
  • #13551: Fix an incorrect autocorrect for Style/IfWithSemicolon when using multi value assignment in if with a semicolon is used. (@​koic)
  • #13534: Fix Layout/LineLength cop failure in case of YARD-comment-like string. (@​viralpraxis)
  • #13558: Fix Lint/NonAtomicFileOperation cop error in case of implicit receiver. (@​viralpraxis)
  • #13564: Fix Metrics/ClassLength cop error in case of chained assignments. (@​viralpraxis)
  • #13570: Fix Naming/RescuedExceptionsVariableName cop error when exception is assigned with writer method. (@​viralpraxis)
  • #13559: Fix a false positive for Style/RedundantLineContinuation when a method definition is used as an argument for a method call. (@​davidrunger)
  • #13574: Fix Style/ExactRegexpMatch cop error on invalid regular expression literal. (@​viralpraxis)
  • #13554: Fix Style/FrozenStringLiteralComment false positive in case of non-downcased value literal. (@​viralpraxis)
  • #13569: Fix Style/MethodCallWithoutArgsParentheses cop error in case of mass hash assignment. (@​viralpraxis)
  • #13542: Fix Style/RedundantCondition cop failure in case of empty arguments. (@​viralpraxis)
  • #13509: Update Layout/ExtraSpacing and Layout/SpaceAroundOperators to handle preceding operators inside strings. (@​dvandersluis)

RuboCop 1.69.1

Bug fixes

  • #13502: Fix an incorrect autocorrect for Style/DigChain when using safe navigation method chain with dig method. (@​koic)
  • #13505: Fix an error for Style/ParallelAssignment when using the anonymous splat operator. (@​earlopain)
  • #13184: Fix some false positives in Lint/UnreachableCode. (@​isuckatcs)
  • #13494: Fix false positives for Style/HashExcept cop when using reject/!include?, reject/!in? or select/!exclude? combinations. (@​lovro-bikic)
  • #13522: Fix Lint/UnescapedBracketInRegexp cop failure with invalid regular expression. (@​viralpraxis)
  • #13523: Fix Style::AccessModifierDeclarations cop failure in case of if node without else. (@​viralpraxis)
  • #13524: Fix Style/RedundantArgument cop failure while inspecting string literal with invalid encoding. (@​viralpraxis)
  • #13528: Fix Style/RedundantParentheses cop failure in case of splatted case node without condition. (@​viralpraxis)
  • #13521: Fix Style/RedundantSelf cop failure with kwnilarg argument node. (@​viralpraxis)
  • #13526: Fix Style/StringConcatenation cop failure when there are mixed implicit and explicit concatenations. (@​viralpraxis)
  • #13511: Fix false positive in Lint/UnescapedBracketInRegexp when using regexp_parser 2.9.2 and earlier. (@​dvandersluis)
  • #13096: Update Style/BlockDelimiters to not change braces when they are required for syntax. (@​dvandersluis)
  • #13512: Update Style/LambdaCall to be aware of safe navigation. (@​dvandersluis)

... (truncated)

Changelog

Sourced from rubocop's changelog.

1.69.2 (2024-12-12)

Bug fixes

  • #13553: Fix an incorrect autocorrect for Style/MultipleComparison when a variable is compared multiple times after a method call. ([@​koic][])
  • #13562: Fix Bundler/DuplicatedGem cop error in case of empty branch. ([@​viralpraxis][])
  • #13573: Fix Lint/UnescapedBracketInRegexp cop failure with invalid multibyte escape. ([@​earlopain][])
  • #13556: Fix false positives for Style/FileNull when using 'nul' string. ([@​koic][])
  • #12995: Fix --disable-uncorrectable to not insert directives inside a string. ([@​dvandersluis][])
  • #13320: Fix incorrect autocorrect when Layout/LineContinuationLeadingSpace and Style/StringLiterals autocorrects in the same pass. ([@​dvandersluis][])
  • #13299: Fix Style/BlockDelimiters to always accept braces when an operator method argument is chained. ([@​dvandersluis][])
  • #13565: Fix Style/RedundantLineContinuation false negatives when a redundant continuation follows a required continuation. ([@​dvandersluis][])
  • #13551: Fix an incorrect autocorrect for Style/IfWithSemicolon when using multi value assignment in if with a semicolon is used. ([@​koic][])
  • #13534: Fix Layout/LineLength cop failure in case of YARD-comment-like string. ([@​viralpraxis][])
  • #13558: Fix Lint/NonAtomicFileOperation cop error in case of implicit receiver. ([@​viralpraxis][])
  • #13564: Fix Metrics/ClassLength cop error in case of chained assignments. ([@​viralpraxis][])
  • #13570: Fix Naming/RescuedExceptionsVariableName cop error when exception is assigned with writer method. ([@​viralpraxis][])
  • #13559: Fix a false positive for Style/RedundantLineContinuation when a method definition is used as an argument for a method call. ([@​davidrunger][])
  • #13574: Fix Style/ExactRegexpMatch cop error on invalid regular expression literal. ([@​viralpraxis][])
  • #13554: Fix Style/FrozenStringLiteralComment false positive in case of non-downcased value literal. ([@​viralpraxis][])
  • #13569: Fix Style/MethodCallWithoutArgsParentheses cop error in case of mass hash assignment. ([@​viralpraxis][])
  • #13542: Fix Style/RedundantCondition cop failure in case of empty arguments. ([@​viralpraxis][])
  • #13509: Update Layout/ExtraSpacing and Layout/SpaceAroundOperators to handle preceding operators inside strings. ([@​dvandersluis][])

1.69.1 (2024-12-03)

Bug fixes

  • #13502: Fix an incorrect autocorrect for Style/DigChain when using safe navigation method chain with dig method. ([@​koic][])
  • #13505: Fix an error for Style/ParallelAssignment when using the anonymous splat operator. ([@​earlopain][])
  • #13184: Fix some false positives in Lint/UnreachableCode. ([@​isuckatcs][])
  • #13494: Fix false positives for Style/HashExcept cop when using reject/!include?, reject/!in? or select/!exclude? combinations. ([@​lovro-bikic][])
  • #13522: Fix Lint/UnescapedBracketInRegexp cop failure with invalid regular expression. ([@​viralpraxis][])
  • #13523: Fix Style::AccessModifierDeclarations cop failure in case of if node without else. ([@​viralpraxis][])
  • #13524: Fix Style/RedundantArgument cop failure while inspecting string literal with invalid encoding. ([@​viralpraxis][])
  • #13528: Fix Style/RedundantParentheses cop failure in case of splatted case node without condition. ([@​viralpraxis][])
  • #13521: Fix Style/RedundantSelf cop failure with kwnilarg argument node. ([@​viralpraxis][])
  • #13526: Fix Style/StringConcatenation cop failure when there are mixed implicit and explicit concatenations. ([@​viralpraxis][])
  • #13511: Fix false positive in Lint/UnescapedBracketInRegexp when using regexp_parser 2.9.2 and earlier. ([@​dvandersluis][])
  • #13096: Update Style/BlockDelimiters to not change braces when they are required for syntax. ([@​dvandersluis][])
  • #13512: Update Style/LambdaCall to be aware of safe navigation. ([@​dvandersluis][])
Commits
  • 3ba4aef Cut 1.69.2
  • e74cea2 Update Changelog
  • 19ee909 [Fix #13556] Fix false positives for Style/FileNull
  • fd13dab [Fix #13299] Fix Style/BlockDelimiters to always accept braces when an oper...
  • 522950a Fix Style/ExactRegexpMatch cop error on invalid regular expression literal
  • e0777ff Merge pull request #13539 from dvandersluis/issue/13320
  • 7fbd78a Net::HTTPSession is deprecated now
  • bd31b8a Update RSpec 4 CI to the monorepo
  • 4618790 Fix Lint/UnescapedBracketInRegexp cop failure with invalid multibyte escape
  • b00b5f1 Merge pull request #13570 from viralpraxis/fix-naming-rescue-exceptions-varia...
  • Additional commits viewable in compare view

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

Release notes

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

sorbet 0.5.11707.20241219181650-f3331edbb

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11706.20241219145439-b30d8cf9b

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11705.20241219091427-363435333

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11704.20241217164538-e449b46b9

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11703.20241217190426-97c50e148

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11702.20241217131246-3116f7c1c

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11701.20241217131218-97200460b

To use Sorbet add this line to your Gemfile:

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

sorbet 0.5.11700.20241217104754-594746991

... (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 in /gem with 7 updates:

| Package | From | To |
| --- | --- | --- |
| [minitest](https://github.com/minitest/minitest) | `5.25.2` | `5.25.4` |
| [debug](https://github.com/ruby/debug) | `1.9.2` | `1.10.0` |
| [bigdecimal](https://github.com/ruby/bigdecimal) | `3.1.8` | `3.1.9` |
| [json-schema](https://github.com/voxpupuli/json-schema) | `5.1.0` | `5.1.1` |
| [rbi](https://github.com/Shopify/rbi) | `0.2.1` | `0.2.2` |
| [rubocop](https://github.com/rubocop/rubocop) | `1.69.0` | `1.69.2` |
| [sorbet-static-and-runtime](https://github.com/sorbet/sorbet) | `0.5.11670` | `0.5.11708` |


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

Updates `debug` from 1.9.2 to 1.10.0
- [Release notes](https://github.com/ruby/debug/releases)
- [Commits](ruby/debug@v1.9.2...v1.10.0)

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

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

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

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

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

---
updated-dependencies:
- dependency-name: minitest
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: debug
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: bigdecimal
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: json-schema
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- 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-patch
  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
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot requested a review from a team as a code owner January 1, 2025 03:09
@github-actions github-actions bot enabled auto-merge January 1, 2025 03:09
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