Skip to content

chore(deps): bump the ruby group with 9 updates#1127

Merged
mergify[bot] merged 1 commit intomainfrom
dependabot/bundler/ruby-da3671786c
Apr 6, 2026
Merged

chore(deps): bump the ruby group with 9 updates#1127
mergify[bot] merged 1 commit intomainfrom
dependabot/bundler/ruby-da3671786c

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Apr 6, 2026

Bumps the ruby group with 9 updates:

Package From To
html2rss e11e251 4a414ce
addressable 2.8.9 2.9.0
async 2.38.1 2.39.0
bigdecimal 4.1.0 4.1.1
io-event 1.14.5 1.15.1
mime-types-data 3.2026.0317 3.2026.0331
parallel 1.27.0 2.0.0
protocol-rack 0.22.0 0.22.1
regexp_parser 2.11.3 2.12.0

Updates html2rss from e11e251 to 4a414ce

Commits

Updates addressable from 2.8.9 to 2.9.0

Changelog

Sourced from addressable's changelog.

Addressable 2.9.0

  • fixes ReDoS vulnerability in Addressable::Template#match (fixes incomplete remediation in 2.8.10)

Addressable 2.8.10

  • fixes ReDoS vulnerability in Addressable::Template#match
Commits
  • 0c3e858 Revving version and changelog
  • 91915c1 Fixing additional vulnerable paths
  • a091e39 Add many more adversarial test cases to ensure we don't have any ReDoS regres...
  • 463a819 Regenerate gemspec on newer rubygems
  • 0afcb0b Improve from O(n^2) to O(n)
  • c87f768 Fix a ReDoS vulnerability in URI template matching
  • See full diff in compare view

Updates async from 2.38.1 to 2.39.0

Release notes

Sourced from async's releases.

v2.39.0

  • Async::Barrier#wait now returns the number of tasks that were waited for, or nil if there were no tasks to wait for. This provides better feedback about the operation, and allows you to know how many tasks were involved in the wait.
Changelog

Sourced from async's changelog.

v2.39.0

  • Async::Barrier#wait now returns the number of tasks that were waited for, or nil if there were no tasks to wait for. This provides better feedback about the operation, and allows you to know how many tasks were involved in the wait.
Commits
  • 886d62c Bump minor version.
  • 2c89c3f Make the test more robust.
  • 751b6aa Barrier waits return nil or number of tasks waited on.
  • 7f00f35 Break the cycle between the task and the fiber as early as possible.
  • See full diff in compare view

Updates bigdecimal from 4.1.0 to 4.1.1

Release notes

Sourced from bigdecimal's releases.

v4.1.1

What's Changed

New Contributors

Full Changelog: ruby/bigdecimal@v4.1.0...v4.1.1

Changelog

Sourced from bigdecimal's changelog.

4.1.1

Commits

Updates io-event from 1.14.5 to 1.15.1

Release notes

Sourced from io-event's releases.

v1.15.1

No release notes provided.

v1.15.0

  • Add bounds checks, in the unlikely event of a user providing an invalid offset that exceeds the buffer size. This prevents potential memory corruption and ensures safe operation when using buffered IO methods.
Changelog

Sourced from io-event's changelog.

Releases

v1.15.0

  • Add bounds checks, in the unlikely event of a user providing an invalid offset that exceeds the buffer size. This prevents potential memory corruption and ensures safe operation when using buffered IO methods.

v1.14.4

  • Allow epoll_pwait2 to be disabled via --disable-epoll_pwait2.

v1.14.3

  • Fix several implementation bugs that could cause deadlocks on blocking writes.

v1.14.0

Enhanced IO::Event::PriorityHeap with deletion and bulk insertion methods

The {ruby IO::Event::PriorityHeap} now supports efficient element removal and bulk insertion:

  • delete(element): Remove a specific element from the heap in O(n) time
  • delete_if(&block): Remove elements matching a condition with O(n) amortized bulk deletion
  • concat(elements): Add multiple elements efficiently in O(n) time
heap = IO::Event::PriorityHeap.new
Efficient bulk insertion - O(n) instead of O(n log n)
heap.concat([5, 2, 8, 1, 9, 3])
Remove specific element
removed = heap.delete(5)  # Returns 5, heap maintains order
Bulk removal with condition
count = heap.delete_if{|x| x.even?}  # Removes 2, 8 efficiently

The delete_if and concat methods are particularly efficient for bulk operations, using bottom-up heapification to maintain the heap property in O(n) time. This provides significant performance improvements:

  • Bulk insertion: O(n log n) → O(n) for adding multiple elements
  • Bulk deletion: O(k×n) → O(n) for removing k elements

Both methods maintain the heap invariant and include comprehensive test coverage with edge case validation.

v1.11.2

  • Fix Windows build.

... (truncated)

Commits
  • ccd0953 Bump patch version.
  • 41f2033 Fix error handling - oops.
  • fed29b7 Update copyrights.
  • 5c20637 Bump minor version.
  • 94d41f7 Clarify behavior of IO_Event_Selector_loop_yield to prevent self-transfer in ...
  • 7313f0a Fix handling of closed IO objects in IO::Event::Selector::Select. (#165)
  • aa47301 Add bounds check for offset.
  • See full diff in compare view

Updates mime-types-data from 3.2026.0317 to 3.2026.0331

Changelog

Sourced from mime-types-data's changelog.

3.2026.0331 / 2026-03-31

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

Updates parallel from 1.27.0 to 2.0.0

Changelog

Sourced from parallel's changelog.

2.0.0

Changed

  • Require Ruby >= 3.3
  • Add Ruby 4 Ractor support

1.28.0

Fixed

  • Dump undumpable exceptions without cause if that fixes the issue
Commits

Updates protocol-rack from 0.22.0 to 0.22.1

Release notes

Sourced from protocol-rack's releases.

v0.22.1

  • Rack 2 should not use to_ary.
Changelog

Sourced from protocol-rack's changelog.

v0.22.1

  • Rack 2 should not use to_ary.
Commits

Updates regexp_parser from 2.11.3 to 2.12.0

Changelog

Sourced from regexp_parser's changelog.

[2.12.0] - 2026-04-04 - Janosch Müller

Added

  • support for new unicode properties of Ruby 4.0.0
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 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 9 updates:

| Package | From | To |
| --- | --- | --- |
| [html2rss](https://github.com/html2rss/html2rss) | ``e11e251`` | ``4a414ce`` |
| [addressable](https://github.com/sporkmonger/addressable) | `2.8.9` | `2.9.0` |
| [async](https://github.com/socketry/async) | `2.38.1` | `2.39.0` |
| [bigdecimal](https://github.com/ruby/bigdecimal) | `4.1.0` | `4.1.1` |
| [io-event](https://github.com/socketry/io-event) | `1.14.5` | `1.15.1` |
| [mime-types-data](https://github.com/mime-types/mime-types-data) | `3.2026.0317` | `3.2026.0331` |
| [parallel](https://github.com/grosser/parallel) | `1.27.0` | `2.0.0` |
| [protocol-rack](https://github.com/socketry/protocol-rack) | `0.22.0` | `0.22.1` |
| [regexp_parser](https://github.com/ammar/regexp_parser) | `2.11.3` | `2.12.0` |


Updates `html2rss` from `e11e251` to `4a414ce`
- [Release notes](https://github.com/html2rss/html2rss/releases)
- [Commits](html2rss/html2rss@e11e251...4a414ce)

Updates `addressable` from 2.8.9 to 2.9.0
- [Changelog](https://github.com/sporkmonger/addressable/blob/main/CHANGELOG.md)
- [Commits](sporkmonger/addressable@addressable-2.8.9...addressable-2.9.0)

Updates `async` from 2.38.1 to 2.39.0
- [Release notes](https://github.com/socketry/async/releases)
- [Changelog](https://github.com/socketry/async/blob/main/releases.md)
- [Commits](socketry/async@v2.38.1...v2.39.0)

Updates `bigdecimal` from 4.1.0 to 4.1.1
- [Release notes](https://github.com/ruby/bigdecimal/releases)
- [Changelog](https://github.com/ruby/bigdecimal/blob/master/CHANGES.md)
- [Commits](ruby/bigdecimal@v4.1.0...v4.1.1)

Updates `io-event` from 1.14.5 to 1.15.1
- [Release notes](https://github.com/socketry/io-event/releases)
- [Changelog](https://github.com/socketry/io-event/blob/main/releases.md)
- [Commits](socketry/io-event@v1.14.5...v1.15.1)

Updates `mime-types-data` from 3.2026.0317 to 3.2026.0331
- [Changelog](https://github.com/mime-types/mime-types-data/blob/main/CHANGELOG.md)
- [Commits](mime-types/mime-types-data@v3.2026.0317...v3.2026.0331)

Updates `parallel` from 1.27.0 to 2.0.0
- [Changelog](https://github.com/grosser/parallel/blob/master/CHANGELOG.md)
- [Commits](grosser/parallel@v1.27.0...v2.0.0)

Updates `protocol-rack` from 0.22.0 to 0.22.1
- [Release notes](https://github.com/socketry/protocol-rack/releases)
- [Changelog](https://github.com/socketry/protocol-rack/blob/main/releases.md)
- [Commits](socketry/protocol-rack@v0.22.0...v0.22.1)

Updates `regexp_parser` from 2.11.3 to 2.12.0
- [Changelog](https://github.com/ammar/regexp_parser/blob/master/CHANGELOG.md)
- [Commits](ammar/regexp_parser@v2.11.3...v2.12.0)

---
updated-dependencies:
- dependency-name: html2rss
  dependency-version: 4a414ce3f0652ca19d2b632a401042cfd00159a6
  dependency-type: direct:production
  dependency-group: ruby
- dependency-name: addressable
  dependency-version: 2.9.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: ruby
- dependency-name: async
  dependency-version: 2.39.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: ruby
- dependency-name: bigdecimal
  dependency-version: 4.1.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: ruby
- dependency-name: io-event
  dependency-version: 1.15.1
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: ruby
- dependency-name: mime-types-data
  dependency-version: 3.2026.0331
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: ruby
- dependency-name: parallel
  dependency-version: 2.0.0
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: ruby
- dependency-name: protocol-rack
  dependency-version: 0.22.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: ruby
- dependency-name: regexp_parser
  dependency-version: 2.12.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 Apr 6, 2026
@mergify mergify bot added the queued label Apr 6, 2026
@mergify
Copy link
Copy Markdown
Contributor

mergify bot commented Apr 6, 2026

Merge Queue Status

This pull request spent 1 minute 47 seconds in the queue, including 1 minute 33 seconds running CI.

Required conditions to merge

mergify bot added a commit that referenced this pull request Apr 6, 2026
@mergify mergify bot merged commit e5eb215 into main Apr 6, 2026
7 checks passed
@mergify mergify bot deleted the dependabot/bundler/ruby-da3671786c branch April 6, 2026 07:22
@mergify mergify bot removed the queued label Apr 6, 2026
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