Skip to content

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

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

Merged
merged 1 commit into from
Aug 4, 2025

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 4, 2025

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

Bumps the ruby group with 5 updates:

| Package | From | To |
| --- | --- | --- |
| [html2rss](https://github.com/html2rss/html2rss) | ``9ed4ec4`` | ``8bddc59`` |
| [html2rss-configs](https://github.com/html2rss/html2rss-configs) | ``15408d8`` | ``65cf54c`` |
| [rubocop](https://github.com/rubocop/rubocop) | `1.79.0` | `1.79.1` |
| [mime-types-data](https://github.com/mime-types/mime-types-data) | `3.2025.0722` | `3.2025.0729` |
| [regexp_parser](https://github.com/ammar/regexp_parser) | `2.10.0` | `2.11.0` |


Updates `html2rss` from `9ed4ec4` to `8bddc59`
- [Release notes](https://github.com/html2rss/html2rss/releases)
- [Commits](html2rss/html2rss@9ed4ec4...8bddc59)

Updates `html2rss-configs` from `15408d8` to `65cf54c`
- [Commits](html2rss/html2rss-configs@15408d8...65cf54c)

Updates `rubocop` from 1.79.0 to 1.79.1
- [Release notes](https://github.com/rubocop/rubocop/releases)
- [Changelog](https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md)
- [Commits](rubocop/rubocop@v1.79.0...v1.79.1)

Updates `mime-types-data` from 3.2025.0722 to 3.2025.0729
- [Changelog](https://github.com/mime-types/mime-types-data/blob/main/CHANGELOG.md)
- [Commits](mime-types/mime-types-data@v3.2025.0722...v3.2025.0729)

Updates `regexp_parser` from 2.10.0 to 2.11.0
- [Changelog](https://github.com/ammar/regexp_parser/blob/master/CHANGELOG.md)
- [Commits](ammar/regexp_parser@v2.10.0...v2.11.0)

---
updated-dependencies:
- dependency-name: html2rss
  dependency-version: 8bddc59e845adb45861b89f21d95e7f5595b3813
  dependency-type: direct:production
  dependency-group: ruby
- dependency-name: html2rss-configs
  dependency-version: 65cf54c8b5c5516cfb78f812a4745771052fcf9a
  dependency-type: direct:production
  dependency-group: ruby
- dependency-name: rubocop
  dependency-version: 1.79.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: ruby
- dependency-name: mime-types-data
  dependency-version: 3.2025.0729
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: ruby
- dependency-name: regexp_parser
  dependency-version: 2.11.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: ruby
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file ruby Pull requests that update Ruby code labels Aug 4, 2025
mergify bot added a commit that referenced this pull request Aug 4, 2025
@mergify mergify bot merged commit 1a2c995 into main Aug 4, 2025
6 checks passed
@mergify mergify bot deleted the dependabot/bundler/ruby-9595303d21 branch August 4, 2025 10:35
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
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy