Skip to content
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

Bump the bundler group across 1 directory with 17 updates #2

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

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github May 14, 2024

Bumps the bundler group with 4 updates in the /sample_app directory: rails, addressable, ffi and nokogiri.

Updates rails from 3.2.13 to 3.2.17

Commits
  • 666e9f6 Preparing for 3.2.17 release
  • 388d2f8 Use the reference for the mime type to get the format
  • eaa2101 Escape format, negative_format and units options of number helpers
  • 6422630 updating the changelog
  • d5a4095 Deep Munge the parameters for GET and POST
  • 78790e4 Stop using i18n's built in HTML error handling.
  • 5ed70c5 Escape the unit value provided to number_to_currency
  • bee3b7f Only use valid mime type symbols as cache keys
  • 5f844d6 Merge branch '3-2-sec' into 3-2-stable
  • 538f8ba updating changelogs
  • Additional commits viewable in compare view

Updates actionmailer from 3.2.13 to 3.2.17

Commits

Updates actionpack from 3.2.13 to 3.2.17

Commits
  • 666e9f6 Preparing for 3.2.17 release
  • 388d2f8 Use the reference for the mime type to get the format
  • eaa2101 Escape format, negative_format and units options of number helpers
  • 6422630 updating the changelog
  • d5a4095 Deep Munge the parameters for GET and POST
  • 78790e4 Stop using i18n's built in HTML error handling.
  • 5ed70c5 Escape the unit value provided to number_to_currency
  • bee3b7f Only use valid mime type symbols as cache keys
  • 538f8ba updating changelogs
  • 2a0c440 bumping to 3.2.15
  • Additional commits viewable in compare view

Updates activerecord from 3.2.13 to 3.2.17

Commits

Updates activeresource from 3.2.13 to 3.2.17

Commits

Updates activesupport from 3.2.13 to 3.2.17

Commits

Updates addressable from 2.3.5 to 2.8.6

Changelog

Sourced from addressable's changelog.

Addressable 2.8.6

  • Memoize regexps for common character classes (#524)

#524: sporkmonger/addressable#524

Addressable 2.8.5

  • Fix thread safety issue with encoding tables (#515)
  • Define URI::NONE as a module to avoid serialization issues (#509)
  • Fix YAML serialization (#508)

#508: sporkmonger/addressable#508 #509: sporkmonger/addressable#509 #515: sporkmonger/addressable#515

Addressable 2.8.4

  • Restore Addressable::IDNA.unicode_normalize_kc as a deprecated method (#504)

#504: sporkmonger/addressable#504

Addressable 2.8.3

  • Fix template expand level 2 hash support for non-string objects (#499, #498)

#499: sporkmonger/addressable#499 #498: sporkmonger/addressable#498

Addressable 2.8.2

  • Improve cache hits and JIT friendliness (#486)
  • Improve code style and test coverage (#482)
  • Ensure reset of deferred validation (#481)
  • Resolve normalization differences between IDNA::Native and IDNA::Pure (#408, #492)
  • Remove redundant colon in Addressable::URI::CharacterClasses::AUTHORITY regex (#438) (accidentally reverted by #449 merge but added back in #492)

#492: sporkmonger/addressable#492

Addressable 2.8.1

  • refactor Addressable::URI.normalize_path to address linter offenses (#430)
  • update gemspec to reflect supported Ruby versions (#466, #464, #463)
  • compatibility w/ public_suffix 5.x (#466, #465, #460)
  • fixes "invalid byte sequence in UTF-8" exception when unencoding URLs containing non UTF-8 characters (#459)
  • Ractor compatibility (#449)
  • use the whole string instead of a single line for template match (#431)
  • force UTF-8 encoding only if needed (#341)

#449: sporkmonger/addressable#449 #460: sporkmonger/addressable#460 #463: sporkmonger/addressable#463 #464: sporkmonger/addressable#464 #465: sporkmonger/addressable#465 #466: sporkmonger/addressable#466

... (truncated)

Commits
  • 35a0f5c gemspec: more #freeze and rubygems_version bump (#526)
  • 63ab40e Update version, gemspec, and CHANGELOG for 2.8.6 (#525)
  • 20879a9 Memoize regexps for common character classes (#524)
  • 60feb48 Link directly to versioned changelog from gemspec (#522)
  • d3635cc Bump actions/checkout from 3 to 4 (#521)
  • 7cd185e Update version, gemspec, and CHANGELOG for 2.8.5 (#518)
  • a5a8514 Fix gemspec generation (#517)
  • e01456b Fix thread safety issue with encoding tables (#515)
  • cf2153e Allow ruby-head to fail (#516)
  • b56cef3 Define URI::NONE as a module to avoid serialization issues (#509)
  • Additional commits viewable in compare view

Updates ffi from 1.9.0 to 1.16.3

Changelog

Sourced from ffi's changelog.

1.16.3 / 2023-10-04

Fixed:

  • Fix gcc error when building on CentOS 7. #1052
  • Avoid trying to store new DataConverter type in frozen TypeDefs hash. #1057

1.16.2 / 2023-09-25

Fixed:

  • Handle null pointer crash after fork. #1051

1.16.1 / 2023-09-24

Fixed:

  • Fix compiling the builtin libffi. #1049

1.16.0 / 2023-09-23

Fixed:

  • Fix an issue with signed bitmasks when using flags on the most significant bit. #949
  • Fix FFI::Pointer#initialize using NUM2LL instead of NUM2ULL.
  • Fix FFI::Type#inspect to properly display the constant name. #1002
  • Use libffi closure allocations on hppa-Linux. #1017 Previously they would segfault.
  • Fix class name of Symbol#inspect.
  • Fix MSVC support of libtest. #1028
  • Fix attach_function of functions ending in ? or ! #971

Added:

  • Convert all C-based classes to TypedData and use write barriers. #994, #995, #996, #997, #998, #999, #1000, #1001, #1003, #1004, #1005, #1006, #1007, #1008, #1009, #1010, #1011, #1012 This results in less pressure on the garbage collector, since the objects can be promoted to the old generation, which means they only get marked on major GC.
  • Implement ObjectSpace.memsize_of() of all C-based classes.
  • Make FFI Ractor compatible. #1023 Modules extended per extend FFI::Library need to be frozen in order to be used by non-main Ractors. This can be done by calling freeze below of all C interface definitions.
    • In a Ractor it's possible to:
      • load DLLs and call its functions, access its global variables
      • use builtin typedefs
      • use and modify ractor local typedefs
      • define callbacks
      • receive async callbacks from non-ruby threads
      • use frozen FFI::Library based modules with all attributes (enums, structs, typedefs, functions, callbacks)
      • invoke frozen functions and callbacks defined in the main Ractor

... (truncated)

Commits

Updates i18n from 0.6.1 to 0.9.5

Release notes

Sourced from i18n's releases.

v0.9.5

  • #404 reported a regression in 0.9.3, which wasn't fixed by 0.9.4. #408 fixes this issue.

Thanks @​wjordan!

v0.9.4

  • Fixed a regression with chained backends introduced in v0.9.3 (#402) - #405 - bug report / #407 - PR to fix
  • Optimize Backend::Simple#available_locales - reports are that this is now 4x faster than previously - #406

v0.9.3

(For those wondering where v0.9.2 went: I got busy after I pushed the commit for the release, so there was no gem release that day. I am not busy today, so here is v0.9.3 in its stead. This changelog contains changes from v0.9.1 -> v0.9.3)

  • I18n no longer stores translations for unavailable locales. #391.
  • Added the ability to interpolate with arrays #395.
  • Documentation for lambda has been corrected. #396
  • I18n will use oj -- a faster JSON library -- but only if it is available. #398
  • Fixed an issue with translate and default: [false] as an option. #399
  • Fixed an issue with translate with nil and empty keys. #400
  • Fix issue with disabled subtrees and pluralization for KeyValue backend #402

Thank you to @​stereobooster, @​fatkodima and @​lulalala for the patches that went towards this release. We appreciate your efforts!

v0.9.1

  • Reverted Hash#slice behaviour introduced with #250 - See #390.
  • Fixed a regression caused by #387, where translations may have returned a not-helpful error message - See #389

v0.9.0

  • Made Backend::Memoize threadsafe. See #51 and #352.
  • Added a middleware I18n::Middleware that should be used to ensure that i18n config is reset correctly between requests. See #381 and #382.

v0.8.6

Fixed a small regression introduced in v0.8.5 when using fallbacks - See #378

v0.8.5

  • Improved error message for MissingPluralizationKey error - See #371
  • Fixed a thread issue when calling translate when fallbacks were enabled - See #369

v0.8.4

Reverted #236 - "Don't allow nil to be submitted as a key to I18n.translate" - See #370

v0.8.3

I18n::Gettext#plural_keys will now return a hash from Gettext if no arguments are provided - svenfuchs/i18n#122 Fixed a bug where passing false to translate would not translate that value - svenfuchs/i18n#367

v0.8.2

Do not allow nil to be passed to translate - svenfuchs/i18n#236

... (truncated)

Commits
  • 416859a Bump to 0.9.5
  • 5c28de8 Lock Rake to 12.2.x versions
  • 29fe565 Merge pull request #408 from wjordan/enforce_available_locales_false_fix
  • 596a71d store translations for unavailable locales if enforce_available_locales is false
  • 888abcb Bump to 0.9.4
  • ba8b206 Merge pull request #407 from fatkodima/fix-key-value-subtrees
  • 9ddc9f5 Merge pull request #406 from jhawthorn/optimize_available_locales
  • 77c26aa Fix Chained backend with KeyValue
  • 7eb3576 Optimize Backend::Simple#available_locales
  • 7c6ccf4 Bump to 0.9.3
  • Additional commits viewable in compare view

Updates json from 1.8.0 to 1.8.6

Release notes

Sourced from json's releases.

v1.8.6

Full Changelog: ruby/json@v1.8.5...v1.8.6

v1.8.5

Full Changelog: ruby/json@v1.8.3...v1.8.5

v1.8.3

Full Changelog: ruby/json@v1.8.2...v1.8.3

v1.8.2

Full Changelog: ruby/json@v1.8.1...v1.8.2

v1.8.1

Full Changelog: ruby/json@v1.8.0...v1.8.1

Changelog

Sourced from json's changelog.

2017-01-13 (1.8.6)

  • Be compatible with ancient ruby 1.8 (maybe?)

2015-09-11 (1.8.5)

  • Be compatible with ruby 2.4.0
  • There were still some mentions of dual GPL licensing in the source, but JSON has just the Ruby license that itself includes an explicit dual-licensing clause that allows covered software to be distributed under the terms of the Simplified BSD License instead for all ruby versions >= 1.9.3. This is however a GPL compatible license according to the Free Software Foundation. I changed these mentions to be consistent with the Ruby license setting in the gemspec files which were already correct now.

2015-06-01 (1.8.3)

  • Fix potential memory leak, thx to nobu.

2015-01-08 (1.8.2)

2013-05-13 (1.8.1)

  • Remove Rubinius exception since transcoding should be working now.
Commits
  • 7f4cfd8 Try to be compatible with ruby 1.8
  • 4cf6c62 Update gemspecs
  • 48c5e99 Stop testing on 1.8, it might work though
  • 5d46fb9 Travis don't know how to build these rubies
  • 7f05140 Fix conversion crash on 1.9
  • 2bcacc1 Require ruby version 2.0 or better
  • f8e2aa6 Reduce supported ruby versions
  • b4eeed1 Test newer rubies
  • c7a6e31 Use 2.3.1 for testing
  • 953f474 Merge RUBY_INTEGER_UNIFICATION changes
  • Additional commits viewable in compare view

Updates mail from 2.5.4 to 2.5.5

Changelog

Sourced from mail's changelog.

== Version 2.5.5 - 2017-06-09 Jeremy Daer [email protected]

Security:

  • #1097 – SMTP security: prevent command injection via To/From addresses. (jeremy)

Bugs:

  • #633 – Cope with message parts that have an empty Content-Type (ThomasKoppensteiner, zeepeeare)
  • #689 - Fix Exim delivery method broken by #477 in 2.5.4. (jethrogb)
Commits
  • 97a8548 2.5.5 release
  • 63fb41b Always use an SSL context. [Fixes #548]
  • f84b84d Specs: fix missing should_receive from f60ccc660434d445b78e8281833c99048a00de20
  • f60ccc6 Fix Mail::Exim, forgotten in 4875bc2b
  • 527067d Gemfile: no rdoc 5 on Ruby 1.9.2
  • 396d39f Clamp down allowed gem versions depending on Ruby version supported
  • b9cee02 Specs: fix expect-style that wasn't backported to old should-style
  • b5a2884 Backport fixes for specs on Ruby 1.9.3+
  • 6110413 Fix tested Ruby versions in README
  • ddc85ed use latest ruby version in CI
  • Additional commits viewable in compare view

Updates nokogiri from 1.6.0 to 1.16.5

Release notes

Sourced from nokogiri's releases.

v1.16.5 / 2024-05-13

Security

Dependencies


sha256 checksums:

af0f44fa3e664dfb2aa10de8b551447d720c1e8d1f0aa3f35783dcc43e40a874  nokogiri-1.16.5-aarch64-linux.gem
23dc2357b26409a5c33b7e32a82902f0e9995305420f16d1a03ab3ea1a482fec  nokogiri-1.16.5-arm-linux.gem
950d037530edb49f75ad35de0b8038b970a7dda57e2b6326895b0e49fadf6214  nokogiri-1.16.5-arm64-darwin.gem
b7aefc94370c62476b8528e8d8abb6160203abd84a1f4eceda8f1aa8974d9989  nokogiri-1.16.5-java.gem
ec2167160df8fec3137bf95d574ed80ebc1d002bb3b281546b60b4aa9002466e  nokogiri-1.16.5-x64-mingw-ucrt.gem
6984200491fac69974005ecfa2de129d61843d345eafa5d6f58e8b908d1cf107  nokogiri-1.16.5-x64-mingw32.gem
abdc389ab1ec6604492da16bd9d06ad746fdb6bd6a1bd274c400d61ffcadb3c4  nokogiri-1.16.5-x86-linux.gem
63d24981345856f2baf7f4089870a62d3042fb8d3021b280fb04fc052532e3c4  nokogiri-1.16.5-x86-mingw32.gem
71b5f54e378c433d13df67c3b71acc4716129da62402d8181f310c4216a63279  nokogiri-1.16.5-x86_64-darwin.gem
0ca238da870066bed2f7837af6f35791bb9b76c4c5638999c46aac44818a6a97  nokogiri-1.16.5-x86_64-linux.gem
ec36162c68984fa0a90a5c4ae7ab7759460639e716cc1ce75f34c3cb54158ad2  nokogiri-1.16.5.gem

v1.16.4 / 2024-04-10

Dependencies

  • [CRuby] Vendored zlib in the precompiled native gems is updated to v1.3.1 from v1.3. Nokogiri is not affected by the minizip CVE patched in this version, but this update may satisfy some security scanners. Related, see this discussion about removing the compression libraries altogether in a future version of Nokogiri.

sha256 checksums:

bdb1dc4378ebcf3ade8f440c7df68f6d76946a1a96c4823a2b4c53c01a320cd5  nokogiri-1.16.4-aarch64-linux.gem
0c994b9996d5576eddcc3201a94ef2bff6fc3627c4ae4d2708b0ec9b9743ec6a  nokogiri-1.16.4-arm-linux.gem
8e86abb64c93c06d3c588042a0e757279e8f1dc88b5210a00be892a9a7a27196  nokogiri-1.16.4-arm64-darwin.gem
bf84fa28be4943692bd64772186e0832fb1061f80714ccb93e111e9d72b1cadc  nokogiri-1.16.4-java.gem
a46808467c1f63a2031e1ca0715cd5336bb4ec759e9c0e2f4c951c1cc30994ae  nokogiri-1.16.4-x64-mingw-ucrt.gem
4cdf64bc5e9443ec3e0b595347ecc8affe21968d9ae934c0825d26630ef96468  nokogiri-1.16.4-x64-mingw32.gem
d86d21bae47dd9f6f5223055e45d33fae08b0b89aad94cbc0ece4f4274fa7af5  nokogiri-1.16.4-x86-linux.gem
d488b872884844686780fda7cf5da44ee884d32faa713a55aeb4736d76718168  nokogiri-1.16.4-x86-mingw32.gem
a896e52a56951ffb0e6a9279afbf485d683e357a053d27f4cfcb2a73b0824628  nokogiri-1.16.4-x86_64-darwin.gem
92ff4f09910255fec84b3bc4c4b182e94cada3ed12b9f7a6ea058e0af186fb31  nokogiri-1.16.4-x86_64-linux.gem
</tr></table> 

... (truncated)

Changelog

Sourced from nokogiri's changelog.

v1.16.5

Security

Dependencies

v1.16.4 / 2024-04-10

Dependencies

  • [CRuby] Vendored zlib in the precompiled native gems is updated to v1.3.1 from v1.3. Nokogiri is not affected by the minizip CVE patched in this version, but this update may satisfy some security scanners. Related, see this discussion about removing the compression libraries altogether in a future version of Nokogiri.

v1.16.3 / 2024-03-15

Dependencies

Changed

  • [CRuby] XML::Reader sets the @encoding instance variable during reading if it is not passed into the initializer. Previously, it would remain nil. The behavior of Reader#encoding has not changed. This works around changes to how libxml2 reports the encoding used in v2.12.6.

v1.16.2 / 2024-02-04

Security

Dependencies

v1.16.1 / 2024-02-03

Dependencies

... (truncated)

Commits

Updates rack from 1.4.5 to 1.4.7

Changelog

Sourced from rack's changelog.

Changelog

All notable changes to this project will be documented in this file. For info on how to format all future additions to this file please reference Keep A Changelog.

Unreleased

SPEC Changes

  • rack.input is now optional. (#1997, [@​ioquatix])
  • Rack::Utils.escape_html is now delegated to CGI.escapeHTML. ' is escaped to [#39](https://github.com/rack/rack/issues/39); instead of #x27;. (decimal vs hexadecimal) (#2099, @​JunichiIto)

Changed

  • rack.input is now optional, and if missing, will raise an error. Use this to fail on multipart parsing a request without an input body. (#2018, [@​ioquatix])
  • Introduce module Rack::BadRequest which is included in multipart and query parser errors. (#2019, [@​ioquatix])
  • MIME type for JavaScript files (.js) changed from application/javascript to text/javascript (1bd0f15)
  • Add .mjs MIME type (#2057, [@​axilleas])
  • Update MIME types associated to .ttf, .woff, .woff2 and .otf extensions to use mondern font/* types. (#2065, [@​davidstosik])
  • set_cookie_header utility now supports the partitioned cookie attribute. This is required by Chrome in some embedded contexts. (#2131, [@​flavio-b])
  • Remove non-standard status codes 306, 509, & 510 and update descriptions for 413, 422, & 451. (#2137, [@​wtn])
  • Add fallback lookup and deprecation warning for obsolete status symbols. (#2137, [@​wtn])
  • In Rack::Files, ignore the Range header if served file is 0 bytes. (#2159, [@​zarqman])

[3.0.11] - 2024-05-10

  • Backport #2062 to 3-0-stable: Do not allow BodyProxy to respond to to_str, make to_ary call close . (#2062, @​jeremyevans)

[3.0.10] - 2024-03-21

  • Backport #2104 to 3-0-stable: Return empty when parsing a multi-part POST with only one end delimiter. (#2164, @​JoeDupuis)

[3.0.9.1] - 2024-02-21

Security

[3.0.9] - 2024-01-31

  • Fix incorrect content-length header that was emitted when Rack::Response#write was used in some situations. (#2150, @​mattbrictson)

[3.0.8] - 2023-06-14

... (truncated)

Commits
  • f5c0968 bumping version
  • bf5bd20 Merge pull request #814 from johnnaegle/only_increment_open_file_count_for_fi...
  • e4f4df5 Explicitly fail when hitting the multipart limit
  • 1ae52c1 bumping the release
  • 88b067e raise an exception if the parameters are too deep
  • 688516a Prevent signals from being sent to pid 0
  • See full diff in compare view

Updates rack-ssl from 1.3.3 to 1.3.4

Commits

Updates rake from 10.1.0 to 13.2.1

Release notes

Sourced from rake's releases.

rake-10.1.1

Full Changelog: ruby/rake@rake-10.1.0.beta.3...rake-10.1.1

Changelog

Sourced from rake's changelog.

=== 13.2.1

  • Suppressed "internal:array:52:in 'Array#each'" from backtrace by @​hsbt in #554
  • Bump actions/configure-pages from 4 to 5 by @​dependabot in #553

=== 13.2.0

=== 13.1.0

... (truncated)

Commits
  • d84f6ef Bump up 13.2.1
  • 8b33b36 Merge pull request #553 from ruby/dependabot/github_actions/actions/configure...
  • 99f6823 Merge pull request #554 from ruby/suppress-array-internal
  • 54950e0 Suppressed "<internal:array>:52:in 'Array#each'" from backtrace
  • 675498c Bump up 13.2.0
  • 3dc4277 Bump actions/configure-pages from 4 to 5
  • c68e010 Merge pull request #549 from ruby/dependabot/github_actions/dependabot/fetch-...
  • 2cb46b6 Merge pull request

Bumps the bundler group with 4 updates in the /sample_app directory: [rails](https://github.com/rails/rails), [addressable](https://github.com/sporkmonger/addressable), [ffi](https://github.com/ffi/ffi) and [nokogiri](https://github.com/sparklemotion/nokogiri).


Updates `rails` from 3.2.13 to 3.2.17
- [Release notes](https://github.com/rails/rails/releases)
- [Commits](rails/rails@v3.2.13...v3.2.17)

Updates `actionmailer` from 3.2.13 to 3.2.17
- [Release notes](https://github.com/rails/rails/releases)
- [Changelog](https://github.com/rails/rails/blob/v7.1.3.2/actionmailer/CHANGELOG.md)
- [Commits](rails/rails@v3.2.13...v3.2.17)

Updates `actionpack` from 3.2.13 to 3.2.17
- [Release notes](https://github.com/rails/rails/releases)
- [Changelog](https://github.com/rails/rails/blob/v7.1.3.2/actionpack/CHANGELOG.md)
- [Commits](rails/rails@v3.2.13...v3.2.17)

Updates `activerecord` from 3.2.13 to 3.2.17
- [Release notes](https://github.com/rails/rails/releases)
- [Changelog](https://github.com/rails/rails/blob/v7.1.3.2/activerecord/CHANGELOG.md)
- [Commits](rails/rails@v3.2.13...v3.2.17)

Updates `activeresource` from 3.2.13 to 3.2.17
- [Release notes](https://github.com/rails/activeresource/releases)
- [Commits](https://github.com/rails/activeresource/commits)

Updates `activesupport` from 3.2.13 to 3.2.17
- [Release notes](https://github.com/rails/rails/releases)
- [Changelog](https://github.com/rails/rails/blob/v7.1.3.2/activesupport/CHANGELOG.md)
- [Commits](rails/rails@v3.2.13...v3.2.17)

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

Updates `ffi` from 1.9.0 to 1.16.3
- [Changelog](https://github.com/ffi/ffi/blob/master/CHANGELOG.md)
- [Commits](ffi/ffi@1.9.0...v1.16.3)

Updates `i18n` from 0.6.1 to 0.9.5
- [Release notes](https://github.com/ruby-i18n/i18n/releases)
- [Changelog](https://github.com/ruby-i18n/i18n/blob/master/CHANGELOG.md)
- [Commits](ruby-i18n/i18n@v0.6.1...v0.9.5)

Updates `json` from 1.8.0 to 1.8.6
- [Release notes](https://github.com/flori/json/releases)
- [Changelog](https://github.com/flori/json/blob/master/CHANGES.md)
- [Commits](ruby/json@v1.8.0...v1.8.6)

Updates `mail` from 2.5.4 to 2.5.5
- [Changelog](https://github.com/mikel/mail/blob/2.5.5/CHANGELOG.rdoc)
- [Commits](mikel/mail@2.5.4...2.5.5)

Updates `nokogiri` from 1.6.0 to 1.16.5
- [Release notes](https://github.com/sparklemotion/nokogiri/releases)
- [Changelog](https://github.com/sparklemotion/nokogiri/blob/main/CHANGELOG.md)
- [Commits](sparklemotion/nokogiri@v1.6.0...v1.16.5)

Updates `rack` from 1.4.5 to 1.4.7
- [Release notes](https://github.com/rack/rack/releases)
- [Changelog](https://github.com/rack/rack/blob/main/CHANGELOG.md)
- [Commits](rack/rack@1.4.5...1.4.7)

Updates `rack-ssl` from 1.3.3 to 1.3.4
- [Commits](https://github.com/josh/rack-ssl/commits)

Updates `rake` from 10.1.0 to 13.2.1
- [Release notes](https://github.com/ruby/rake/releases)
- [Changelog](https://github.com/ruby/rake/blob/master/History.rdoc)
- [Commits](ruby/rake@rake-10.1.0...v13.2.1)

Updates `sprockets` from 2.2.2 to 2.2.3
- [Release notes](https://github.com/rails/sprockets/releases)
- [Changelog](https://github.com/rails/sprockets/blob/main/CHANGELOG.md)
- [Commits](rails/sprockets@v2.2.2...v2.2.3)

Updates `tzinfo` from 0.3.37 to 0.3.62
- [Release notes](https://github.com/tzinfo/tzinfo/releases)
- [Changelog](https://github.com/tzinfo/tzinfo/blob/master/CHANGES.md)
- [Commits](tzinfo/tzinfo@v0.3.37...v0.3.62)

---
updated-dependencies:
- dependency-name: rails
  dependency-type: direct:production
  dependency-group: bundler
- dependency-name: actionmailer
  dependency-type: indirect
  dependency-group: bundler
- dependency-name: actionpack
  dependency-type: indirect
  dependency-group: bundler
- dependency-name: activerecord
  dependency-type: indirect
  dependency-group: bundler
- dependency-name: activeresource
  dependency-type: indirect
  dependency-group: bundler
- dependency-name: activesupport
  dependency-type: indirect
  dependency-group: bundler
- dependency-name: addressable
  dependency-type: indirect
  dependency-group: bundler
- dependency-name: ffi
  dependency-type: indirect
  dependency-group: bundler
- dependency-name: i18n
  dependency-type: indirect
  dependency-group: bundler
- dependency-name: json
  dependency-type: indirect
  dependency-group: bundler
- dependency-name: mail
  dependency-type: indirect
  dependency-group: bundler
- dependency-name: nokogiri
  dependency-type: indirect
  dependency-group: bundler
- dependency-name: rack
  dependency-type: indirect
  dependency-group: bundler
- dependency-name: rack-ssl
  dependency-type: indirect
  dependency-group: bundler
- dependency-name: rake
  dependency-type: indirect
  dependency-group: bundler
- dependency-name: sprockets
  dependency-type: indirect
  dependency-group: bundler
- dependency-name: tzinfo
  dependency-type: indirect
  dependency-group: bundler
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label May 14, 2024
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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants