Skip to content

chore(deps): bump the ruby group with 7 updates #920

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
Jul 28, 2025

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jul 28, 2025

Bumps the ruby group with 7 updates:

Package From To
html2rss-configs de1958d 15408d8
rubocop 1.78.0 1.79.0
faraday 2.13.2 2.13.4
json 2.13.0 2.13.2
mime-types-data 3.2025.0715 3.2025.0722
parser 3.3.8.0 3.3.9.0
rouge 4.5.2 4.6.0

Updates html2rss-configs from de1958d to 15408d8

Commits

Updates rubocop from 1.78.0 to 1.79.0

Release notes

Sourced from rubocop's releases.

RuboCop v1.79.0

New features

Bug fixes

  • #14373: Fix an error for Style/ParallelAssignment when a lambda with parallel assignment is used on the RHS. (@​koic)
  • #14370: Fix comment duplication bug in Style/AccessorGrouping separated autocorrect. (@​r7kamura)
  • #14377: Fix a false positive for Lint/UselessAssignment when the assignment is inside a loop body. (@​5hun-s)
  • #14355: Fix a false negative for Style/RedundantParentheses when using parentheses around a rescue expression on a one-line. (@​koic)
  • #14354: Fix incorrect autocorrect for Style/AccessModifierDeclarations when using a grouped access modifier declaration. (@​girasquid)
  • #14367: Fix an incorrect autocorrect for Style/SingleLineMethods when defining a single-line singleton method. (@​koic)
  • #14344: Fix incorrect autocorrect for Style/SingleLineMethods when a single-line method definition contains a modifier. (@​koic)
  • #14350: Fix Naming/MethodName cop false positives with define_method and operator names. (@​viralpraxis)
  • #14333: Fix Naming/PredicateMethod ignoring the implicit nil from missing else branches. (@​earlopain)
  • #14356: Fix Style/ItBlockParameter cop error on always style and missing block body. (@​viralpraxis)
  • #14362: Update Lint/RequireRangeParentheses to not register false positives when range elements span multiple lines. (@​dvandersluis)
  • #14309: Update Style/SoleNestedConditional to properly correct assignments within and. (@​dvandersluis)

Changes

  • #14358: Add tsort gem to runtime dependency for Ruby 3.5-dev. (@​koic)
  • #14322: Expand the scope of Style/ItAssignment to consider all local variable and method parameter names. (@​dvandersluis)
  • #14378: Change Layout/SpaceAroundKeyword to offend for missing whitespace between return and opening parenthesis. (@​lovro-bikic)
  • #14360: Make Layout/SpaceAroundOperators aware of alternative and as pattern matchings. (@​koic)
  • #14375: Make Lint/RedundantSafeNavigation aware of builtin convert methods to_s, to_i, to_f, to_a, and to_h. (@​koic)
  • #13835: Add InferNonNilReceiver config to Lint/RedundantSafeNavigation to check previous code paths if the receiver is non-nil. (@​fatkodima)
  • #14381: Offend array1.any? { |elem| array2.member?(elem) } and array1.none? { |elem| array2.member?(elem) } in Style/ArrayIntersect. (@​lovro-bikic)
Changelog

Sourced from rubocop's changelog.

1.79.0 (2025-07-24)

New features

Bug fixes

  • #14373: Fix an error for Style/ParallelAssignment when a lambda with parallel assignment is used on the RHS. ([@​koic][])
  • #14370: Fix comment duplication bug in Style/AccessorGrouping separated autocorrect. ([@​r7kamura][])
  • #14377: Fix a false positive for Lint/UselessAssignment when the assignment is inside a loop body. ([@​5hun-s][])
  • #14355: Fix a false negative for Style/RedundantParentheses when using parentheses around a rescue expression on a one-line. ([@​koic][])
  • #14354: Fix incorrect autocorrect for Style/AccessModifierDeclarations when using a grouped access modifier declaration. ([@​girasquid][])
  • #14367: Fix an incorrect autocorrect for Style/SingleLineMethods when defining a single-line singleton method. ([@​koic][])
  • #14344: Fix incorrect autocorrect for Style/SingleLineMethods when a single-line method definition contains a modifier. ([@​koic][])
  • #14350: Fix Naming/MethodName cop false positives with define_method and operator names. ([@​viralpraxis][])
  • #14333: Fix Naming/PredicateMethod ignoring the implicit nil from missing else branches. ([@​earlopain][])
  • #14356: Fix Style/ItBlockParameter cop error on always style and missing block body. ([@​viralpraxis][])
  • #14362: Update Lint/RequireRangeParentheses to not register false positives when range elements span multiple lines. ([@​dvandersluis][])
  • #14309: Update Style/SoleNestedConditional to properly correct assignments within and. ([@​dvandersluis][])

Changes

  • #14358: Add tsort gem to runtime dependency for Ruby 3.5-dev. ([@​koic][])
  • #14322: Expand the scope of Style/ItAssignment to consider all local variable and method parameter names. ([@​dvandersluis][])
  • #14378: Change Layout/SpaceAroundKeyword to offend for missing whitespace between return and opening parenthesis. ([@​lovro-bikic][])
  • #14360: Make Layout/SpaceAroundOperators aware of alternative and as pattern matchings. ([@​koic][])
  • #14375: Make Lint/RedundantSafeNavigation aware of builtin convert methods to_s, to_i, to_f, to_a, and to_h. ([@​koic][])
  • #13835: Add InferNonNilReceiver config to Lint/RedundantSafeNavigation to check previous code paths if the receiver is non-nil. ([@​fatkodima][])
  • #14381: Offend array1.any? { |elem| array2.member?(elem) } and array1.none? { |elem| array2.member?(elem) } in Style/ArrayIntersect. ([@​lovro-bikic][])
Commits
  • 1c543c8 Cut 1.79
  • 966ece8 Update Changelog
  • 71350c6 Register offense for Array#any? and Array#none? blocks in Style/ArrayIntersec...
  • e92b13a Tweak autocorrect code for InternalAffairs/NodeTypeGroup
  • 6c522f8 Fix a typo
  • d4809c1 Change Layout/SpaceAroundKeyword to offend for missing whitespace between ret...
  • 2013dd6 Merge pull request #14377 from 5hun-s/fix_false_negative_for_lint_useless_ass...
  • bfe8ff3 Fix a false positive for Lint/UselessAssignment
  • 57a4580 Merge pull request #14376 from viralpraxis/fix-14375-changelog-entry
  • a4cd639 Follow-up to #14375: fix changelog entry
  • Additional commits viewable in compare view

Updates faraday from 2.13.2 to 2.13.4

Release notes

Sourced from faraday's releases.

v2.13.4

What's Changed

Full Changelog: lostisland/faraday@v2.13.3...v2.13.4

v2.13.3

What's Changed

Full Changelog: lostisland/faraday@v2.13.2...v2.13.3

Commits

Updates json from 2.13.0 to 2.13.2

Release notes

Sourced from json's releases.

v2.13.2

What's Changed

  • Improve duplicate key warning and errors to include the key name and point to the right caller.

Full Changelog: ruby/json@v2.13.1...v2.13.2

v2.13.1

What's Changed

  • Fix support for older compilers without __builtin_cpu_supports.

Full Changelog: ruby/json@v2.13.0...v2.13.1

Changelog

Sourced from json's changelog.

2025-07-28 (2.13.2)

  • Improve duplicate key warning and errors to include the key name and point to the right caller.

2025-07-24 (2.13.1)

  • Fix support for older compilers without __builtin_cpu_supports.
Commits
  • 9e3efbf Release 2.13.2
  • 132049b Improve deprecation warning location detection
  • db4c428 Merge pull request #832 from byroot/duplicated-key-error-message-2
  • cd51557 Fix duplicated key warning location
  • bea97e0 Merge pull request #831 from byroot/duplicated-key-error-message
  • e3de4cc Improve duplicate key warning and errors to include the key name
  • 6d29d75 Merge pull request #830 from nobu/indent
  • 1988a3a Keep indentation consistent across functions
  • 17dd7b6 Merge pull request #829 from nobu/static-linked-ext
  • 020693b Functions defined in headers should be static inline
  • Additional commits viewable in compare view

Updates mime-types-data from 3.2025.0715 to 3.2025.0722

Changelog

Sourced from mime-types-data's changelog.

3.2025.0722 / 2025-07-22

  • 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.
Commits
  • a20c527 chore: Update workflows
  • 28d9c46 Update mime-types-data 3.2025.0722 / 2025-07-22
  • 3373008 deps: Bump astral-sh/setup-uv from 6.3.1 to 6.4.1
  • 8ee8f6f deps: Bump ruby/setup-ruby from 1.245.0 to 1.247.0
  • See full diff in compare view

Updates parser from 3.3.8.0 to 3.3.9.0

Changelog

Sourced from parser's changelog.

v3.3.9.0 (2025-07-25)

