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 dev-dependencies group in /updater with 10 updates #9480

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Apr 11, 2024

Bumps the dev-dependencies group in /updater with 10 updates:

Package From To
debug 1.8.0 1.9.2
gpgme 2.0.23 2.0.24
rake 13.1.0 13.2.1
rspec 3.12.0 3.13.0
rubocop 1.58.0 1.63.1
rubocop-performance 1.19.1 1.21.0
rubocop-rspec 2.27.1 2.29.1
rubocop-sorbet 0.7.6 0.8.1
turbo_tests 2.2.0 2.2.1
webmock 3.19.1 3.23.0

Updates debug from 1.8.0 to 1.9.2

Release notes

Sourced from debug's releases.

v1.9.2

What's Changed

New Contributors

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

v1.9.1

Fix small issue to release with Ruby 3.3.0.

What's Changed

Full Changelog: ruby/debug@v1.9.0...v1.9.1

v1.9.0

This release fixes many issues reported after v1.8.0, introduce IRB integrated console and more.

What's Changed

... (truncated)

Commits
  • 0b77e82 v1.9.2
  • 6407c98 Format tables
  • a655f10 Mention IRB as the console in readme
  • ffbdb30 Use rb_iseqw_to_iseq to get iseq pointer
  • 75326e2 Fix name of rb_iseq_t struct
  • 6e9a127 Add Launchable in CI
  • 3564601 Fix flakey test "test_reponse_returns_correct_threads_info"
  • 98dad00 Separate setup and execution steps in CI
  • 68f7753 Add Session#deactivate_irb_integration
  • 935f903 Make irb_console toggleable with config update
  • Additional commits viewable in compare view

Updates gpgme from 2.0.23 to 2.0.24

Changelog

Sourced from gpgme's changelog.

2.0.24 January 31, 2024

  • Fix --clean option (#178, #179)
  • Add the ignore_mdc_error flag setter and getter (#180)
  • Add workaround for building gpgme with musl >= 1.2.4 (#181)
  • Don't add gem root to LOAD_PATH (#120)
Commits
  • ec4c9a9 Release 2.0.24
  • 238a081 Add workaround for building gpgme with musl >= 1.2.4
  • 7d6dc97 Remove duplicated tests
  • 2ac00ff Add the ignore_mdc_error flag setter and getter
  • fb4c588 Don't add gem root to LOAD_PATH
  • 2cc29d8 Revert comment about cleaning not being on by default
  • 0ce6037 Fix --clean option
  • See full diff in compare view

Updates rake from 13.1.0 to 13.2.1

Changelog

Sourced from rake's changelog.

=== 13.2.1

  • Suppressed "internal:array:52:in 'Array#each'" from backtrace by @​hsbt in #554
  • Bump actions/configure-pages from 4 to 5 by @​dependabot in #553

=== 13.2.0

Commits
  • d84f6ef Bump up 13.2.1
  • 8b33b36 Merge pull request #553 from ruby/dependabot/github_actions/actions/configure...
  • 99f6823 Merge pull request #554 from ruby/suppress-array-internal
  • 54950e0 Suppressed "<internal:array>:52:in 'Array#each'" from backtrace
  • 675498c Bump up 13.2.0
  • 3dc4277 Bump actions/configure-pages from 4 to 5
  • c68e010 Merge pull request #549 from ruby/dependabot/github_actions/dependabot/fetch-...
  • 2cb46b6 Merge pull request #551 from andrykonchin/ak/restore-truffleruby-on-ci
  • c342e96 Add TruffleRuby on CI
  • d569f0f Merge pull request #550 from ruby/dependabot/github_actions/ruby/setup-ruby-1...
  • Additional commits viewable in compare view

Updates rspec from 3.12.0 to 3.13.0

Commits

Updates rubocop from 1.58.0 to 1.63.1

Release notes

Sourced from rubocop's releases.

RuboCop 1.63.1

Bug fixes

  • #12828: Fix a false positive for Lint/AssignmentInCondition if assigning inside a method call. (@​earlopain)
  • #12823: Fixed "uninitialized constant RuboCop::Lockfile::Bundler", caused when running RuboCop without bundler exec on codebases that use rubocop-rails. (@​amomchilov)

RuboCop 1.63

New features

Bug fixes

  • #12769: Fix a false positive for Lint/RedundantWithIndex when calling with_index with receiver and a block. (@​koic)
  • #12547: Added a comment recommending upgrading to the latest version of Rubocop in the error text when an Infinite loop detected error occurs. (@​Hiroto-Iizuka)
  • #12782: Fix an error for Style/Alias with EnforcedStyle: prefer_alias when calling alias_method with fewer than 2 arguments. (@​earlopain)
  • #12781: Fix an error for Style/ExactRegexpMatch when calling match without a receiver. (@​earlopain)
  • #12780: Fix an error for Style/RedundantEach when using reverse_each.each without a block. (@​earlopain)
  • #12731: Treat &. the same way as . for setter methods in Lint/AssignmentInCondition. ([@​jonas054][])
  • #12793: Fix false positives for Style/RedundantLineContinuation when using line continuation with modifier. (@​koic)
  • #12807: Fix false positives for Naming/BlockForwarding when using explicit block forwarding in block method and others. (@​koic)
  • #12796: Fix false positives for Style/EvalWithLocation when using eval with a line number from a method call or a variable. (@​koic)
  • #12794: Fix false positives for Style/RedundantArgument when when single-quoted strings for cntrl character. (@​koic)
  • #12797: Fix false positives for Style/RedundantLineContinuation when using line continuations with && or || operator in assignment. (@​koic)
  • #12793: Fix false positives for Style/RedundantLineContinuation when multi-line continuations with operators. (@​koic)
  • #12801: Fix incorrect autocorrect for Style/CollectionCompact when using delete_if. (@​koic)
  • #12789: Make Style/RedundantPercentQ safe on multiline strings. ([@​boardfish][])
  • #12802: Return global offenses for Naming/FileName and Naming/InclusiveLanguage for empty files. (@​earlopain)
  • #12804: Return global offenses for Style/Copyright when the file is empty. (@​earlopain)

Changes

... (truncated)

Changelog

Sourced from rubocop's changelog.

1.63.1 (2024-04-10)

Bug fixes

  • #12828: Fix a false positive for Lint/AssignmentInCondition if assigning inside a method call. ([@​earlopain][])
  • #12823: Fixed "uninitialized constant RuboCop::Lockfile::Bundler", caused when running RuboCop without bundler exec on codebases that use rubocop-rails. ([@​amomchilov][])

1.63.0 (2024-04-08)

New features

Bug fixes

  • #12769: Fix a false positive for Lint/RedundantWithIndex when calling with_index with receiver and a block. ([@​koic][])
  • #12547: Added a comment recommending upgrading to the latest version of Rubocop in the error text when an Infinite loop detected error occurs. ([@​Hiroto-Iizuka][])
  • #12782: Fix an error for Style/Alias with EnforcedStyle: prefer_alias when calling alias_method with fewer than 2 arguments. ([@​earlopain][])
  • #12781: Fix an error for Style/ExactRegexpMatch when calling match without a receiver. ([@​earlopain][])
  • #12780: Fix an error for Style/RedundantEach when using reverse_each.each without a block. ([@​earlopain][])
  • #12731: Treat &. the same way as . for setter methods in Lint/AssignmentInCondition. ([@​jonas054][])
  • #12793: Fix false positives for Style/RedundantLineContinuation when using line continuation with modifier. ([@​koic][])
  • #12807: Fix false positives for Naming/BlockForwarding when using explicit block forwarding in block method and others. ([@​koic][])
  • #12796: Fix false positives for Style/EvalWithLocation when using eval with a line number from a method call or a variable. ([@​koic][])
  • #12794: Fix false positives for Style/RedundantArgument when when single-quoted strings for cntrl character. ([@​koic][])
  • #12797: Fix false positives for Style/RedundantLineContinuation when using line continuations with && or || operator in assignment. ([@​koic][])
  • #12793: Fix false positives for Style/RedundantLineContinuation when multi-line continuations with operators. ([@​koic][])
  • #12801: Fix incorrect autocorrect for Style/CollectionCompact when using delete_if. ([@​koic][])
  • #12789: Make Style/RedundantPercentQ safe on multiline strings. ([@​boardfish][])
  • #12802: Return global offenses for Naming/FileName and Naming/InclusiveLanguage for empty files. ([@​earlopain][])
  • #12804: Return global offenses for Style/Copyright when the file is empty. ([@​earlopain][])

Changes

1.62.1 (2024-03-11)

Bug fixes

  • #12761: Fix a false positive for Style/HashEachMethods when the key block argument of Enumerable#each method is unused after chunk. ([@​koic][])
  • #12768: Fix a false positive for Style/NilComparison without receiver and EnforcedStyle: comparison. ([@​earlopain][])

... (truncated)

Commits
  • d148ee5 Cut 1.63.1
  • 7c9d1d8 Update Changelog
  • b562b74 Fix a false positive for Lint/AssignmentInConditional if assigning inside a...
  • f7d1a36 Use Source::Range#join instead of Source::Range#with'
  • b0c508a Try to use Bundler, if available
  • 0663a07 [Fix #12823] Fix uninitialized constant error
  • 952bf9e Remove a uselsss return value
  • a4447ea Reset the docs version
  • 55df9e2 Cut 1.63
  • 752d351 Update Changelog
  • Additional commits viewable in compare view

Updates rubocop-performance from 1.19.1 to 1.21.0

Release notes

Sourced from rubocop-performance's releases.

RuboCop Performance 1.21.0

New features

  • #446: Support Prism as a Ruby parser (experimental). (@​koic)

Bug fixes

  • #437: Fix a false positive for Performance/ChainArrayAllocation when using select with block argument after select. (@​koic)
  • #448: Fix a false positive for Performance/RedundantBlockCall when using block.call with block argument. (@​koic)

Changes

RuboCop Performance 1.20.2

Bug fixes

  • #425: Fix a false positive for Performance/StringIdentifierArgument when using string interpolation with methods that don't support symbols with :: inside them. (@​earlopain)

RuboCop Performance 1.20.1

Bug fixes

  • #428: Fix false negatives for Performance/StringIdentifierArgument when using multiple string arguments. (@​koic)

RuboCop Performance 1.20.0 (The RubyConf Taiwan 2023 Edition)

New features

  • #384: Support optimized String#dup for Performance/UnfreezeString when Ruby 3.3+. (@​koic)

Bug fixes

  • #374: Fix an error for Performance/MapMethodChain when using map method chain without receiver. (@​koic)
  • #386: Fix a false negative for Performance/StringIdentifierArgument when using string interpolation. (@​earlopain)
  • #419: Make Performance/Count, Performance/FixedSize, Performance/FlatMap, Performance/InefficientHashSearch, Performance/RangeInclude, Performance/RedundantSortBlock, Performance/ReverseFirst, Performance/SelectMap, Performance/Size, Performance/SortReverse, and Performance/TimesMap cops aware of safe navigation operator. (@​koic)
  • #390: Fix a false negative for Performance/ReverseEach when safe navigation is between reverse and each. ([@​fatkodima][])
  • #401: Make Performance/Sum aware of safe navigation operator. (@​koic)

Changes

... (truncated)

Changelog

Sourced from rubocop-performance's changelog.

1.21.0 (2024-03-30)

New features

  • #446: Support Prism as a Ruby parser (experimental). ([@​koic][])

Bug fixes

  • #437: Fix a false positive for Performance/ChainArrayAllocation when using select with block argument after select. ([@​koic][])
  • #448: Fix a false positive for Performance/RedundantBlockCall when using block.call with block argument. ([@​koic][])

Changes

1.20.2 (2024-01-08)

Bug fixes

  • #425: Fix a false positive for Performance/StringIdentifierArgument when using string interpolation with methods that don't support symbols with :: inside them. ([@​earlopain][])

1.20.1 (2023-12-25)

Bug fixes

  • #428: Fix false negatives for Performance/StringIdentifierArgument when using multiple string arguments. ([@​koic][])

1.20.0 (2023-12-16)

New features

  • #384: Support optimized String#dup for Performance/UnfreezeString when Ruby 3.3+. ([@​koic][])

Bug fixes

  • #374: Fix an error for Performance/MapMethodChain when using map method chain without receiver. ([@​koic][])
  • #386: Fix a false negative for Performance/StringIdentifierArgument when using string interpolation. ([@​earlopain][])
  • #419: Make Performance/Count, Performance/FixedSize, Performance/FlatMap, Performance/InefficientHashSearch, Performance/RangeInclude, Performance/RedundantSortBlock, Performance/ReverseFirst, Performance/SelectMap, Performance/Size, Performance/SortReverse, and Performance/TimesMap cops aware of safe navigation operator. ([@​koic][])
  • #390: Fix a false negative for Performance/ReverseEach when safe navigation is between reverse and each. ([@​fatkodima][])
  • #401: Make Performance/Sum aware of safe navigation operator. ([@​koic][])

Changes

  • #389: Improve Performance/MapCompact to handle more safe navigation calls. ([@​fatkodima][])
  • #395: Enhance Performance/StringInclude to handle === method. ([@​fatkodima][])
  • #388: Require RuboCop 1.30+ as runtime dependency. ([@​koic][])
  • #380: Require RuboCop AST 1.30.0+. ([@​koic][])
Commits
  • 30f6669 Cut 1.21.0
  • 067c641 Update Changelog
  • 9d28120 Merge pull request #449 from koic/fix_false_positive_for_performance_redundan...
  • 0d98285 [Fix #448] Fix a false positive for Performance/RedundantBlockCall
  • d4d1875 Merge pull request #446 from koic/support_prism
  • 2059d28 Support Prism as a Ruby parser
  • 13aa3d1 Tweak specs for Performance/UnfreezeString
  • 9ba15dd Use RuboCop RSpec 2.27
  • 08ac312 Merge pull request #443 from koic/disalbe_performance_casecmp_by_default
  • 4dc1e5c [Fix #240] Disable Performance/Casecmp cop
  • Additional commits viewable in compare view

Updates rubocop-rspec from 2.27.1 to 2.29.1

Release notes

Sourced from rubocop-rspec's releases.

RuboCop RSpec v2.29.1

  • Fix an error in the default configuration. (@​ydah)

RuboCop RSpec v2.29.0

  • Fix an autocorrect error for RSpec/ExpectActual. (@​bquorning)
  • Add new RSpec/UndescriptiveLiteralsDescription cop. (@​ydah)
  • Add new RSpec/EmptyOutput cop. (@​bquorning)

RuboCop RSpec v2.28.0

  • Extract RSpec Rails cops to a separate repository, rubocop-rspec_rails. The rubocop-rspec_rails repository is a dependency of rubocop-rspec and the cops related to rspec-rails are aliased (RSpec/Rails/Foo == RSpecRails/Foo) until v3.0 is released, so the change will be invisible to users until then. (@​ydah)
Changelog

Sourced from rubocop-rspec's changelog.

2.29.1 (2024-04-05)

  • Fix an error in the default configuration. ([@​ydah])

2.29.0 (2024-04-04)

  • Fix an autocorrect error for RSpec/ExpectActual. ([@​bquorning])
  • Add new RSpec/UndescriptiveLiteralsDescription cop. ([@​ydah])
  • Add new RSpec/EmptyOutput cop. ([@​bquorning])

2.28.0 (2024-03-30)

  • Extract RSpec Rails cops to a separate repository, rubocop-rspec_rails. The rubocop-rspec_rails repository is a dependency of rubocop-rspec and the cops related to rspec-rails are aliased (RSpec/Rails/Foo == RSpecRails/Foo) until v3.0 is released, so the change will be invisible to users until then. ([@​ydah])
Commits

Updates rubocop-sorbet from 0.7.6 to 0.8.1

Release notes

Sourced from rubocop-sorbet's releases.

v0.8.1

What's Changed

🛠 Other Changes

New Contributors

Full Changelog: Shopify/rubocop-sorbet@v0.8.0...v0.8.1

v0.8.0

What's Changed

[!NOTE] This version drops the runtime dependency that Sorbet/SignatureBuildOrder had on unparser, so if you had that dependency in your Gemfile for only this reason, you should be able to drop it now.

🛠 Other Changes

Full Changelog: Shopify/rubocop-sorbet@v0.7.8...v0.8.0

v0.7.8

What's Changed

🛠 Other Changes

Full Changelog: Shopify/rubocop-sorbet@v0.7.7...v0.7.8

v0.7.7

What's Changed

🛠 Other Changes

New Contributors

... (truncated)

Commits
  • 479aaef Bump version to v0.8.1
  • 23b9d82 Merge pull request #221 from Shopify/dependabot/bundler/rake-13.2.1
  • 1eb6517 Bump rake from 13.1.0 to 13.2.1
  • d5f72a2 Merge pull request #218 from Shopify/centralize_ruby_version
  • 107aa2e Remove TargetRubyVersion from config/rbi.yml
  • c15a2d2 Update Rubocop to 1.62.1
  • b43acc9 Centralize Ruby Version to .ruby-version
  • 7c44e60 Merge pull request #212 from Shopify/dependabot/github_actions/actions/stale-9
  • c5d0a19 Merge pull request #211 from Shopify/dependabot/github_actions/actions/checko...
  • b6b33d7 Merge pull request #216 from Shopify/dependabot/bundler/rspec-3.13.0
  • Additional commits viewable in compare view

Updates turbo_tests from 2.2.0 to 2.2.1

Release notes

Sourced from turbo_tests's releases.

v2.2.1

What's Changed

New Contributors

Full Changelog: serpapi/turbo_tests@v2.2.0...v2.2.1

Commits
  • 7031210 Merge pull request #49 from lcmen/fix-hash-extensions-for-latest-json
  • 0767720 Explicitly add json gem as a dependency
  • c7076a5 Explicitely load ostruct so it's compatible with latest JSON gem
  • See full diff in compare view

Updates webmock from 3.19.1 to 3.23.0

Changelog

Sourced from webmock's changelog.

3.23.0

  • Fixed HTTP.rb adapter to support streaming real responses when WebMock is enabled.

    Thanks to Viacheslav Nepomniashchikh for reporting and investigating this issue.

3.22.0

  • Addressed an issue in the HTTPClient adapter where memoized stubbed responses and memoized request_signatures were incorrectly persisted between subsequent requests (#1019). The implementation of a more robust thread-safety solution by Tom Beauvais in [PR #300](bblimke/webmock#300) not only resolved the memoization problem but also enhanced the overall thread safety of the adapter. This update ensures that stubbed responses and request signatures are correctly isolated to individual requests, improving both consistency and thread safety.

3.21.2

  • Corrected type checking in WebMock::Response#assert_valid_body! to accurately recognize Hash objects. Additionally, improved the clarity of the error message for unsupported body types, guiding users towards proper usage.

    Thanks to Jake Robb for reporting.

3.21.1

  • The stubbed Net::HTTPResponse#uri now returns request.uri, aligning it with the behavior of an actual Net::HTTPResponse.

    Thanks to Abe Voelker for reporting and to Victor Maslov and Gio Lodi for the suggested solution.

3.21.0

  • Don't use deprecated Rack::VERSION for Rack >= 3

    Thanks to Étienne Barrié

  • Updated HTTPClient adapter, to build request signature using the URI after filters have been applied.

    Thanks to Matt Brown

3.20.0

  • Optimised EmHttpRequestAdapter performance.

    Thanks to Ricardo Trindade

  • Removed runtime dependency on base64.

    Thanks to Earlopain

  • Typhoeus::Response objects constructed from stubbed responses now have all timing attributes set to 0.0.

    Thanks to James Brown

  • Optimised WebMock::Util::Headers by removing redundant freeze invocations.

    Thanks to Kazuhiro NISHIYAMA

... (truncated)

Commits
  • fc6a2ab Version 3.23.0
  • 43717a5 Fixed CI badge.
  • 216cad9 Fixed HTTP.rb adapter, to allow streaming real responses, when WebMock is ena...
  • 3c9317b Use require_relative' instead of require`
  • 9c18b6c Version 3.22.0
  • 9a985ad Since webmock_responses and webmock_request_signatures in HTTPClient adap...
  • 3ed6b48 Revert "Revert "Merge pull request #300 from tbeauvais/httpclient_thread_safe""
  • d209ee1 Version 3.21.2
  • f7080b5 Fixed type checking in WebMock::Response#assert_valid_body! to correctly iden...
  • 9b2bef0 Updated the list of contributors.
  • 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 ...

Description has been truncated

@dependabot dependabot bot requested a review from a team as a code owner April 11, 2024 15:55
@dependabot dependabot bot added dependencies ruby Dependabot pull requests that update Ruby code labels Apr 11, 2024
@dependabot dependabot bot force-pushed the dependabot/bundler/updater/dev-dependencies-a8678b14a3 branch 2 times, most recently from ddf2cfe to c18b3ba Compare April 15, 2024 11:00
Bumps the dev-dependencies group in /updater with 10 updates:

| Package | From | To |
| --- | --- | --- |
| [debug](https://github.com/ruby/debug) | `1.8.0` | `1.9.2` |
| [gpgme](https://github.com/ueno/ruby-gpgme) | `2.0.23` | `2.0.24` |
| [rake](https://github.com/ruby/rake) | `13.1.0` | `13.2.1` |
| [rspec](https://github.com/rspec/rspec-metagem) | `3.12.0` | `3.13.0` |
| [rubocop](https://github.com/rubocop/rubocop) | `1.58.0` | `1.63.1` |
| [rubocop-performance](https://github.com/rubocop/rubocop-performance) | `1.19.1` | `1.21.0` |
| [rubocop-rspec](https://github.com/rubocop/rubocop-rspec) | `2.27.1` | `2.29.1` |
| [rubocop-sorbet](https://github.com/shopify/rubocop-sorbet) | `0.7.6` | `0.8.1` |
| [turbo_tests](https://github.com/serpapi/turbo_tests) | `2.2.0` | `2.2.1` |
| [webmock](https://github.com/bblimke/webmock) | `3.19.1` | `3.23.0` |


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

Updates `gpgme` from 2.0.23 to 2.0.24
- [Changelog](https://github.com/ueno/ruby-gpgme/blob/master/NEWS)
- [Commits](ueno/ruby-gpgme@v2.0.23...v2.0.24)

Updates `rake` from 13.1.0 to 13.2.1
- [Release notes](https://github.com/ruby/rake/releases)
- [Changelog](https://github.com/ruby/rake/blob/master/History.rdoc)
- [Commits](ruby/rake@v13.1.0...v13.2.1)

Updates `rspec` from 3.12.0 to 3.13.0
- [Commits](rspec/rspec-metagem@v3.12.0...v3.13.0)

Updates `rubocop` from 1.58.0 to 1.63.1
- [Release notes](https://github.com/rubocop/rubocop/releases)
- [Changelog](https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md)
- [Commits](rubocop/rubocop@v1.58.0...v1.63.1)

Updates `rubocop-performance` from 1.19.1 to 1.21.0
- [Release notes](https://github.com/rubocop/rubocop-performance/releases)
- [Changelog](https://github.com/rubocop/rubocop-performance/blob/master/CHANGELOG.md)
- [Commits](rubocop/rubocop-performance@v1.19.1...v1.21.0)

Updates `rubocop-rspec` from 2.27.1 to 2.29.1
- [Release notes](https://github.com/rubocop/rubocop-rspec/releases)
- [Changelog](https://github.com/rubocop/rubocop-rspec/blob/master/CHANGELOG.md)
- [Commits](rubocop/rubocop-rspec@v2.27.1...v2.29.1)

Updates `rubocop-sorbet` from 0.7.6 to 0.8.1
- [Release notes](https://github.com/shopify/rubocop-sorbet/releases)
- [Commits](Shopify/rubocop-sorbet@v0.7.6...v0.8.1)

Updates `turbo_tests` from 2.2.0 to 2.2.1
- [Release notes](https://github.com/serpapi/turbo_tests/releases)
- [Commits](serpapi/turbo_tests@v2.2.0...v2.2.1)

Updates `webmock` from 3.19.1 to 3.23.0
- [Changelog](https://github.com/bblimke/webmock/blob/master/CHANGELOG.md)
- [Commits](bblimke/webmock@v3.19.1...v3.23.0)

---
updated-dependencies:
- dependency-name: debug
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: gpgme
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: rake
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: rspec
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: rubocop
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: rubocop-performance
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: rubocop-rspec
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: rubocop-sorbet
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: turbo_tests
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: webmock
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/bundler/updater/dev-dependencies-a8678b14a3 branch from c18b3ba to c12f21e Compare April 15, 2024 14:29
Copy link
Contributor Author

dependabot bot commented on behalf of github Apr 17, 2024

Superseded by #9520.

@dependabot dependabot bot closed this Apr 17, 2024
@dependabot dependabot bot deleted the dependabot/bundler/updater/dev-dependencies-a8678b14a3 branch April 17, 2024 16:06
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies ruby Dependabot pull requests that update Ruby code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants