Starkast / wikimum

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

Bump warning from 1.3.0 to 1.4.0 #635

Closed dependabot[bot] closed 3 months ago

dependabot[bot] commented 4 months ago

Bumps warning from 1.3.0 to 1.4.0.

Changelog

Sourced from warning's changelog.

=== 1.4.0 (2024-05-24)

  • Add support for :ignored_block as regexp argument to Warning.ignore (jeremyevans)

  • Support new warning format in Ruby 3.4 (jeremyevans)

Commits
  • 2f915b6 Bump version to 1.4.0
  • f1b697e Add support for :ignored_block warning on Ruby 3.4
  • 8ee6e8b Support new warning format in Ruby 3.4
  • c97469d Add Ruby 3.3 to CI and bump actions/checkout to v4
  • 5ecdabc Switch from hanna-nouveau to hanna
  • cc38db1 Move to actions/checkout@v3
  • e961d76 Add CI for Ruby 3.2
  • 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 warning 1.3.0 1.4.0

````ruby Compared versions: ["1.3.0", "1.4.0"] DIFFERENT date: 1.3.0: 2022-07-14 00:00:00 UTC 1.4.0: 2024-05-24 00:00:00 UTC DIFFERENT rubygems_version: 1.3.0: 3.3.7 1.4.0: 3.5.9 DIFFERENT version: 1.3.0: 1.3.0 1.4.0: 1.4.0 DIFFERENT files: 1.3.0->1.4.0: * Changed: CHANGELOG +6/-0 README.rdoc +1/-0 lib/warning.rb +6/-5 DIFFERENT extra_rdoc_files: 1.3.0->1.4.0: * Changed: README.rdoc +1/-0 CHANGELOG +6/-0 ````
github-actions[bot] commented 4 months ago

gem compare --diff warning 1.3.0 1.4.0

````ruby Compared versions: ["1.3.0", "1.4.0"] DIFFERENT files: 1.3.0->1.4.0: * Changed: CHANGELOG --- /tmp/d20240527-1895-cvb92b/warning-1.3.0/CHANGELOG 2024-05-27 02:37:13.330708706 +0000 +++ /tmp/d20240527-1895-cvb92b/warning-1.4.0/CHANGELOG 2024-05-27 02:37:13.330708706 +0000 @@ -0,0 +1,6 @@ +=== 1.4.0 (2024-05-24) + +* Add support for :ignored_block as regexp argument to Warning.ignore (jeremyevans) + +* Support new warning format in Ruby 3.4 (jeremyevans) + README.rdoc --- /tmp/d20240527-1895-cvb92b/warning-1.3.0/README.rdoc 2024-05-27 02:37:13.330708706 +0000 +++ /tmp/d20240527-1895-cvb92b/warning-1.4.0/README.rdoc 2024-05-27 02:37:13.334708711 +0000 @@ -33,0 +34 @@ +* :ignored_block lib/warning.rb --- /tmp/d20240527-1895-cvb92b/warning-1.3.0/lib/warning.rb 2024-05-27 02:37:13.330708706 +0000 +++ /tmp/d20240527-1895-cvb92b/warning-1.4.0/lib/warning.rb 2024-05-27 02:37:13.334708711 +0000 @@ -7,2 +7,2 @@ - ambiguous_slash: /: warning: ambiguous first argument; put parentheses or a space even after `\/' operator\n\z|: warning: ambiguity between regexp and two divisions: wrap regexp in parentheses or add a space after `\/' operator\n\z/, - arg_prefix: /: warning: `[&\*]' interpreted as argument prefix\n\z/, + ambiguous_slash: /: warning: ambiguous first argument; put parentheses or a space even after [`']\/' operator\n\z|: warning: ambiguity between regexp and two divisions: wrap regexp in parentheses or add a space after [`']\/' operator\n\z/, + arg_prefix: /: warning: [`'][&\*]' interpreted as argument prefix\n\z/, @@ -10,0 +11 @@ + ignored_block: /: warning: the block passed to '.+' defined at .+:\d+ may be ignored\n\z/, @@ -12 +13 @@ - missing_gvar: /: warning: global variable `\$.+' not initialized\n\z/, + missing_gvar: /: warning: global variable [`']\$.+' not initialized\n\z/, @@ -18 +19 @@ - keyword_separation: /: warning: (?:Using the last argument (?:for `.+' )?as keyword parameters is deprecated; maybe \*\* should be added to the call|Passing the keyword argument (?:for `.+' )?as the last hash parameter is deprecated|Splitting the last argument (?:for `.+' )?into positional and keyword parameters is deprecated|The called method (?:`.+' )?is defined here)\n\z/, + keyword_separation: /: warning: (?:Using the last argument (?:for [`'].+' )?as keyword parameters is deprecated; maybe \*\* should be added to the call|Passing the keyword argument (?:for [`'].+' )?as the last hash parameter is deprecated|Splitting the last argument (?:for [`'].+' )?into positional and keyword parameters is deprecated|The called method (?:[`'].+' )?is defined here)\n\z/, @@ -169 +170 @@ - # /global variable `\$\w+' not initialized/ => proc do |warning| + # /global variable [`']\$\w+' not initialized/ => proc do |warning| ````