API modifications:

  • Bump maintenance branches to 3.3.9 (#1080) (Koichi ITO)
  • Bump maintenance branches to 3.2.9 (#1079) (Koichi ITO)

v3.3.7.5 (2025-04-14)

API modifications:

  • Bump maintenance branches to 3.3.8 (#1077) (Koichi ITO)
  • YARD docs for Parser::CurrentRuby and Parser::Base#version (#1076) (Vince Broz)

v3.3.7.4 (2025-03-31)

Bugs fixed:

  • lexer-strings.rb: Avoid an exception on utf8 surrogate pair codepoints (#1051) (Earlopain)
  • builder.rb: emit kwargs node for indexasgn when opted in (#1053) (Earlopain)
  • builder.rb: correctly handle ... forwarding to super with explicit block (#1049) (Earlopain)
  • numbered parameters are valid for pattern matching pinning (#1060) (Earlopain)

v3.3.7.3 (2025-03-26)

API modifications:

  • Bump maintenance branches to 3.2.8 and 3.1.7 (#1074) (Koichi ITO)

v3.3.7.2 (2025-03-20)

Features implemented:

  • add prism-specific node types (#1071) (Earlopain)

Bugs fixed:

  • builder.rb: fix hash value omission considering some local vars as constants (#1064) (Earlopain)

v3.3.7.1 (2025-02-05)

API modifications:

  • parser/current: add -dev prefix to 3.4 branch (#1067) (Ilya Bylich)
  • parser/current: bump 3.2 branch to 3.2.7 (#1066) (Ilya Bylich)

v3.3.7.0 (2025-01-16)

API modifications:

  • Bump maintenance branches to 3.3.7 (#1061) (Koichi ITO)

... (truncated)

Commits

Updates rouge from 4.5.2 to 4.6.0

Release notes

Sourced from rouge's releases.

v4.6.0

This release introduces support for the Bicep language and enhances several existing lexers. We've added Ada 2022 features including the parallel keyword and improved syntax for arrays. The Python lexer now supports the match and case keywords and has been updated with Python 3 builtin keywords, functions, and exceptions. C# lexer improvements include Unicode character support and a refactoring of keywords to class methods. The TOML lexer now properly handles inline tables in arrays. We've also enhanced file detection with Docker file name patterns, Terraform *.tfvars files, and improved disambiguation between Objective-C and Mathematica lexers. Additionally, Ruby 3.4 has been added to our CI build process. Thanks to all our contributors for their valuable work on making Rouge better!

Full Changelog: rouge-ruby/rouge@v4.5.2...v4.6.0

Changelog

Sourced from rouge's changelog.

version 4.6.0: 2025-07-16

Comparison with the previous version

  • General
    • Add Ruby 3.4 to CI build (#2127 by Tan Le)
    • Improve Objective-C vs Mathematica lexer disambiguation (#2103 by objc)
  • Ada Lexer
    • Add parallel keyword, square brackets and @ for Ada 2022 (#2117 by Maxim Reznik)
  • Bicep Lexer (NEW)
    • Add a Lexer for Bicep language (#1937 by Xavier Mignot)
    • Add bicep to the list of supported languages (#2137 by Tan Le)
    • Fix code indentation on Bicep lexer (#2138 by Tan Le)
  • C# Lexer
    • Support Unicode characters in C# lexer (#2136 by Tan Le)
    • Move keywords to class methods in CSharp lexer (#2139 by Tan Le)
  • Docker Lexer
    • Update Docker file name patterns (#2133 by Oscar Alberto Tovar)
  • Python Lexer
    • Support match and case keywords in Python (#2140 by Tan Le)
    • Update Python builtin keywords, functions, and exceptions to Python version 3 (#2109 by Joris Clement)
  • Terraform Lexer
    • Autodetect *.tfvars files as Terraform (#2146 by Oscar Alberto Tovar)
  • TOML Lexer
    • toml: support inline tables in arrays (#2065 by ash)
Commits

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 7 updates:

| Package | From | To |
| --- | --- | --- |
| [html2rss-configs](https://github.com/html2rss/html2rss-configs) | ``de1958d`` | ``15408d8`` |
| [rubocop](https://github.com/rubocop/rubocop) | `1.78.0` | `1.79.0` |
| [faraday](https://github.com/lostisland/faraday) | `2.13.2` | `2.13.4` |
| [json](https://github.com/ruby/json) | `2.13.0` | `2.13.2` |
| [mime-types-data](https://github.com/mime-types/mime-types-data) | `3.2025.0715` | `3.2025.0722` |
| [parser](https://github.com/whitequark/parser) | `3.3.8.0` | `3.3.9.0` |
| [rouge](https://github.com/rouge-ruby/rouge) | `4.5.2` | `4.6.0` |


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

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

Updates `faraday` from 2.13.2 to 2.13.4
- [Release notes](https://github.com/lostisland/faraday/releases)
- [Changelog](https://github.com/lostisland/faraday/blob/main/CHANGELOG.md)
- [Commits](lostisland/faraday@v2.13.2...v2.13.4)

Updates `json` from 2.13.0 to 2.13.2
- [Release notes](https://github.com/ruby/json/releases)
- [Changelog](https://github.com/ruby/json/blob/master/CHANGES.md)
- [Commits](ruby/json@v2.13.0...v2.13.2)

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

Updates `parser` from 3.3.8.0 to 3.3.9.0
- [Changelog](https://github.com/whitequark/parser/blob/master/CHANGELOG.md)
- [Commits](whitequark/parser@v3.3.8.0...v3.3.9.0)

Updates `rouge` from 4.5.2 to 4.6.0
- [Release notes](https://github.com/rouge-ruby/rouge/releases)
- [Changelog](https://github.com/rouge-ruby/rouge/blob/master/CHANGELOG.md)
- [Commits](rouge-ruby/rouge@v4.5.2...v4.6.0)

---
updated-dependencies:
- dependency-name: html2rss-configs
  dependency-version: 15408d82b72c800d746297eaa26e991a8cbcda3b
  dependency-type: direct:production
  dependency-group: ruby
- dependency-name: rubocop
  dependency-version: 1.79.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: ruby
- dependency-name: faraday
  dependency-version: 2.13.4
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: ruby
- dependency-name: json
  dependency-version: 2.13.2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: ruby
- dependency-name: mime-types-data
  dependency-version: 3.2025.0722
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: ruby
- dependency-name: parser
  dependency-version: 3.3.9.0
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: ruby
- dependency-name: rouge
  dependency-version: 4.6.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 Jul 28, 2025
mergify bot added a commit that referenced this pull request Jul 28, 2025
@mergify mergify bot merged commit 13c9143 into main Jul 28, 2025
5 checks passed
@mergify mergify bot deleted the dependabot/bundler/ruby-5608b68903 branch July 28, 2025 11:03
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