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 across 1 directory with 10 updates #126

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Jun 2, 2024

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

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.64.1
rubocop-performance 1.19.1 1.21.0
rubocop-sorbet 0.7.6 0.8.3
stackprof 0.2.25 0.2.26
turbo_tests 2.2.0 2.2.3
webmock 3.19.1 3.23.1

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.64.1

Release notes

Sourced from rubocop's releases.

RuboCop 1.64.1

Bug fixes

  • #12951: Fix an error for Style/Copyright when AutocorrectNotice is missing. (@​koic)
  • #12932: Fix end position of diagnostic for LSP. (@​ksss)
  • #12926: Fix a false positive for Style/SuperArguments when the methods block argument is reassigned before super. (@​earlopain)
  • #12931: Fix false positives for Style/RedundantLineContinuation when line continuations involve break, next, or yield with a return value. (@​koic)
  • #12924: Fix false positives for Style/SendWithLiteralMethodName when public_send argument is a method name that cannot be autocorrected. (@​koic)

RuboCop 1.64

New features

Bug fixes

  • #7189: Fix a false positive for Style/Copyright when using multiline copyright notice. (@​koic)
  • #12914: Fix a false negative for Layout/EmptyComment when using an empty comment next to code after comment line. (@​koic)
  • #12919: Fix false negatives for Style/ArgumentsForwarding when forward target is super. (@​koic)
  • #12923: Fix false negatives for Style/ArgumentsForwarding when forward target is safe navigation method. (@​koic)
  • #12894: Fix false positives for Style/MapIntoArray when using each without receiver with << to build an array. (@​koic)
  • #12876: Fix an error for the lockfile parser if a gemfile exists but a lockfile doesn't. (@​earlopain)
  • #12888: Fix --no-exclude-limit generating a todo with Max config instead of listing everything out with Exclude. (@​earlopain)
  • #12898: Fix an error for TargetRailsVersion when parsing from the lockfile with prerelease rails. (@​earlopain)

Changes

  • #12908: Add rubocop-rspec back to suggested extensions when rspec-rails is in use. (@​pirj)
  • #12884: Align output from cop.documentation_url with --show-docs-url when passing a config as argument. (@​earlopain)
  • #12905: Support ActiveSupportExtensionsEnabled for Style/SymbolProc. (@​koic)
  • #12897: Respect user's intentions with workspace/executeCommand LSP method. (@​koic)

RuboCop 1.63.5

Bug fixes

... (truncated)

Changelog

Sourced from rubocop's changelog.

1.64.1 (2024-05-31)

Bug fixes

  • #12951: Fix an error for Style/Copyright when AutocorrectNotice is missing. ([@​koic][])
  • #12932: Fix end position of diagnostic for LSP. ([@​ksss][])
  • #12926: Fix a false positive for Style/SuperArguments when the methods block argument is reassigned before super. ([@​earlopain][])
  • #12931: Fix false positives for Style/RedundantLineContinuation when line continuations involve break, next, or yield with a return value. ([@​koic][])
  • #12924: Fix false positives for Style/SendWithLiteralMethodName when public_send argument is a method name that cannot be autocorrected. ([@​koic][])

1.64.0 (2024-05-23)

New features

  • #12904: Add new either_consistent SupportedShorthandSyntax to Style/HashSyntax. ([@​pawelma][])
  • #12842: Add new Style/SendWithLiteralMethodName cop. ([@​koic][])
  • #12309: Add new Style/SuperArguments cop. ([@​earlopain][])
  • #12917: Suggest correct formatter name for --format command line option. ([@​koic][])
  • #12242: Support AllowModifiersOnAttrs option for Style/AccessModifierDeclarations. ([@​krororo][])
  • #11585: Support AllowedMethods for Style/DocumentationMethod. ([@​koic][])

Bug fixes

  • #7189: Fix a false positive for Style/Copyright when using multiline copyright notice. ([@​koic][])
  • #12914: Fix a false negative for Layout/EmptyComment when using an empty comment next to code after comment line. ([@​koic][])
  • #12919: Fix false negatives for Style/ArgumentsForwarding when forward target is super. ([@​koic][])
  • #12923: Fix false negatives for Style/ArgumentsForwarding when forward target is safe navigation method. ([@​koic][])
  • #12894: Fix false positives for Style/MapIntoArray when using each without receiver with << to build an array. ([@​koic][])
  • #12876: Fix an error for the lockfile parser if a gemfile exists but a lockfile doesn't. ([@​earlopain][])
  • #12888: Fix --no-exclude-limit generating a todo with Max config instead of listing everything out with Exclude. ([@​earlopain][])
  • #12898: Fix an error for TargetRailsVersion when parsing from the lockfile with prerelease rails. ([@​earlopain][])

Changes

  • #12908: Add rubocop-rspec back to suggested extensions when rspec-rails is in use. ([@​pirj][])
  • #12884: Align output from cop.documentation_url with --show-docs-url when passing a config as argument. ([@​earlopain][])
  • #12905: Support ActiveSupportExtensionsEnabled for Style/SymbolProc. ([@​koic][])
  • #12897: Respect user's intentions with workspace/executeCommand LSP method. ([@​koic][])

1.63.5 (2024-05-09)

Bug fixes

  • #12877: Fix an infinite loop error for Layout/FirstArgumentIndentation when specifying EnforcedStyle: with_fixed_indentation of Layout/ArrayAlignment. ([@​koic][])
  • #12873: Fix an error for Metrics/BlockLength when the CountAsOne config is invalid. ([@​koic][])
  • #12881: Fix incorrect autocorrect when Style/NumericPredicate is used with negations. ([@​fatkodima][])
  • #12882: Fix Layout/CommentIndentation for comment-only pattern matching. ([@​nekketsuuu][])

1.63.4 (2024-04-28)

... (truncated)

Commits

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-sorbet from 0.7.6 to 0.8.3

Release notes

Sourced from rubocop-sorbet's releases.

v0.8.3

What's Changed

🐛 Bug Fixes

New Contributors

Full Changelog: Shopify/rubocop-sorbet@v0.8.2...v0.8.3

v0.8.2

What's Changed

🛠 Other Changes

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

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

... (truncated)

Commits
  • 2b744f9 Bump version to v0.8.3
  • d7fab34 Merge pull request #227 from Shopify/remove-outdated-cop-from-config
  • 44d9e19 Remove Sorbet/OneAncestorPerLine cop from config/rbi.yml
  • 65b8215 Bump version to v0.8.2
  • 95d8d33 Merge pull request #225 from Shopify/emily/t-enum-comparable-cop
  • 85fcce0 Regenerate cop documentation
  • af86285 Introduce ForbidComparableTEnum cop
  • 603bdea Refactor MultipleTEnumValues cop to use TEnum mixin
  • 9d093e0 Extract shared T::Enum cop logic into a mixin
  • 2cfb6cc Merge pull request #206 from Shopify/deprecate-one-ancestor-per-line
  • Additional commits viewable in compare view

Updates stackprof from 0.2.25 to 0.2.26

Commits
  • ebdd3af bumping version
  • bd885f9 Merge pull request #222 from casperisfine/typed-data
  • aaeef71 Migrate to the TypedData API
  • 91d12e7 Merge pull request #219 from casperisfine/yjit-3.3-postponed-jbos
  • c1e71bd Fix compatibility with newer minitest
  • c771fd4 Don't use postponed jobs on Ruby 3.3+YJIT
  • 726a172 Merge pull request #214 from tmm1/fix-gc-times
  • 329e57b Fix GC profiling timing
  • 51b71bf Merge pull request #213 from tmm1/raw-line-numbers
  • 03369b9 Add raw line numbers for raw mode
  • Additional commits viewable in compare view

Updates turbo_tests from 2.2.0 to 2.2.3

Release notes

Sourced from turbo_tests's releases.

v2.2.3

What's Changed

Full Changelog: serpapi/turbo_tests@v2.2.2...v2.2.3

v2.2.2

What's Changed

New Contributors

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

v2.2.1

What's Changed

New Contributors

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

Commits
  • bb814e1 Merge pull request #54 from serpapi/remove-json-gem-explicit-dependency
  • ddf5fbd Bump version to 2.2.3
  • 4f1cc37 Merge branch 'master' of github.com:serpapi/turbo_tests into remove-json-gem-...
  • ced6eb7 Revert "Merge pull request #49 from lcmen/fix-hash-extensions-for-latest-json"
  • 876a33d Merge pull request #50 from deivid-rodriguez/windows-support
  • 1f714bf Merge remote-tracking branch 'origin/master' into windows-support
  • 6ada9df Merge pull request #53 from javierjulio/patch-1
  • a3220a1 Remove ostruct require
  • 468ac62 Replace OpenStruct with Struct
  • 1fa426c Bump version to 2.2.2
  • Additional commits viewable in compare view

Updates webmock from 3.19.1 to 3.23.1

Changelog

Sourced from webmock's changelog.

3.23.1

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.

... (truncated)

Commits
  • 1b23927 Added Ruby 3.3 to the list of supported Ruby versions in README
  • 13b8a28 Version 3.23.1
  • 0092f5d Merge pull request #1056 from IFTTT/master
  • 6cbfed0 Much simpler
  • 54519b2 Use Async::Socket if is present
  • 83b6ec7 Update version.rb
  • 001f15f Use single-quotes
  • 39a4c5c Replace Async::IO::Socket usage with stdlib Socket for async-http adapter to ...
  • fc6a2ab Version 3.23.0
  • 43717a5 Fixed CI badge.
  • 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 dev-dependencies group with 10 updates in the /updater directory:

| 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.64.1` |
| [rubocop-performance](https://github.com/rubocop/rubocop-performance) | `1.19.1` | `1.21.0` |
| [rubocop-sorbet](https://github.com/shopify/rubocop-sorbet) | `0.7.6` | `0.8.3` |
| [stackprof](https://github.com/tmm1/stackprof) | `0.2.25` | `0.2.26` |
| [turbo_tests](https://github.com/serpapi/turbo_tests) | `2.2.0` | `2.2.3` |
| [webmock](https://github.com/bblimke/webmock) | `3.19.1` | `3.23.1` |



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.64.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.64.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-sorbet` from 0.7.6 to 0.8.3
- [Release notes](https://github.com/shopify/rubocop-sorbet/releases)
- [Commits](Shopify/rubocop-sorbet@v0.7.6...v0.8.3)

Updates `stackprof` from 0.2.25 to 0.2.26
- [Changelog](https://github.com/tmm1/stackprof/blob/master/CHANGELOG.md)
- [Commits](tmm1/stackprof@v0.2.25...v0.2.26)

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

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

---
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-sorbet
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: stackprof
  dependency-type: direct:development
  update-type: version-update:semver-patch
  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] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file ruby Pull requests that update Ruby code labels Jun 2, 2024
Copy link
Author

dependabot bot commented on behalf of github Jun 16, 2024

Superseded by #138.

@dependabot dependabot bot closed this Jun 16, 2024
@dependabot dependabot bot deleted the dependabot/bundler/updater/dev-dependencies-13848c0bcb branch June 16, 2024 16:52
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