An open index of dependabot pull requests across open source projects.

chore(deps): bump the ruby group with 5 updates

Open
Number: #923
Type: Pull Request
State: Open
Author: dependabot[bot] dependabot[bot]
Association: Contributor
Comments: 0
Created: August 04, 2025 at 10:33 AM UTC
(about 2 months ago)
Updated: August 04, 2025 at 10:33 AM UTC
(about 2 months ago)
Labels:
dependencies ruby
Description:

Bumps the ruby group with 5 updates:

Package From To
html2rss 9ed4ec4 8bddc59
html2rss-configs 15408d8 65cf54c
rubocop 1.79.0 1.79.1
mime-types-data 3.2025.0722 3.2025.0729
regexp_parser 2.10.0 2.11.0

Updates html2rss from 9ed4ec4 to 8bddc59

Commits

Updates html2rss-configs from 15408d8 to 65cf54c

Commits

Updates rubocop from 1.79.0 to 1.79.1

Release notes

Sourced from rubocop's releases.

RuboCop v1.79.1

Bug fixes

  • #14390: Fix wrong autocorrect for Style/ArgumentsForwarding when the method arguments contain *, ** or &, and the method call contains self as the first argument. (@​earlopain)
  • #14399: Fix false positives for Layout/EmptyLinesAfterModuleInclusion when prepend is used with block methods. (@​koic)
  • #14396: Fix a false positive for Style/RedundantParentheses when parentheses are used around a one-line rescue expression inside a ternary operator. (@​koic)
  • #14383: Fix false positives for Lint/UselessAssignment when duplicate assignments in if branch inside a loop. (@​koic)
  • #14394: Fix false positive for Lint/UselessAssignment with retry in rescue branch. (@​earlopain)
  • #14386: Fix false positives for Style/RedundantParentheses when parentheses are used around a one-line rescue expression inside array or hash literals. (@​koic)
  • #14395: Fix LSP handling of URI-encoded paths with spaces. (@​hakanensari)

Changes

Changelog

Sourced from rubocop's changelog.

1.79.1 (2025-07-31)

Bug fixes

  • #14390: Fix wrong autocorrect for Style/ArgumentsForwarding when the method arguments contain *, ** or &, and the method call contains self as the first argument. ([@​earlopain][])
  • #14399: Fix false positives for Layout/EmptyLinesAfterModuleInclusion when prepend is used with block methods. ([@​koic][])
  • #14396: Fix a false positive for Style/RedundantParentheses when parentheses are used around a one-line rescue expression inside a ternary operator. ([@​koic][])
  • #14383: Fix false positives for Lint/UselessAssignment when duplicate assignments in if branch inside a loop. ([@​koic][])
  • #14394: Fix false positive for Lint/UselessAssignment with retry in rescue branch. ([@​earlopain][])
  • #14386: Fix false positives for Style/RedundantParentheses when parentheses are used around a one-line rescue expression inside array or hash literals. ([@​koic][])
  • #14395: Fix LSP handling of URI-encoded paths with spaces. ([@​hakanensari][])

Changes

Commits
  • 5ecd375 Cut 1.79.1
  • 0b19d92 Tweak a couple of changelog entries
  • 300bc86 Update Changelog
  • 8e6be28 Add support for or nodes to Lint/LiteralAsCondition
  • 6adbb27 Merge pull request #14405 from viralpraxis/fix-naming-method-name-cop-spec-de...
  • 9682294 Fix Naming/MethodName cop spec descriptions
  • fc0e660 Merge pull request #14403 from viralpraxis/enhance-naming-method-name-to-hand...
  • 19f9c0b Enhance Naming/MethodName cop to detect offenses within alias and `alias_...
  • 9d262b1 Merge pull request #14400 from koic/fix_false_positive_for_layout_empty_lines...
  • 13c5050 [Fix #14399] Fix false positives for Layout/EmptyLinesAfterModuleInclusion
  • Additional commits viewable in compare view

Updates mime-types-data from 3.2025.0722 to 3.2025.0729

Changelog

Sourced from mime-types-data's changelog.

3.2025.0729 / 2025-07-29

  • Updated registry entries from the IANA [media registry][registry] and [provisional media registry][provisional], the [Apache httpd media registry][httpd], and the [Apache Tika media registry][tika] as of the release date.

  • Remove .doc from text/plain: The use of .doc for text/plain documents is mostly a holdover from VAX VMS where the default wasn't .txt but .doc. The world now thinks that .doc mostly means application/msword even though that format is obsolete by almost twenty years. Closes [ruby-mime-types#224][ruby-mime-types#224] with #191[pull-191].

  • Handle promoted and withdrawn provisional IANA media types. Closes #54[issue-54] with #192[pull-192].

    The logic is three relatively simple phases:

    1. When loading an existing registry grouping (such as types/application.yaml), we mark any type that is provisional as obsolete. This indicates that we consider any provisional type as potentially withdrawn (and therefore obsolete).
    2. When processing existing regular types, we clear both provisional and obsolete flags so that a type promoted from provisional is now a regular registry entry.
    3. After merging the current list of registry entries, we clear provisional if the type is marked both provisional and obsolete, indicating that the provisional type has been withdrawn.

    These heuristics match several types which have been promoted and withdrawn since the handling of provisional types was improved with #53[pull-53].

Commits
  • 8a86bff Update mime-types-data 3.2025.0729 / 2025-07-29
  • f72847a deps: Bump astral-sh/setup-uv from 6.4.1 to 6.4.3
  • 29fec61 deps: Bump ruby/setup-ruby from 1.247.0 to 1.253.0
  • e277d46 chore: Handle promoted and withdrawn provisional IANA media types
  • 65ed6e6 chore: Remove .doc from text/plain
  • See full diff in compare view

Updates regexp_parser from 2.10.0 to 2.11.0

Changelog

Sourced from regexp_parser's changelog.

[2.11.0] - 2025-08-03 - Janosch Müller

Added

  • a new token :escape, :utf8_hex and expression EscapeSequence::UTF8Hex
    • used for UTF-8 hex escapes, e.g. \xE2\x82\xAC representing U+20AC "€"

Fixed

  • detection of numeric backrefs > 9, e.g. ((((((((((foo))))))))))\10
    • these are only backrefs in Ruby if sufficient groups have been opened
    • they were previously always scanned as octal or literal escapes
Commits
  • 65c624d Release v2.11.0
  • 61bfa63 Update years [ci skip]
  • ed41743 Merge pull request #97 from ammar/fix-multidigit-backrefs
  • aabcfb4 Remove broken README badge [ci skip]
  • ecbedaa Fix scanning of multi-digit numerical backrefs
  • 0a852b5 Merge pull request #95 from ammar/add-utf8-hex
  • 355c6c3 Add utf8_hex token and expression ...
  • 20d70a7 Run rubocop with correct TargetRubyVersion ...
  • See full diff 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
Pull Request Statistics
Commits:
1
Files Changed:
1
Additions:
+5
Deletions:
-7
Package Dependencies
Package:
html2rss
Ecosystem:
rubygems
Version Change:
→ [html2rss-configs](https://github.com/html2rss/html2rss-configs)
Package:
``65cf54c``
Ecosystem:
rubygems
Version Change:
→ [rubocop](https://github.com/rubocop/rubocop)
Package:
`1.79.1`
Ecosystem:
rubygems
Version Change:
→ [mime-types-data](https://github.com/mime-types/mime-types-data)
Ecosystem:
rubygems
Version Change:
→ [regexp_parser](https://github.com/ammar/regexp_parser)
Technical Details
ID: 4534075
UUID: 2717483759
Node ID: PR_kwDOEGmOXM6h-YLv
Host: GitHub
Repository: html2rss/html2rss.github.io
Merge State: Unknown