Starkast / wikimum

:sparkles: Starkast wiki
https://starkast.wiki/
MIT License
4 stars 1 forks source link

Bump minitest from 5.24.0 to 5.24.1 #648

Closed dependabot[bot] closed 4 months ago

dependabot[bot] commented 4 months ago

Bumps minitest from 5.24.0 to 5.24.1.

Changelog

Sourced from minitest's changelog.

=== 5.24.1 / 2024-06-29

  • 1 bug fix:

    • Fix the error message when an extension is invalid value. (y-yagi)
Commits
  • 15c7418 Branching minitest to version 5.24.1
  • 8dc42bf - Fix the error message when an extension is invalid value. (y-yagi)
  • See full diff in compare view


Dependabot compatibility score

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 ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
github-actions[bot] commented 4 months ago

Diff URLs

github-actions[bot] commented 4 months ago

gem compare minitest 5.24.0 5.24.1

````ruby Compared versions: ["5.24.0", "5.24.1"] DIFFERENT date: 5.24.0: 2024-06-19 00:00:00 UTC 5.24.1: 2024-06-29 00:00:00 UTC DIFFERENT rubygems_version: 5.24.0: 3.5.11 5.24.1: 3.5.14 DIFFERENT version: 5.24.0: 5.24.0 5.24.1: 5.24.1 DIFFERENT files: 5.24.0->5.24.1: * Changed: lib/minitest.rb +2/-2 ````
github-actions[bot] commented 4 months ago

gem compare --diff minitest 5.24.0 5.24.1

````ruby Compared versions: ["5.24.0", "5.24.1"] DIFFERENT files: 5.24.0->5.24.1: * Changed: lib/minitest.rb --- /tmp/d20240701-1836-6jl7q0/minitest-5.24.0/lib/minitest.rb 2024-07-01 02:28:33.873686256 +0000 +++ /tmp/d20240701-1836-6jl7q0/minitest-5.24.1/lib/minitest.rb 2024-07-01 02:28:33.881686243 +0000 @@ -138 +138 @@ - raise ArgumentError, "blahblah %p" % [mod_or_meth] + raise ArgumentError, "plugin is %p, but it must be a symbol, string or module" % [mod_or_meth] @@ -218 +218 @@ - raise ArgumentError, "blahblah %p" % [mod_or_meth] + raise ArgumentError, "plugin is %p, but it must be a symbol, string or module" % [mod_or_meth] ````