Skip to content

Bump the bundler group across 1 directory with 4 updates #2288

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

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Apr 14, 2025

Bumps the bundler group with 4 updates in the / directory: uri, net-imap, nokogiri and rack.

Updates uri from 0.10.3 to 0.11.3

Release notes

Sourced from uri's releases.

v0.11.3

What's Changed

Full Changelog: ruby/uri@v0.11.2...v0.11.3

v0.11.1

Full Changelog: ruby/uri@v0.11.0...v0.11.1

v0.11.0

What's Changed

New Contributors

Full Changelog: ruby/uri@v0.10.1...v0.11.0

Commits
  • c13dfc2 Bump up v0.11.3
  • 10c5b5a Merge pull request #157 from ruby/remove-userinfo-v0-11
  • 4aeb1f2 Tweak actions matrix and steps
  • 100b3f0 Fix merger of URI with authority component
  • a0fe3fa Truncate userinfo with URI#join, URI#merge and URI#+
  • 5880a5f Merge branch 'h1-1958260-v0-11' into v0-11
  • 7ae6378 Bump up v0.11.2
  • a9cc23d Merge pull request #79 from ruby/use-test-unit-ruby-core
  • 05b1e7d Fix quadratic backtracking on invalid port number
  • 38bf797 Fix quadratic backtracking on invalid relative URI
  • Additional commits viewable in compare view

Updates net-imap from 0.4.9 to 0.4.19

Release notes

Sourced from net-imap's releases.

v0.4.19

What's Changed

🔒 Security Fix

Fixes CVE-2025-25186 (GHSA-7fc5-f82f-cx69): A malicious server can exhaust client memory by sending APPENDUID or COPYUID responses with very large uid-set ranges. Net::IMAP::UIDPlusData expands these ranges into arrays of integers.

Fix with minor API changes

Set config.parser_use_deprecated_uidplus_data to false to replace UIDPlusData with AppendUIDData and CopyUIDData. These classes store their UIDs as Net::IMAP::SequenceSet objects (not expanded into arrays of integers). Code that does not handle APPENDUID or COPYUID responses should not see any difference. Code that does handle these responses may need to be updated.

For v0.3.8, this option is not available For v0.4.19, the default value is true. For v0.5.6, the default value is :up_to_max_size. For v0.6.0, the only allowed value will be false (UIDPlusData will be removed from v0.6).

Mitigate with backward compatible API

Adjust config.parser_max_deprecated_uidplus_data_size to limit the maximum UIDPlusData UID set size. When config.parser_use_deprecated_uidplus_data == true, larger sets will crash. When config.parser_use_deprecated_uidplus_data == :up_to_max_size, larger sets will use AppendUIDData or CopyUIDData.

For v0.3,8, this limit is hard-coded to 10,000. For v0.4.19, this limit defaults to 1000. For v0.5.6, this limit defaults to 100. For v0.6.0, the only allowed value will be 0 (UIDPlusData will be removed from v0.6).

Please Note: unhandled responses

If the client does not add response handlers to prune unhandled responses, a malicious server can still eventually exhaust all client memory, by repeatedly sending malicious responses. However, net-imap has always retained unhandled responses, and it has always been necessary for long-lived connections to prune these responses. This is not significantly different from connecting to a trusted server with a long-lived connection. To limit the maximum number of retained responses, a simple handler might look something like the following:

limit = 1000
imap.add_response_handler do |resp|
  next unless resp.respond_to?(:name) && resp.respond_to?(:data)
  name = resp.name
  code = resp.data.code&.name if resp.data.in?(Net::IMAP::ResponseText)
  imap.responses(name) { _1.slice!(0...-limit) }
  imap.responses(code) { _1.slice!(0...-limit) }
end

Added

... (truncated)

Commits
  • 4c4ed09 🔖 Bump version to 0.4.19
  • c8c5a64 Merge commit from fork
  • abff00f 🔧 Add :up_to_max_size config for UIDPlusData
  • 34a1f27 🔧 Add config option for max UIDPlusData size
  • 6613d57 🔒 Limit exponential memory usage to parse uid-set
  • e4d57b1 🔀 Merge pull request #404 from ruby/backport-0.4-uidplus-deprecation
  • d32320a 🐛 Fix missing Data.define for new classes
  • 3c592fc 🔧🗑️ Deprecate UIDPlusData, with config to upgrade
  • 7e58ef3 ✨ Add CopyUIDData (to replace UIDPlusData)
  • 4c601c3 ✨ Add AppendUIDData (to replace UIDPlusData)
  • Additional commits viewable in compare view

Updates nokogiri from 1.16.8 to 1.18.4

Release notes

Sourced from nokogiri's releases.

v1.18.4 / 2025-03-14

Security

8f2263cef9953ce09bd5293d76c9bbd3013d2f94d1cca67783dfe6635c529deb  nokogiri-1.18.4-aarch64-linux-gnu.gem
4e231f8ba3128cfc2ef0cc0bdc807d7ce71fc62cb6a78216e817be8631fe6a96  nokogiri-1.18.4-aarch64-linux-musl.gem
73902663b23b1123282b9c0b6d9654b1fb286dfee8d65cb1f6029087b7f0d037  nokogiri-1.18.4-arm64-darwin.gem
cc2945e2c19560a61a97737e6bd3b329edb1f82ca204d46a18e5e98ad0a550a6  nokogiri-1.18.4-arm-linux-gnu.gem
4fb7f44de0cd85abfa869e4cfb619410da174ebf9fbe26ae0caa65462b818bcb  nokogiri-1.18.4-arm-linux-musl.gem
bb7820521c1bbae1d3e0092ff03b27a8e700912b37d80f962b7e4567947a64ac  nokogiri-1.18.4.gem
cbc0bab72eb5a9573efa7b98351fdd44c609e8d4585456ca1be18db2b7764b64  nokogiri-1.18.4-java.gem
bd567cb509eb75de8f27ca6ecaf4a38bf0563482188991f9bcccccac9c3b9a2f  nokogiri-1.18.4-x64-mingw-ucrt.gem
e4776f58eea9b94d05caf8bf351e3c6aa1cce01edcc2ed530f3c302c13178965  nokogiri-1.18.4-x86_64-darwin.gem
b1c6407b346b88704e97a342a80acd4755175324e624da34d0c5cfdc8d34191e  nokogiri-1.18.4-x86_64-linux-gnu.gem
ea7c0356a70f3d2d0d76315b533877013d20368d5c9f437c38e0bd462c4844dc  nokogiri-1.18.4-x86_64-linux-musl.gem

v1.18.3 / 2025-02-18

Security

cab20305133078a8f6b60cf96311b48319175038cc7772e5ec586ff624cb7838  nokogiri-1.18.3-aarch64-linux-gnu.gem
acb256bb3213a180b1ed84a49c06d5d4c6c1da26f33bc9681f1fece4dab09a79  nokogiri-1.18.3-aarch64-linux-musl.gem
ce088965cd424b8e752d82087dcf017069d55791f157098ed1f671d966857610  nokogiri-1.18.3-arm64-darwin.gem
37b73a55e0d1e8a058a24abb16868903e81cb4773049739c532b864f87236b1b  nokogiri-1.18.3-arm-linux-gnu.gem
09407970cd13736cf87e975fae69c13e1178bab0313d07b35580ee4dd3650793  nokogiri-1.18.3-arm-linux-musl.gem
6b9fc3b14fd0cedd21f6cad8cf565123ba7401e56b5d0aec180c23cdca28fd5a  nokogiri-1.18.3.gem
236078c5f80ffc3d49c223fa98933d970543455403f9d672ca0aa5a6178a84fe  nokogiri-1.18.3-java.gem
216be1cb454c4657fc64747e5ae32b2ab4015843183766f238e4f4a62fb1f6be  nokogiri-1.18.3-x64-mingw-ucrt.gem
d729406bb5a7b1bbe7ed3c0922336dd2c46085ed444d6de2a0a4c33950a4edea  nokogiri-1.18.3-x86_64-darwin.gem
3c7ad5cee39855ed9c746065f39b584b9fd2aaff61df02d0f85ba8d671bbe497  nokogiri-1.18.3-x86_64-linux-gnu.gem
8aaecc22c0e5f12dac613e15f9a04059c3ec859d6f98f493cc831bd88fe8e731  nokogiri-1.18.3-x86_64-linux-musl.gem

v1.18.2 / 2024-01-19

Fixed

... (truncated)

Changelog

Sourced from nokogiri's changelog.

v1.18.4 / 2025-03-14

Security

v1.18.3 / 2025-02-18

Security

v1.18.2 / 2024-01-19

Fixed

  • When performing a CSS selector query, an XML document's root namespace declarations should not be applied to wildcard selectors ("*"). Fixes a bug introduced in v1.17.0. (#3411) @​flavorjones

v1.18.1 / 2024-12-29

Fixed

  • [CRuby] XML::SAX::ParserContext keeps a reference to the input to avoid a potential use-after-free issue that's existed since v1.4.0 (2009). (#3395) @​flavorjones

v1.18.0 / 2024-12-25

Notable Changes

Ruby

This release introduces native gem support for Ruby 3.4.

This release ends support for Ruby 3.0, for which upstream support ended 2024-04-23.

This release ships separate precompiled GNU and Musl gems for all linux platforms. Previously both GNU and Musl target systems could use and install the same gem, e.g., the platform gem for x86_64-linux. Now, however, the precompiled gem platforms would be x86_64-linux-gnu and x86_64-linux-musl. So long as you're on bundler >= 2.5.6 this should be seamless other than perhaps needing to update the platforms in your "Gemfile.lock".

This release drops precompiled native platform gems for x86-linux and x86-mingw32. These platforms are still supported. Users on these platforms must install the "ruby platform" gem which requires a compiler toolchain. See Installing the ruby platform gem in the installation docs. (#3369, #3081)

Improved

  • [CRuby] CSS and XPath queries are faster now that Node#xpath, Node#css, and related functions are using a faster XPathContext initialization process. We benchmarked a 1.9x improvement for a 6kb file. Big thanks to @​nwellnhof for helping with this one. (#3378, superseded by #3389) @​flavorjones

Dependencies

... (truncated)

Commits
  • 80edf1c version bump to v1.18.4
  • 3c12e35 dep: update libxslt to 1.1.43 (v1.18.x branch) (#3467)
  • 395c085 dep: update libxslt to 1.1.43
  • 4125715 ci: tired of waiting for gnome mirrors
  • 35faaa3 doc: update CHANGELOG with GHSA
  • fd3ca2e version bump to v1.18.3
  • a8c526a dep: update libxml2 to v2.13.6 (#3437)
  • 0847cf8 ci: tired of waiting for gnome mirrors
  • 11945c8 dep: update libxml2 to v2.13.6
  • aa54fa5 version bump to v1.18.2
  • Additional commits viewable in compare view

Updates rack from 2.2.9 to 2.2.13

Changelog

Sourced from rack's changelog.

[2.2.13] - 2025-03-11

Security

[2.2.12] - 2025-03-04

Security

[2.2.11] - 2025-02-12

Security

[2.2.10] - 2024-10-14

Commits
  • df6c473 Bump patch verison.
  • cceb70c Update changelog.
  • 873d39e Use a fully resolved file path when confirming if a file can be served by `Ra...
  • 7829663 Bump patch verison.
  • fadf97e Fix development workflow.
  • b13bc6b Use #inspect to prevent log injection.
  • f393916 Fix version number in release notes.
  • aa5a0f5 Bump patch version.
  • f8b41c1 Escape non-printable characters when logging.
  • 14c9dec Bump patch version.
  • 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
    You can disable automated security fix PRs for this repo from the Security Alerts page.

Bumps the bundler group with 4 updates in the / directory: [uri](https://github.com/ruby/uri), [net-imap](https://github.com/ruby/net-imap), [nokogiri](https://github.com/sparklemotion/nokogiri) and [rack](https://github.com/rack/rack).


Updates `uri` from 0.10.3 to 0.11.3
- [Release notes](https://github.com/ruby/uri/releases)
- [Commits](ruby/uri@v0.10.3...v0.11.3)

Updates `net-imap` from 0.4.9 to 0.4.19
- [Release notes](https://github.com/ruby/net-imap/releases)
- [Commits](ruby/net-imap@v0.4.9...v0.4.19)

Updates `nokogiri` from 1.16.8 to 1.18.4
- [Release notes](https://github.com/sparklemotion/nokogiri/releases)
- [Changelog](https://github.com/sparklemotion/nokogiri/blob/main/CHANGELOG.md)
- [Commits](sparklemotion/nokogiri@v1.16.8...v1.18.4)

Updates `rack` from 2.2.9 to 2.2.13
- [Release notes](https://github.com/rack/rack/releases)
- [Changelog](https://github.com/rack/rack/blob/main/CHANGELOG.md)
- [Commits](rack/rack@v2.2.9...v2.2.13)

---
updated-dependencies:
- dependency-name: uri
  dependency-version: 0.11.3
  dependency-type: direct:production
  dependency-group: bundler
- dependency-name: net-imap
  dependency-version: 0.4.19
  dependency-type: indirect
  dependency-group: bundler
- dependency-name: nokogiri
  dependency-version: 1.18.4
  dependency-type: indirect
  dependency-group: bundler
- dependency-name: rack
  dependency-version: 2.2.13
  dependency-type: indirect
  dependency-group: bundler
...

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 14, 2025
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