Skip to content

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 12, 2025

Bumps the all group with 3 updates in the /Library/Homebrew directory: rubocop-performance, sorbet-static-and-runtime and rexml.

Updates rubocop-performance from 1.25.0 to 1.26.0

Release notes

Sourced from rubocop-performance's releases.

RuboCop Performance v1.26.0

Bug fixes

  • #444: Fix an incorrect autocorrect for Performance/BlockGivenWithExplicitBlock when using Naming/BlockForwarding's autocorrection together. (@​a-lavis)
  • #500: Mark Performance/MapCompact cop as unsafe. (@​jbpextra)
  • #498: Fix Performance/Count cop error on empty selector block. (@​viralpraxis)
  • #504: Fix autocorrection syntax error for Performance/Count with multiline calls. (@​lovro-bikic)

Changes

  • #512: Detect negated conditions like !foo.start_with('bar') && !foo.start_with('baz') with Performance/DoubleStartEndWith. (@​earlopain)
Changelog

Sourced from rubocop-performance's changelog.

1.26.0 (2025-09-06)

Bug fixes

  • #444: Fix an incorrect autocorrect for Performance/BlockGivenWithExplicitBlock when using Naming/BlockForwarding's autocorrection together. ([@​a-lavis][])
  • #500: Mark Performance/MapCompact cop as unsafe. ([@​jbpextra][])
  • #498: Fix Performance/Count cop error on empty selector block. ([@​viralpraxis][])
  • #504: Fix autocorrection syntax error for Performance/Count with multiline calls. ([@​lovro-bikic][])

Changes

  • #512: Detect negated conditions like !foo.start_with('bar') && !foo.start_with('baz') with Performance/DoubleStartEndWith. ([@​earlopain][])
Commits
  • 4e6eb01 Cut 1.26.0
  • b78119b Update Changelog
  • 75e8065 Fix typos
  • be32fec Merge pull request #514 from Earlopain/ci-jrbuy-10
  • 7615a37 Merge pull request #513 from Earlopain/sync-spellchecking
  • 1b82ee8 CI against the latest stable JRuby version
  • 2bfd0c6 Remove misspell from CI
  • 95b3559 Run codespell with bundle exec rake
  • c592668 Merge pull request #512 from Earlopain/start-end-negation
  • b789959 Detect negated conditions with Performance/DoubleStartEndWith
  • Additional commits viewable in compare view

Updates sorbet-static-and-runtime from 0.6.12479 to 0.6.12521

Release notes

Sourced from sorbet-static-and-runtime's releases.

sorbet 0.6.12520.20250911164710-0d4b17896

To use Sorbet add this line to your Gemfile:

gem 'sorbet', '0.6.12520', :group => :development
gem 'sorbet-runtime', '0.6.12520'

sorbet 0.6.12519.20250911164217-cb1153a27

To use Sorbet add this line to your Gemfile:

gem 'sorbet', '0.6.12519', :group => :development
gem 'sorbet-runtime', '0.6.12519'

sorbet 0.6.12518.20250911183904-210345573

To use Sorbet add this line to your Gemfile:

gem 'sorbet', '0.6.12518', :group => :development
gem 'sorbet-runtime', '0.6.12518'

sorbet 0.6.12517.20250911121015-84198ffc6

To use Sorbet add this line to your Gemfile:

gem 'sorbet', '0.6.12517', :group => :development
gem 'sorbet-runtime', '0.6.12517'

sorbet 0.6.12516.20250911105141-1adf08c8d

To use Sorbet add this line to your Gemfile:

gem 'sorbet', '0.6.12516', :group => :development
gem 'sorbet-runtime', '0.6.12516'

sorbet 0.6.12515.20250910170618-3c1fadb1a

To use Sorbet add this line to your Gemfile:

gem 'sorbet', '0.6.12515', :group => :development
gem 'sorbet-runtime', '0.6.12515'

sorbet 0.6.12514.20250910145757-19eca794f

To use Sorbet add this line to your Gemfile:

gem 'sorbet', '0.6.12514', :group => :development
gem 'sorbet-runtime', '0.6.12514'

sorbet 0.6.12513.20250910141805-40a577b2d

... (truncated)

Commits

Updates rexml from 3.4.2 to 3.4.4

Release notes

Sourced from rexml's releases.

REXML 3.4.4 - 2025-09-10

Improvement

  • Accept REXML::Document.new("") for backward compatibility
    • GH-296
    • GH-295
    • Patch by NAITOH Jun
    • Reported by Joe Rafaniello

Thanks

  • NAITOH Jun

  • Joe Rafaniello

REXML 3.4.3 - 2025-09-07

Improvement

  • Reject no root element XML as an invalid XML
    • GH-289
    • GH-291
    • Patch by NAITOH Jun
    • Reported by Sutou Kouhei

Fixes

  • Fixed an issue with IOSource#read_until when reaching the end of a file
    • GH-287
    • GH-288
    • Patch by NAITOH Jun
    • Reported by Jason Thomas

Thanks

  • NAITOH Jun

  • Sutou Kouhei

  • Jason Thomas

Changelog

Sourced from rexml's changelog.

3.4.4 - 2025-09-10 {#version-3-4-4}

Improvement

  • Accept REXML::Document.new("") for backward compatibility
    • GH-296
    • GH-295
    • Patch by NAITOH Jun
    • Reported by Joe Rafaniello

Thanks

  • NAITOH Jun

  • Joe Rafaniello

3.4.3 - 2025-09-07 {#version-3-4-3}

Improvement

  • Reject no root element XML as an invalid XML
    • GH-289
    • GH-291
    • Patch by NAITOH Jun
    • Reported by Sutou Kouhei

Fixes

  • Fixed an issue with IOSource#read_until when reaching the end of a file
    • GH-287
    • GH-288
    • Patch by NAITOH Jun
    • Reported by Jason Thomas

Thanks

  • NAITOH Jun

  • Sutou Kouhei

  • Jason Thomas

Commits
  • 4f32ea3 Add 3.4.4 entry (#297)
  • 37cde3f Accept REXML::Document.new("") for backward compatibility (#295)
  • 4ffe211 Bump version
  • 822530c Add 3.4.3 entry (#293)
  • 6ba286c Reject no root element XML as an invalid XML (#291)
  • b5b148e The Zlib::GzipReader in JRuby does not behave as expected with REXML, so the ...
  • 1531862 Fixed an issue with IOSource#read_until when reaching the end of a file (#288)
  • 185bdc7 Bump version
  • See full diff in compare view

Updates sorbet-runtime from 0.6.12479 to 0.6.12521

Release notes

Sourced from sorbet-runtime's releases.

sorbet 0.6.12520.20250911164710-0d4b17896

To use Sorbet add this line to your Gemfile:

gem 'sorbet', '0.6.12520', :group => :development
gem 'sorbet-runtime', '0.6.12520'

sorbet 0.6.12519.20250911164217-cb1153a27

To use Sorbet add this line to your Gemfile:

gem 'sorbet', '0.6.12519', :group => :development
gem 'sorbet-runtime', '0.6.12519'

sorbet 0.6.12518.20250911183904-210345573

To use Sorbet add this line to your Gemfile:

gem 'sorbet', '0.6.12518', :group => :development
gem 'sorbet-runtime', '0.6.12518'

sorbet 0.6.12517.20250911121015-84198ffc6

To use Sorbet add this line to your Gemfile:

gem 'sorbet', '0.6.12517', :group => :development
gem 'sorbet-runtime', '0.6.12517'

sorbet 0.6.12516.20250911105141-1adf08c8d

To use Sorbet add this line to your Gemfile:

gem 'sorbet', '0.6.12516', :group => :development
gem 'sorbet-runtime', '0.6.12516'

sorbet 0.6.12515.20250910170618-3c1fadb1a

To use Sorbet add this line to your Gemfile:

gem 'sorbet', '0.6.12515', :group => :development
gem 'sorbet-runtime', '0.6.12515'

sorbet 0.6.12514.20250910145757-19eca794f

To use Sorbet add this line to your Gemfile:

gem 'sorbet', '0.6.12514', :group => :development
gem 'sorbet-runtime', '0.6.12514'

sorbet 0.6.12513.20250910141805-40a577b2d

... (truncated)

Commits

Updates sorbet from 0.6.12479 to 0.6.12521

Release notes

Sourced from sorbet's releases.

sorbet 0.6.12520.20250911164710-0d4b17896

To use Sorbet add this line to your Gemfile:

gem 'sorbet', '0.6.12520', :group => :development
gem 'sorbet-runtime', '0.6.12520'

sorbet 0.6.12519.20250911164217-cb1153a27

To use Sorbet add this line to your Gemfile:

gem 'sorbet', '0.6.12519', :group => :development
gem 'sorbet-runtime', '0.6.12519'

sorbet 0.6.12518.20250911183904-210345573

To use Sorbet add this line to your Gemfile:

gem 'sorbet', '0.6.12518', :group => :development
gem 'sorbet-runtime', '0.6.12518'

sorbet 0.6.12517.20250911121015-84198ffc6

To use Sorbet add this line to your Gemfile:

gem 'sorbet', '0.6.12517', :group => :development
gem 'sorbet-runtime', '0.6.12517'

sorbet 0.6.12516.20250911105141-1adf08c8d

To use Sorbet add this line to your Gemfile:

gem 'sorbet', '0.6.12516', :group => :development
gem 'sorbet-runtime', '0.6.12516'

sorbet 0.6.12515.20250910170618-3c1fadb1a

To use Sorbet add this line to your Gemfile:

gem 'sorbet', '0.6.12515', :group => :development
gem 'sorbet-runtime', '0.6.12515'

sorbet 0.6.12514.20250910145757-19eca794f

To use Sorbet add this line to your Gemfile:

gem 'sorbet', '0.6.12514', :group => :development
gem 'sorbet-runtime', '0.6.12514'

sorbet 0.6.12513.20250910141805-40a577b2d

... (truncated)

Commits

Updates sorbet-static from 0.6.12479 to 0.6.12521

Release notes

Sourced from sorbet-static's releases.

sorbet 0.6.12520.20250911164710-0d4b17896

To use Sorbet add this line to your Gemfile:

gem 'sorbet', '0.6.12520', :group => :development
gem 'sorbet-runtime', '0.6.12520'

sorbet 0.6.12519.20250911164217-cb1153a27

To use Sorbet add this line to your Gemfile:

gem 'sorbet', '0.6.12519', :group => :development
gem 'sorbet-runtime', '0.6.12519'

sorbet 0.6.12518.20250911183904-210345573

To use Sorbet add this line to your Gemfile:

gem 'sorbet', '0.6.12518', :group => :development
gem 'sorbet-runtime', '0.6.12518'

sorbet 0.6.12517.20250911121015-84198ffc6

To use Sorbet add this line to your Gemfile:

gem 'sorbet', '0.6.12517', :group => :development
gem 'sorbet-runtime', '0.6.12517'

sorbet 0.6.12516.20250911105141-1adf08c8d

To use Sorbet add this line to your Gemfile:

gem 'sorbet', '0.6.12516', :group => :development
gem 'sorbet-runtime', '0.6.12516'

sorbet 0.6.12515.20250910170618-3c1fadb1a

To use Sorbet add this line to your Gemfile:

gem 'sorbet', '0.6.12515', :group => :development
gem 'sorbet-runtime', '0.6.12515'

sorbet 0.6.12514.20250910145757-19eca794f

To use Sorbet add this line to your Gemfile:

gem 'sorbet', '0.6.12514', :group => :development
gem 'sorbet-runtime', '0.6.12514'

sorbet 0.6.12513.20250910141805-40a577b2d

... (truncated)

Commits

Updates unicode-display_width from 3.1.5 to 3.2.0

Changelog

Sourced from unicode-display_width's changelog.

3.2.0

  • Unicode 17.0
Commits

Updates unicode-emoji from 4.0.4 to 4.1.0

Changelog

Sourced from unicode-emoji's changelog.

4.1.0

  • Unicode 17
  • Update valid subdivisions to CLDR 47 (no changes)
Commits

Bumps the all group with 1 update: github/codeql-action.

Updates github/codeql-action from 3.30.0 to 3.30.3

Release notes

Sourced from github/codeql-action's releases.

v3.30.3

CodeQL Action Changelog

See the releases page for the relevant changes to the CodeQL CLI and language packs.

3.30.3 - 10 Sep 2025

No user facing changes.

See the full CHANGELOG.md for more information.

v3.30.2

CodeQL Action Changelog

See the releases page for the relevant changes to the CodeQL CLI and language packs.

3.30.2 - 09 Sep 2025

  • Fixed a bug which could cause language autodetection to fail. #3084
  • Experimental: The quality-queries input that was added in 3.29.2 as part of an internal experiment is now deprecated and will be removed in an upcoming version of the CodeQL Action. It has been superseded by a new analysis-kinds input, which is part of the same internal experiment. Do not use this in production as it is subject to change at any time. #3064

See the full CHANGELOG.md for more information.

v3.30.1

CodeQL Action Changelog

See the releases page for the relevant changes to the CodeQL CLI and language packs.

3.30.1 - 05 Sep 2025

  • Update default CodeQL bundle version to 2.23.0. #3077

See the full CHANGELOG.md for more information.

Changelog

Sourced from github/codeql-action's changelog.

CodeQL Action Changelog

See the releases page for the relevant changes to the CodeQL CLI and language packs.

[UNRELEASED]

  • We have improved the CodeQL Action's ability to validate that the workflow it is used in does not use different versions of the CodeQL Action for different workflow steps. Mixing different versions of the CodeQL Action in the same workflow is unsupported and can lead to unpredictable results. A warning will now be emitted from the codeql-action/init step if different versions of the CodeQL Action are detected in the workflow file. Additionally, an error will now be thrown by the other CodeQL Action steps if they load a configuration file that was generated by a different version of the codeql-action/init step. #3099 and #3100

3.30.3 - 10 Sep 2025

No user facing changes.

3.30.2 - 09 Sep 2025

  • Fixed a bug which could cause language autodetection to fail. #3084
  • Experimental: The quality-queries input that was added in 3.29.2 as part of an internal experiment is now deprecated and will be removed in an upcoming version of the CodeQL Action. It has been superseded by a new analysis-kinds input, which is part of the same internal experiment. Do not use this in production as it is subject to change at any time. #3064

3.30.1 - 05 Sep 2025

  • Update default CodeQL bundle version to 2.23.0. #3077

3.30.0 - 01 Sep 2025

  • Reduce the size of the CodeQL Action, speeding up workflows by approximately 4 seconds. #3054

3.29.11 - 21 Aug 2025

  • Update default CodeQL bundle version to 2.22.4. #3044

3.29.10 - 18 Aug 2025

No user facing changes.

3.29.9 - 12 Aug 2025

No user facing changes.

3.29.8 - 08 Aug 2025

  • Fix an issue where the Action would autodetect unsupported languages such as HTML. #3015

3.29.7 - 07 Aug 2025

This release rolls back 3.29.6 to address issues with language autodetection. It is identical to 3.29.5.

3.29.6 - 07 Aug 2025

  • The cleanup-level input to the analyze Action is now deprecated. The CodeQL Action has written a limited amount of intermediate results to the database since version 2.2.5, and now automatically manages cleanup. #2999
  • Update default CodeQL bundle version to 2.22.3. #3000

... (truncated)

Commits
  • 192325c Merge pull request #3104 from github/update-v3.30.3-b660efdcf
  • e68956d Update changelog for v3.30.3
  • b660efd Merge pull request #3103 from github/mbg/fix/category-check
  • e49458b Fix runInterpretResultsFor using the wrong AnalysisConfig for category fix
  • f374a62 Merge pull request #3098 from github/kaspersv/increase-overlay-base-size-limit
  • 5efa438 Merge pull request #3101 from github/mbg/public-repo-notice-in-pr-template
  • 8a84a62 Overlay: Increase size limit for cached overlay base database
  • eb50a88 Merge pull request #3097 from github/redsun82/only-dump-sarif
  • 4c53461 Tweak sarif dump log
  • dae3742 Dump soon to be uploaded SARIF on request
  • Additional commits viewable 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 all group with 3 updates in the /Library/Homebrew directory: [rubocop-performance](https://github.com/rubocop/rubocop-performance), [sorbet-static-and-runtime](https://github.com/sorbet/sorbet) and [rexml](https://github.com/ruby/rexml).


Updates `rubocop-performance` from 1.25.0 to 1.26.0
- [Release notes](https://github.com/rubocop/rubocop-performance/releases)
- [Changelog](https://github.com/rubocop/rubocop-performance/blob/master/CHANGELOG.md)
- [Commits](rubocop/rubocop-performance@v1.25.0...v1.26.0)

Updates `sorbet-static-and-runtime` from 0.6.12479 to 0.6.12521
- [Release notes](https://github.com/sorbet/sorbet/releases)
- [Commits](https://github.com/sorbet/sorbet/commits)

Updates `rexml` from 3.4.2 to 3.4.4
- [Release notes](https://github.com/ruby/rexml/releases)
- [Changelog](https://github.com/ruby/rexml/blob/master/NEWS.md)
- [Commits](ruby/rexml@v3.4.2...v3.4.4)

Updates `sorbet-runtime` from 0.6.12479 to 0.6.12521
- [Release notes](https://github.com/sorbet/sorbet/releases)
- [Commits](https://github.com/sorbet/sorbet/commits)

Updates `sorbet` from 0.6.12479 to 0.6.12521
- [Release notes](https://github.com/sorbet/sorbet/releases)
- [Commits](https://github.com/sorbet/sorbet/commits)

Updates `sorbet-static` from 0.6.12479 to 0.6.12521
- [Release notes](https://github.com/sorbet/sorbet/releases)
- [Commits](https://github.com/sorbet/sorbet/commits)

Updates `unicode-display_width` from 3.1.5 to 3.2.0
- [Changelog](https://github.com/janlelis/unicode-display_width/blob/main/CHANGELOG.md)
- [Commits](janlelis/unicode-display_width@v3.1.5...v3.2.0)

Updates `unicode-emoji` from 4.0.4 to 4.1.0
- [Changelog](https://github.com/janlelis/unicode-emoji/blob/main/CHANGELOG.md)
- [Commits](janlelis/unicode-emoji@v4.0.4...v4.1.0)
build(deps): bump github/codeql-action in the all group

Bumps the all group with 1 update: [github/codeql-action](https://github.com/github/codeql-action).


Updates `github/codeql-action` from 3.30.0 to 3.30.3
- [Release notes](https://github.com/github/codeql-action/releases)
- [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
- [Commits](github/codeql-action@2d92b76...192325c)

---
updated-dependencies:
- dependency-name: rubocop-performance
  dependency-version: 1.26.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: sorbet-static-and-runtime
  dependency-version: 0.6.12521
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: rexml
  dependency-version: 3.4.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: sorbet-runtime
  dependency-version: 0.6.12521
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: sorbet
  dependency-version: 0.6.12521
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: sorbet-static
  dependency-version: 0.6.12521
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: unicode-display_width
  dependency-version: 3.2.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: unicode-emoji
  dependency-version: 4.1.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: github/codeql-action
  dependency-version: 3.30.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Bumping Gemfile dependencies github_actions Pull requests that update GitHub Actions code ruby Pull requests that update Ruby code labels Sep 12, 2025
@ZhongRuoyu ZhongRuoyu added this pull request to the merge queue Sep 12, 2025
Merged via the queue into main with commit 852574d Sep 12, 2025
38 checks passed
@ZhongRuoyu ZhongRuoyu deleted the dependabot/all-3d8734bf05 branch September 12, 2025 09:04
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Bumping Gemfile dependencies github_actions Pull requests that update GitHub Actions code ruby Pull requests that update Ruby code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants