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 patch-and-minor-dependencies group with 4 updates #119

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 9, 2024

Bumps the patch-and-minor-dependencies group with 4 updates: minitest, rubocop, webmock and httpx.

Updates minitest from 5.21.2 to 5.22.2

Changelog

Sourced from minitest's changelog.

=== 5.22.2 / 2024-02-07

  • 1 bug fix:

    • Third time's a charm? Remember: 'ensure' is almost always the wrong way to go (for results... it's great for cleaning up).

=== 5.22.1 / 2024-02-06

  • 1 bug fix:

    • Don't exit non-zero if no tests ran and no filter (aka, the test file is empty). (I'm starting to think the exit 1 thing for @​tenderlove was a mistake...)

=== 5.22.0 / 2024-02-05

  • 1 minor enhancement:

    • Added "did you mean" output if your --name filter matches nothing. (tenderlove)
  • 2 bug fixes:

    • Big cleanup of test filtering. Much prettier / more functional.
    • Fix situation where Assertion#location can't find the location. (pftg)
Commits
  • d00cc0d prepped for release
  • 6cf8dce - Third time's a charm? Remember: 'ensure' is almost always the wrong way to go.
  • 319036f prepped for release
  • f92f48d - Don't exit non-zero if no tests ran and no filter (aka, the test file is em...
  • 6138c39 prepped for release
  • ebb468c + Added "did you mean" output if your --name filter matches nothing. (tenderl...
  • ef83965 - Big cleanup of test filtering. Much prettier / more functional.
  • 194a70a - Fix situation where Assertion#location can't find the location. (pftg)
  • See full diff in compare view

Updates rubocop from 1.60.2 to 1.62.0

Release notes

Sourced from rubocop's releases.

RuboCop 1.62

Note: This is the first RuboCop release that features (experimental) support for using Prism instead of the parser gem. Check out the docs for more details.

See also this article for additional context.

New features

Bug fixes

  • #12746: Fix a false positive for Lint/ToEnumArguments when enumerator is created for another method in no arguments method definition. (@​koic)
  • #12726: Fix a false positive for Style/RedundantLineContinuation when using line concatenation and calling a method with keyword arguments without parentheses. (@​koic)
  • #12738: Fix an error for Style/Encoding when magic encoding with mixed case present. (@​koic)
  • #12732: Fix error determining target Ruby when gemspec required_ruby_version is read from another file. (@​davidrunger)
  • #12736: Fix invalid autocorrect in Layout/SpaceInsideHashLiteralBraces. (@​bquorning)
  • #12667: Don't load excluded configuration. (@​jonas054)

RuboCop 1.61

New features

  • #12682: Add --editor-mode CLI option. (@​koic)
  • #12657: Support AutoCorrect: contextual option for LSP. (@​koic)
  • #12273: Make OffenseCountFormatter display autocorrection information. (@​koic)
  • #12679: Publish RuboCop::LSP.enable API to enable LSP mode. (@​koic)
  • #12699: Support searching for .rubocop.yml and rubocop/config.yml in compliance with dot-config. (@​koic)

Bug fixes

  • #12720: Fix a false positive for Style/ArgumentsForwarding when using block arg forwarding to within block with Ruby 3.3.0. (@​koic)
  • #12714: Fix an error for Gemspec/RequiredRubyVersion when required_ruby_version is specified with Gem::Requirement.new and is higher than TargetRubyVersion. (@​koic)
  • #12690: Fix an error for Style/CaseLikeIf when using == with literal and using ternary operator. (@​koic)
  • #12668: Fix an incorrect autocorrect for Lint/EmptyConditionalBody when missing if body with conditional else body. (@​koic)
  • #12683: Fix an incorrect autocorrect for Style/MapCompactWithConditionalBlock when using guard clause with next implicitly nil. (@​koic)
  • #12693: Fix an incorrect autocorrect for Style/ObjectThen when using yield_self without receiver. (@​koic)
  • #12646: Fix --auto-gen-config bug for Layout/SpaceBeforeBlockBraces. (@​jonas054)
  • #12717: Fix regexp for inline disable comments in Style/CommentedKeyword. (@​jonas054)
  • #12695: Fix bug in Include from inherited file in a parent directory. (@​jonas054)
  • #12656: Fix an error for Layout/RedundantLineBreak when using index access call chained on multiline hash literal. (@​koic)
  • #12691: Fix an error for Style/MultilineTernaryOperator when nesting multiline ternary operators. (@​koic)
  • #12707: Fix false negative for Style/RedundantAssignment when using pattern matching. (@​koic)
  • #12674: Fix false negatives for Style/RedundantReturn when using pattern matching. (@​koic)
  • #12673: Fix false negatives for Lint/RedundantSafeNavigation when using safe navigation operator for literal receiver. (@​koic)
  • #12719: Fix false negatives for Style/ArgumentsForwarding when using forwardable block arguments with Ruby 3.2+. (@​koic)

... (truncated)

Changelog

Sourced from rubocop's changelog.

1.62.0 (2024-03-06)

New features

  • #12600: Support Prism as a Ruby parser (experimental). ([@​koic][])
  • #12725: Support TargetRubyVersion 3.4 (experimental). ([@​koic][])

Bug fixes

  • #12746: Fix a false positive for Lint/ToEnumArguments when enumerator is created for another method in no arguments method definition. ([@​koic][])
  • #12726: Fix a false positive for Style/RedundantLineContinuation when using line concatenation and calling a method with keyword arguments without parentheses. ([@​koic][])
  • #12738: Fix an error for Style/Encoding when magic encoding with mixed case present. ([@​koic][])
  • #12732: Fix error determining target Ruby when gemspec required_ruby_version is read from another file. ([@​davidrunger][])
  • #12736: Fix invalid autocorrect in Layout/SpaceInsideHashLiteralBraces. ([@​bquorning][])
  • #12667: Don't load excluded configuration. ([@​jonas054][])

1.61.0 (2024-02-29)

New features

  • #12682: Add --editor-mode CLI option. ([@​koic][])
  • #12657: Support AutoCorrect: contextual option for LSP. ([@​koic][])
  • #12273: Make OffenseCountFormatter display autocorrection information. ([@​koic][])
  • #12679: Publish RuboCop::LSP.enable API to enable LSP mode. ([@​koic][])
  • #12699: Support searching for .rubocop.yml and rubocop/config.yml in compliance with dot-config. ([@​koic][])

Bug fixes

  • #12720: Fix a false positive for Style/ArgumentsForwarding when using block arg forwarding to within block with Ruby 3.3.0. ([@​koic][])
  • #12714: Fix an error for Gemspec/RequiredRubyVersion when required_ruby_version is specified with Gem::Requirement.new and is higher than TargetRubyVersion. ([@​koic][])
  • #12690: Fix an error for Style/CaseLikeIf when using == with literal and using ternary operator. ([@​koic][])
  • #12668: Fix an incorrect autocorrect for Lint/EmptyConditionalBody when missing if body with conditional else body. ([@​koic][])
  • #12683: Fix an incorrect autocorrect for Style/MapCompactWithConditionalBlock when using guard clause with next implicitly nil. ([@​koic][])
  • #12693: Fix an incorrect autocorrect for Style/ObjectThen when using yield_self without receiver. ([@​koic][])
  • #12646: Fix --auto-gen-config bug for Layout/SpaceBeforeBlockBraces. ([@​jonas054][])
  • #12717: Fix regexp for inline disable comments in Style/CommentedKeyword. ([@​jonas054][])
  • #12695: Fix bug in Include from inherited file in a parent directory. ([@​jonas054][])
  • #12656: Fix an error for Layout/RedundantLineBreak when using index access call chained on multiline hash literal. ([@​koic][])
  • #12691: Fix an error for Style/MultilineTernaryOperator when nesting multiline ternary operators. ([@​koic][])
  • #12707: Fix false negative for Style/RedundantAssignment when using pattern matching. ([@​koic][])
  • #12674: Fix false negatives for Style/RedundantReturn when using pattern matching. ([@​koic][])
  • #12673: Fix false negatives for Lint/RedundantSafeNavigation when using safe navigation operator for literal receiver. ([@​koic][])
  • #12719: Fix false negatives for Style/ArgumentsForwarding when using forwardable block arguments with Ruby 3.2+. ([@​koic][])
  • #12687: Fix a false positive for Lint/Void when each block with conditional expressions that has multiple statements. ([@​koic][])
  • #12649: Fix false positives for Style/InverseMethods when using relational comparison operator with safe navigation. ([@​koic][])
  • #12711: Handle implicit receivers in Style/InvertibleUnlessCondition. ([@​sambostock][])
  • #12648: Fix numblock regressions in omit_parentheses Style/MethodCallWithArgsParentheses. ([@​gsamokovarov][])

Changes

... (truncated)

Commits
  • 92785dd Cut 1.62
  • 2d882c3 Update Changelog
  • c0582a4 [Fix #12746] Fix a false positive for Lint/ToEnumArguments
  • dea3b76 Bump rubocop-rspec from ~> 2.27.0 to ~> 2.27.1
  • 5026393 Call .value to get gemspec required_ruby_version only if str_type?
  • 07cad75 [Fix #12740] Tweak annotation pattern for expect_offense
  • 859f6fd Fix missing assertions in RuboCop::TargetRuby specs
  • 6674cc8 [Fix #12738] Fix an error for Style/Encoding
  • 1a73d64 Refactor TargetFinder
  • 664ba3d [Fix #12667] Avoid loading excluded configuration
  • Additional commits viewable 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

Updates httpx from 1.2.2 to 1.2.3

Commits
  • c444507 bump version to 1.2.3
  • b1146b9 Merge branch 'master' of gitlab.com:os85/httpx
  • 78d67cd wrong ruby engine cond
  • 2fbec7a Merge branch 'issue-296' into 'master'
  • fbfd173 disable ssh proxy tests for truffleruby as well
  • 3c914f7 remove unused var
  • ad14df6 Merge branch 'issue-287' into 'master'
  • cf43257 documenting delegated methods in Response
  • 06076fc Allow zero max retries
  • d5c9a51 Merge branch 'github-pr-41' into 'master'
  • 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 patch-and-minor-dependencies group with 4 updates: [minitest](https://github.com/minitest/minitest), [rubocop](https://github.com/rubocop/rubocop), [webmock](https://github.com/bblimke/webmock) and [httpx](https://gitlab.com/os85/httpx).


Updates `minitest` from 5.21.2 to 5.22.2
- [Changelog](https://github.com/minitest/minitest/blob/master/History.rdoc)
- [Commits](minitest/minitest@v5.21.2...v5.22.2)

Updates `rubocop` from 1.60.2 to 1.62.0
- [Release notes](https://github.com/rubocop/rubocop/releases)
- [Changelog](https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md)
- [Commits](rubocop/rubocop@v1.60.2...v1.62.0)

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)

Updates `httpx` from 1.2.2 to 1.2.3
- [Commits](https://gitlab.com/os85/httpx/compare/v1.2.2...v1.2.3)

---
updated-dependencies:
- dependency-name: minitest
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-and-minor-dependencies
- dependency-name: rubocop
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-and-minor-dependencies
- dependency-name: webmock
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-and-minor-dependencies
- dependency-name: httpx
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-and-minor-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Mar 9, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Mar 16, 2024

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Mar 16, 2024
@dependabot dependabot bot deleted the dependabot/bundler/patch-and-minor-dependencies-0ab6c880a0 branch March 16, 2024 10:36
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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant