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 27 updates #4

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 Sep 20, 2024

Warning

Dependabot will stop supporting bundler v1!

Please upgrade to version v2.

Bumps the bundler group with 10 updates in the / directory:

Package From To
puma 3.9.1 5.6.9
simple_form 3.5.0 5.0.0
devise 4.3.0 4.9.4
rails 5.1.2 7.2.1
simple_form 5.0.0 5.3.1
sass-rails 5.0.6 6.0.0
coffee-rails 4.2.2 5.0.0
web-console 3.5.1 4.2.1
capybara 2.14.4 3.40.0
puma 5.6.9 6.4.3
selenium-webdriver 3.4.4 4.25.0
listen 3.1.5 3.9.0

Updates puma from 3.9.1 to 5.6.9

Release notes

Sourced from puma's releases.

5.6.7

Security Address HTTP request smuggling vulnerabilities with zero-length Content Length header and trailer fields (GHSA-68xg-gqqm-vgj8)

5.6.5 / 2022-08-23

  • Bugfixes
    • NullIO#closed should return false (#2883)
    • Puma::ControlCLI - allow refork command to be sent as a request (#2868, #2866)
    • [jruby] Fix TLS verification hang (#2890, #2729)
    • extconf.rb - don't use pkg_config('openssl') if '--with-openssl-dir' is used (#2885, #2839)
    • MiniSSL - detect SSL_CTX_set_dh_auto (#2864, #2863)
    • Fix rack.after_reply exceptions breaking connections (#2861, #2856)
    • Escape SSL cert and filenames (#2855)
    • Fail hard if SSL certs or keys are invalid (#2848)
    • Fail hard if SSL certs or keys cannot be read by user (#2847)
    • Fix build with Opaque DH in LibreSSL 3.5. (#2838)
    • Pre-existing socket file removed when TERM is issued after USR2 (if puma is running in cluster mode) (#2817)
    • Fix Puma::StateFile#load incompatibility (#2810)

5.6.4

  • Security

The 5.6.3 release was a mistake (released the wrong branch), 5.6.4 is correct.

5.6.2 / 2022-02-11

5.6.1

Bugfixes

  • Reverted a commit which appeared to be causing occasional blank header values (see issue #2808) (#2809)

Full Changelog: puma/puma@v5.6.0...v5.6.1

5.6.0 - Birdie's Version

Maintainer @​nateberkopec had a daughter, nicknamed Birdie:

slack-imgs

5.6.0 / 2022-01-25

  • Features
    • Support localhost integration in ssl_bind (#2764, #2708)
    • Allow backlog parameter to be set with ssl_bind DSL (#2780)
    • Remove yaml (psych) requirement in StateFile (#2784)
    • Allow culling of oldest workers, previously was only youngest (#2773, #2794)
    • Add worker_check_interval configuration option (#2759)

... (truncated)

Changelog

Sourced from puma's changelog.

5.6.9 / 2024-09-19

  • Security
    • Discards any headers using underscores if the non-underscore version also exists. Without this, an attacker could overwrite values set by intermediate proxies (e.g. X-Forwarded-For). (CVE-2024-45614/GHSA-9hf4-67fc-4vf4)

5.6.8 / 2024-01-08

  • Security
    • Limit the size of chunk extensions. Without this limit, an attacker could cause unbounded resource (CPU, network bandwidth) consumption. (GHSA-c2f4-cvqm-65w2)

5.6.7 / 2023-08-18

  • Security
    • Address HTTP request smuggling vulnerabilities with zero-length Content Length header and trailer fields (GHSA-68xg-gqqm-vgj8)

5.6.6 / 2023-06-21

  • Bugfix
    • Prevent loading with rack 3 (#3166)

5.6.5 / 2022-08-23

  • Feature

    • Puma::ControlCLI - allow refork command to be sent as a request (#2868, #2866)
  • Bugfixes

    • NullIO#closed should return false (#2883)
    • [jruby] Fix TLS verification hang (#2890, #2729)
    • extconf.rb - don't use pkg_config('openssl') if '--with-openssl-dir' is used (#2885, #2839)
    • MiniSSL - detect SSL_CTX_set_dh_auto (#2864, #2863)
    • Fix rack.after_reply exceptions breaking connections (#2861, #2856)
    • Escape SSL cert and filenames (#2855)
    • Fail hard if SSL certs or keys are invalid (#2848)
    • Fail hard if SSL certs or keys cannot be read by user (#2847)
    • Fix build with Opaque DH in LibreSSL 3.5. (#2838)
    • Pre-existing socket file removed when TERM is issued after USR2 (if puma is running in cluster mode) (#2817)
    • Fix Puma::StateFile#load incompatibility (#2810)

5.6.4 / 2022-03-30

  • Security

5.6.2 / 2022-02-11

5.6.1 / 2022-01-26

... (truncated)

Commits

Updates simple_form from 3.5.0 to 5.0.0

Changelog

Sourced from simple_form's changelog.

5.0.0

Enhancements

  • Set multiple attribute for grouped selects also. @​ollym
  • Removes or renames label classes. Abduvakilov
  • Support to label custom classes for inline collections. @​feliperenan
  • Update bootstrap generator template to match v4.3.x. @​m5o
  • Allow "required" attribute in generated select elements of PriorityInput. @​mcountis

Bug fix

  • Do not call #send in form object to check whether the attribute is a file input. @​tegon

Deprecations

  • The config SimpleForm.file_methods is deprecated and it has no effect. Simple Form now supports automatically discover of file inputs for the following Gems: activestorage, carrierwave, paperclip, refile and shrine. If you are using a custom method that is not from one of the supported Gems, please change your forms to pass the input type explicitly:
 <%= form.input :avatar, as: :file %>

See http://blog.plataformatec.com.br/2019/09/incorrect-access-control-in-simple-form-cve-2019-16676 for more information.

4.1.0

Enhancements

Bug fix

  • Improve disabled option to input_field. @​betelgeuse
  • Memoize input_html_classes in SimpleForm::Inputs::Base. @​RigoTheDev
  • Fix column type citext HTML5 input type bug. @​brucew
  • Use form attribute in the nested boolean hidden field when it is given. @​feliperenan

4.0.1

Bug fix

4.0.0

Enhancements

... (truncated)

Commits
  • 440ed5f Include information about security issues in README.md and
  • 8c91bd7 Don't call #send in form object to build file inputs
  • 62408e8 Remove ruby-head jobs
  • 69f4d46 Update jruby version
  • bcc1197 Don't run specs with jruby 9.1 and Rails 6
  • 8d56636 Fix full error message test on Rails 6
  • 13d0341 Use different assertions for Rails 5 and 6
  • 6f677ec Don't run specs with Rails 6 and older rubies
  • fc25ab4 Rails 6 and latest rubies on CI
  • 9d7921f Merge pull request #1667 from olleolleolle/patch-1
  • Additional commits viewable in compare view

Updates devise from 4.3.0 to 4.9.4

Release notes

Sourced from devise's releases.

v4.9.4

https://github.com/heartcombo/devise/blob/v4.9.4/CHANGELOG.md#494---2024-04-10

v4.9.3

https://github.com/heartcombo/devise/blob/v4.9.3/CHANGELOG.md#493---2023-10-11

v4.9.2

https://github.com/heartcombo/devise/blob/v4.9.2/CHANGELOG.md#unreleased

v4.9.1

https://github.com/heartcombo/devise/blob/v4.9.1/CHANGELOG.md#491---2023-03-31

v4.9.0

https://github.com/heartcombo/devise/blob/v4.9.0/CHANGELOG.md#490---2023-02-17

v4.8.1

No release notes provided.

v4.8.0

No release notes provided.

v4.7.1

No release notes provided.

v4.7.0

No release notes provided.

v4.6.2

No release notes provided.

v4.6.1

No release notes provided.

v4.6.0

No release notes provided.

v4.5.0

No release notes provided.

v4.4.3

No release notes provided.

v4.4.2

No release notes provided.

v4.4.1

No release notes provided.

v4.4.0

No release notes provided.

Commits
  • d5a48b4 Release v4.9.4
  • bab47e1 Adds Ruby 3.3 to CI on 4-stable
  • cee7457 Bump year [ci skip]
  • 95ed7d3 Merge pull request #5641 from henryaj/patch-1
  • edffc79 Respect locale set by controller in the failure app (#5567)
  • 1d66580 Release v4.9.3
  • dcbfb32 Merge pull request #5640 from nmaggioni/nm_config_template_typo
  • c146b25 Better clarify need to override internal_methods
  • 9a08620 Update changelog with Rails 7.1 mention [ci skip]
  • 407f223 Fix test warning about deprecated cache format in Rails 7.1
  • Additional commits viewable in compare view

Updates rails from 5.1.2 to 7.2.1

Release notes

Sourced from rails's releases.

7.2.1

Active Support

  • No changes.

Active Model

  • No changes.

Active Record

  • Fix detection for enum columns with parallelized tests and PostgreSQL.

    Rafael Mendonça França

  • Allow to eager load nested nil associations.

    fatkodima

  • Fix swallowing ignore order warning when batching using BatchEnumerator.

    fatkodima

  • Fix memory bloat on the connection pool when using the Fiber IsolatedExecutionState.

    Jean Boussier

  • Restore inferred association class with the same modularized name.

    Justin Ko

  • Fix ActiveRecord::Base.inspect to properly explain how to load schema information.

    Jean Boussier

  • Check invalid enum options for the new syntax.

    The options using _ prefix in the old syntax are invalid in the new syntax.

    Rafael Mendonça França

  • Fix ActiveRecord::Encryption::EncryptedAttributeType#type to return actual cast type.

    Vasiliy Ermolovich

... (truncated)

Commits
  • a11f0a6 Preparing for 7.2.1 release
  • 8b40780 Sync changelog
  • 2988deb Update the description of when SQLite might make sense as the configured data...
  • cd1b3db Revert "Merge pull request #49769 from jonathanhefner/active_record-enum-non-...
  • e314216 Merge pull request #52546 from Uaitt/config-assets-quiet-improvements
  • 33227d2 Merge pull request #52357 from Uaitt/clarify-upgrading-ruby-on-rails-guide
  • 2402fb4 Merge pull request #52637 from jlduran/cleanup-service-worker-white-space
  • 7600221 Fix linting issues in action_controller_overview.md
  • 90d9e12 Merge pull request #52138 from skipkayhil/hm-rack-input-is-optional
  • f42a784 Move the rewind code closer to the reason why we need to rewind
  • Additional commits viewable in compare view

Updates simple_form from 5.0.0 to 5.3.1

Changelog

Sourced from simple_form's changelog.

5.0.0

Enhancements

  • Set multiple attribute for grouped selects also. @​ollym
  • Removes or renames label classes. Abduvakilov
  • Support to label custom classes for inline collections. @​feliperenan
  • Update bootstrap generator template to match v4.3.x. @​m5o
  • Allow "required" attribute in generated select elements of PriorityInput. @​mcountis

Bug fix

  • Do not call #send in form object to check whether the attribute is a file input. @​tegon

Deprecations

  • The config SimpleForm.file_methods is deprecated and it has no effect. Simple Form now supports automatically discover of file inputs for the following Gems: activestorage, carrierwave, paperclip, refile and shrine. If you are using a custom method that is not from one of the supported Gems, please change your forms to pass the input type explicitly:
 <%= form.input :avatar, as: :file %>

See http://blog.plataformatec.com.br/2019/09/incorrect-access-control-in-simple-form-cve-2019-16676 for more information.

4.1.0

Enhancements

Bug fix

  • Improve disabled option to input_field. @​betelgeuse
  • Memoize input_html_classes in SimpleForm::Inputs::Base. @​RigoTheDev
  • Fix column type citext HTML5 input type bug. @​brucew
  • Use form attribute in the nested boolean hidden field when it is given. @​feliperenan

4.0.1

Bug fix

4.0.0

Enhancements

... (truncated)

Commits
  • 440ed5f Include information about security issues in README.md and
  • 8c91bd7 Don't call #send in form object to build file inputs
  • 62408e8 Remove ruby-head jobs
  • 69f4d46 Update jruby version
  • bcc1197 Don't run specs with jruby 9.1 and Rails 6
  • 8d56636 Fix full error message test on Rails 6
  • 13d0341 Use different assertions for Rails 5 and 6
  • 6f677ec Don't run specs with Rails 6 and older rubies
  • fc25ab4 Rails 6 and latest rubies on CI
  • 9d7921f Merge pull request #1667 from olleolleolle/patch-1
  • Additional commits viewable in compare view

Updates sass-rails from 5.0.6 to 6.0.0

Release notes

Sourced from sass-rails's releases.

6.0.0

Breaking change

v5.0.7

  • Remove ruby warnings
Commits
  • a77240c Prepare to 6.0.0
  • 8dbe4dc Bump version to 6.0.0.beta3
  • 830a8ec Bump minimum version of sassc-rails
  • ff54c20 Fix open-ended dependency
  • ebe9ef7 Bump version to v6.0.0.beta2
  • 409d871 Merge pull request #424 from rails/sassc-rails
  • d809900 Recomend to use SassC::Rails::Importer to users requiring sass/rails/importer
  • 706526d Make sass-rails an wrapper for sassc-rails to allow a smooth upgrade path
  • ac38f1e Merge pull request #423 from gregmolnar/master
  • d61b999 remove gemnasium badge from readme
  • Additional commits viewable in compare view

Updates coffee-rails from 4.2.2 to 5.0.0

Changelog

Sourced from coffee-rails's changelog.

5.0.0 (Apr 23, 2019)

  • Remove support to Rails < 5.2.
  • Support Rails 6.
Commits
  • 32a2939 Prepare to 5.0.0
  • 6507f0a Set the javascripts generator option as true in the railtie
  • 5f0e005 Point to rails repository
  • 74214e8 Merge pull request #114 from larouxn/rails_6_support
  • eff9c00 Revert folder structure changes, remove --javascripts flag
  • e7ce694 Fix for exclusively Rails 6
  • 69e6782 TESTING, use my fork of Rails
  • fc8c48c Conditionally use Rails 6 folder stucture
  • 5df5816 Merge pull request #111 from larouxn/stop_testing_below_ruby_2.2
  • 9bead93 Merge pull request #112 from larouxn/update_travis_jruby_version
  • Additional commits viewable in compare view

Updates web-console from 3.5.1 to 4.2.1

Release notes

Sourced from web-console's releases.

4.2.1

What's Changed

  • Support to Rails 7.1
  • Support to Rack 3.0

New Contributors

Full Changelog: rails/web-console@v4.2.0...v4.2.1

4.2.0

4.1.0

4.0.4

4.0.3

... (truncated)

Changelog

Sourced from web-console's changelog.

4.2.1

  • Support to Rails 7.1
  • Support to Rack 3.0

4.2.0

4.1.0

4.0.4

4.0.3

4.0.2

4.0.1

4.0.0

3.7.0

... (truncated)

Commits
  • a3b7c2a Prepare for 4.2.1
  • 8c1670f Merge pull request #332 from JoeDupuis/support-rack-2-and-3
  • 33f6d58 [FIX #331] Add simultaneous support for both Rack 2 and 3
  • 4f7e392 Test with all supported versions of Rails
  • 7536fb0 Test with Ruby 3.2
  • 11efc57 Only adds the deprecator in the app if Rails supports it
  • dc3df04 Remove warning by defining the constant in the right place
  • 405d4af Add devcontainer config
  • 3cb71a1 Merge pull request #325 from etiennebarrie/use-dedicated-deprecator
  • d07fa6a Use a dedicated ActiveSupport::Deprecation object
  • Additional commits viewable in compare view

Updates capybara from 2.14.4 to 3.40.0

Changelog

Sourced from capybara's changelog.

Version 3.40.0

Release date: 2024-01-26

Changned

  • Dropped support for Ruby 2.7, 3.0+ is now required
  • Dropped support for Selenium < 4.8
  • Use the new headless option on chromedriver with registered selenium driver [Neil Carvalho]

Added

  • Capybara::Result#to_ary to support multiple assignment [Sean Doyle]
  • has_element? and related matchers [Sean Doyle]
  • Rack 3 support

Fixed

  • Forward save_screenshot options to selenium - Issue 2738
  • Rack test - don't auto submit forms with multiple inputs [Mitchell Henke]
  • Table row selector matches cell values in order - Issue 2686 [Jeff Parr]
  • Table row selector fixes for first column - Issue 2685 [Jeff Par]

Version 3.39.2

Release date: 2023-06-10

Fixed

  • Fix Selenium version comparison [aki77]

Version 3.39.1

Release date: 2023-05-12

Fixed

  • Fix usage of Selenium logger

Version 3.39.0

Release date: 2023-04-02

Added

  • Support :target filter option on :link selector [Yudai Takada]
  • Experimental Rack 3 support
  • Text normalization performance improvements [Brandon Weaver]

Fixed

  • MS Edge button click [Brian J. Bayer]
  • Options/Capabilities choosing based on Selenium versions
  • Support for base versions [Matijs van Zuijlen]

... (truncated)

Commits

Updates puma from 5.6.9 to 6.4.3

Release notes

Sourced from puma's releases.

5.6.7

Security Address HTTP request smuggling vulnerabilities with zero-length Content Length header and trailer fields (GHSA-68xg-gqqm-vgj8)

5.6.5 / 2022-08-23

  • Bugfixes
    • NullIO#closed should return false (#2883)
    • Puma::ControlCLI - allow refork command to be sent as a request (#2868, #2866)
    • [jruby] Fix TLS verification hang (#2890, #2729)
    • extconf.rb - don't use pkg_config('openssl') if '--with-openssl-dir' is used (#2885, #2839)
    • MiniSSL - detect SSL_CTX_set_dh_auto (#2864, #2863)
    • Fix rack.after_reply exceptions breaking connections (#2861, #2856)
    • Escape SSL cert and filenames (#2855)
    • Fail hard if SSL certs or keys are invalid (#2848)
    • Fail hard if SSL certs or keys cannot be read by user (#2847)
    • Fix build with Opaque DH in LibreSSL 3.5. (#2838)
    • Pre-existing socket file removed when TERM is issued after USR2 (if puma is running in cluster mode) (#2817)
    • Fix Puma::StateFile#load incompatibility (#2810)

5.6.4

  • Security

The 5.6.3 release was a mistake (released the wrong branch), 5.6.4 is correct.

5.6.2 / 2022-02-11

5.6.1

Bugfixes

  • Reverted a commit which appeared to be causing occasional blank header values (see issue #2808) (#2809)

Full Changelog: puma/puma@v5.6.0...v5.6.1

5.6.0 - Birdie's Version

Maintainer @​nateberkopec had a daughter, nicknamed Birdie:

slack-imgs

5.6.0 / 2022-01-25

  • Features
    • Support localhost integration in ssl_bind (#2764, #2708)
    • Allow backlog parameter to be set with ssl_bind DSL (#2780)
    • Remove yaml (psych) requirement in StateFile (#2784)
    • Allow culling of oldest workers, previously was only youngest (#2773, #2794)
    • Add worker_check_interval configuration option (#2759)

... (truncated)

Changelog

Sourced from puma's changelog.

5.6.9 / 2024-09-19

  • Security
    • Discards any headers using underscores if the non-underscore version also exists. Without this, an attacker could overwrite values set by intermediate proxies (e.g. X-Forwarded-For). (CVE-2024-45614/GHSA-9hf4-67fc-4vf4)

5.6.8 / 2024-01-08

  • Security
    • Limit the size of chunk extensions. Without this limit, an attacker could cause unbounded resource (CPU, network bandwidth) consumption. (GHSA-c2f4-cvqm-65w2)

5.6.7 / 2023-08-18

  • Security
    • Address HTTP request smuggling vulnerabilities with zero-length Content Length header and trailer fields (GHSA-68xg-gqqm-vgj8)

5.6.6 / 2023-06-21

  • Bugfix
    • Prevent loading with rack 3 (#3166)

5.6.5 / 2022-08-23

  • Feature

    • Puma::ControlCLI - allow refork command to be sent as a request (#2868, #2866)
  • Bugfixes

    • NullIO#closed should return false (#2883)
    • [jruby] Fix TLS verification hang (#2890, #2729)
    • extconf.rb - don't use pkg_config('openssl') if '--with-openssl-dir' is used (#2885, #2839)
    • MiniSSL - detect SSL_CTX_set_dh_auto (#2864, #2863)
    • Fix rack.after_reply exceptions breaking connections (#2861, #2856)
    • Escape SSL cert and filenames (#2855)
    • Fail hard if SSL certs or keys are invalid (#2848)
    • Fail hard if SSL certs or keys cannot be read by user (#2847)
    • Fix build with Opaque DH in LibreSSL 3.5. (#2838)
    • Pre-existing socket file removed when TERM is issued after USR2 (if puma is running in cluster mode) (#2817)
    • Fix Puma::StateFile#load incompatibility (#2810)

5.6.4 / 2022-03-30

  • Security

5.6.2 / 2022-02-11

5.6.1 / 2022-01-26

... (truncated)

Commits

Updates selenium-webdriver from 3.4.4 to 4.25.0

Release notes

Sourced from selenium-webdriver's releases.

Selenium 4.25.0

Detailed Changelogs by Component

Java     |     Python     |     DotNet     |     Ruby     |     JavaScript     |     IEDriver

What's Changed

... (truncated)

Changelog

Sourced from selenium-webdriver's changelog.

4.25.0 (2024-09-19)

  • Add CDP for Chrome 129 and remove 126
  • Fix add_cause method not being able to process an array of hashes (#14433)
  • replace fedcm links with new ones (#14478)
  • Allow driver path to be set using ENV variables (#14287)

4.24.0 (2024-08-23)

  • Deprecate WebStorage JS methods (#14276)
  • BUGFIX: Add stamp to nightly build (#14320)
  • Add timeout and tests for curb, also added the gem curb that was not part of selenium (#14285)
  • Add CDP for Chrome 128 and remove 125

4.23.0 (2024-07-18)

  • Add FedCM support to the ruby selenium client (#13796)
  • Add URLs constant to update error messages (#14174)
  • Update selenium manager types (#14189)
  • Add backtrace locations and cause to errors (#14170)
  • Add CDP for Chrome 127 and remove 124

4.22.0 (2024-06-20)

  • Force UTF-8 encoding on logger (see #6937)
  • Don't crash when ChildProcess is already killed (see #14032)
  • Manage bidi instance on the bridge not the driver (#14071)
  • Implement High Level Logging API with BiDi (#14073)
  • Fix bug with message deletion in Guard class
  • Change output for Guard class
  • Implement toggle for BiDi and Classic implementations (#14092)
  • Add preference to enable CDP in Firefox by default (#14091)
  • Add support for the w3c silent option for the ruby library (#14152)
  • Add CDP for Chrome 126 and remove 123

4.21.1 (2024-05-16)

  • Fixed missing Chrome binary error in Rails system tests.

4.21.0 (2024-05-16)

  • Add CDP for Chrome 125 and remove 122
  • Initial extensibility points for Appium
    • Support registering extra headers in HTTP client
    • Support overriding User-Agent in HTTP client
    • Support registering extra bridge commands
    • Support overriding default locator conversion

... (truncated)

Commits
  • See full...

    Description has been truncated

Bumps the bundler group with 10 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [puma](https://github.com/puma/puma) | `3.9.1` | `5.6.9` |
| [simple_form](https://github.com/heartcombo/simple_form) | `3.5.0` | `5.0.0` |
| [devise](https://github.com/heartcombo/devise) | `4.3.0` | `4.9.4` |
| [rails](https://github.com/rails/rails) | `5.1.2` | `7.2.1` |
| [simple_form](https://github.com/heartcombo/simple_form) | `5.0.0` | `5.3.1` |
| [sass-rails](https://github.com/rails/sass-rails) | `5.0.6` | `6.0.0` |
| [coffee-rails](https://github.com/rails/coffee-rails) | `4.2.2` | `5.0.0` |
| [web-console](https://github.com/rails/web-console) | `3.5.1` | `4.2.1` |
| [capybara](https://github.com/teamcapybara/capybara) | `2.14.4` | `3.40.0` |
| [puma](https://github.com/puma/puma) | `5.6.9` | `6.4.3` |
| [selenium-webdriver](https://github.com/SeleniumHQ/selenium) | `3.4.4` | `4.25.0` |
| [listen](https://github.com/guard/listen) | `3.1.5` | `3.9.0` |



Updates `puma` from 3.9.1 to 5.6.9
- [Release notes](https://github.com/puma/puma/releases)
- [Changelog](https://github.com/puma/puma/blob/master/History.md)
- [Commits](puma/puma@v3.9.1...v5.6.9)

Updates `simple_form` from 3.5.0 to 5.0.0
- [Release notes](https://github.com/heartcombo/simple_form/releases)
- [Changelog](https://github.com/heartcombo/simple_form/blob/main/CHANGELOG.md)
- [Commits](heartcombo/simple_form@v3.5.0...v5.0.0)

Updates `devise` from 4.3.0 to 4.9.4
- [Release notes](https://github.com/heartcombo/devise/releases)
- [Changelog](https://github.com/heartcombo/devise/blob/main/CHANGELOG.md)
- [Commits](heartcombo/devise@v4.3.0...v4.9.4)

Updates `rails` from 5.1.2 to 7.2.1
- [Release notes](https://github.com/rails/rails/releases)
- [Commits](rails/rails@v5.1.2...v7.2.1)

Updates `simple_form` from 5.0.0 to 5.3.1
- [Release notes](https://github.com/heartcombo/simple_form/releases)
- [Changelog](https://github.com/heartcombo/simple_form/blob/main/CHANGELOG.md)
- [Commits](heartcombo/simple_form@v3.5.0...v5.0.0)

Updates `sass-rails` from 5.0.6 to 6.0.0
- [Release notes](https://github.com/rails/sass-rails/releases)
- [Commits](rails/sass-rails@v5.0.6...v6.0.0)

Updates `coffee-rails` from 4.2.2 to 5.0.0
- [Changelog](https://github.com/rails/coffee-rails/blob/master/CHANGELOG.md)
- [Commits](rails/coffee-rails@v4.2.2...v5.0.0)

Updates `web-console` from 3.5.1 to 4.2.1
- [Release notes](https://github.com/rails/web-console/releases)
- [Changelog](https://github.com/rails/web-console/blob/main/CHANGELOG.markdown)
- [Commits](rails/web-console@v3.5.1...v4.2.1)

Updates `capybara` from 2.14.4 to 3.40.0
- [Changelog](https://github.com/teamcapybara/capybara/blob/master/History.md)
- [Commits](teamcapybara/capybara@2.14.4...3.40.0)

Updates `puma` from 5.6.9 to 6.4.3
- [Release notes](https://github.com/puma/puma/releases)
- [Changelog](https://github.com/puma/puma/blob/master/History.md)
- [Commits](puma/puma@v3.9.1...v5.6.9)

Updates `selenium-webdriver` from 3.4.4 to 4.25.0
- [Release notes](https://github.com/SeleniumHQ/selenium/releases)
- [Changelog](https://github.com/SeleniumHQ/selenium/blob/trunk/rb/CHANGES)
- [Commits](https://github.com/SeleniumHQ/selenium/commits/selenium-4.25.0)

Updates `listen` from 3.1.5 to 3.9.0
- [Release notes](https://github.com/guard/listen/releases)
- [Commits](guard/listen@v3.1.5...v3.9.0)

Updates `actionpack` from 5.1.2 to 7.2.1
- [Release notes](https://github.com/rails/rails/releases)
- [Changelog](https://github.com/rails/rails/blob/v7.2.1/actionpack/CHANGELOG.md)
- [Commits](rails/rails@v5.1.2...v7.2.1)

Updates `actionview` from 5.1.2 to 7.2.1
- [Release notes](https://github.com/rails/rails/releases)
- [Changelog](https://github.com/rails/rails/blob/v7.2.1/actionview/CHANGELOG.md)
- [Commits](rails/rails@v5.1.2...v7.2.1)

Updates `activejob` from 5.1.2 to 7.2.1
- [Release notes](https://github.com/rails/rails/releases)
- [Changelog](https://github.com/rails/rails/blob/v7.2.1/activejob/CHANGELOG.md)
- [Commits](rails/rails@v5.1.2...v7.2.1)

Updates `activerecord` from 5.1.2 to 7.2.1
- [Release notes](https://github.com/rails/rails/releases)
- [Changelog](https://github.com/rails/rails/blob/v7.2.1/activerecord/CHANGELOG.md)
- [Commits](rails/rails@v5.1.2...v7.2.1)

Updates `activesupport` from 5.1.2 to 7.2.1
- [Release notes](https://github.com/rails/rails/releases)
- [Changelog](https://github.com/rails/rails/blob/v7.2.1/activesupport/CHANGELOG.md)
- [Commits](rails/rails@v5.1.2...v7.2.1)

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

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

Updates `globalid` from 0.4.0 to 1.2.1
- [Release notes](https://github.com/rails/globalid/releases)
- [Commits](rails/globalid@v0.4.0...v1.2.1)

Updates `loofah` from 2.0.3 to 2.22.0
- [Release notes](https://github.com/flavorjones/loofah/releases)
- [Changelog](https://github.com/flavorjones/loofah/blob/main/CHANGELOG.md)
- [Commits](flavorjones/loofah@v2.0.3...v2.22.0)

Updates `nokogiri` from 1.8.0 to 1.16.7
- [Release notes](https://github.com/sparklemotion/nokogiri/releases)
- [Changelog](https://github.com/sparklemotion/nokogiri/blob/main/CHANGELOG.md)
- [Commits](sparklemotion/nokogiri@v1.8.0...v1.16.7)

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

Updates `rails-html-sanitizer` from 1.0.3 to 1.6.0
- [Release notes](https://github.com/rails/rails-html-sanitizer/releases)
- [Changelog](https://github.com/rails/rails-html-sanitizer/blob/main/CHANGELOG.md)
- [Commits](rails/rails-html-sanitizer@v1.0.3...v1.6.0)

Updates `rake` from 12.0.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@v12.0.0...v13.2.1)

Updates `rubyzip` from 1.2.1 to 2.3.2
- [Release notes](https://github.com/rubyzip/rubyzip/releases)
- [Changelog](https://github.com/rubyzip/rubyzip/blob/master/Changelog.md)
- [Commits](rubyzip/rubyzip@v1.2.1...v2.3.2)

Updates `sprockets` from 3.7.1 to 4.2.1
- [Release notes](https://github.com/rails/sprockets/releases)
- [Changelog](https://github.com/rails/sprockets/blob/main/CHANGELOG.md)
- [Commits](rails/sprockets@v3.7.1...v4.2.1)

Updates `tzinfo` from 1.2.3 to 2.0.6
- [Release notes](https://github.com/tzinfo/tzinfo/releases)
- [Changelog](https://github.com/tzinfo/tzinfo/blob/master/CHANGES.md)
- [Commits](tzinfo/tzinfo@v1.2.3...v2.0.6)

Updates `websocket-extensions` from 0.1.2 to 0.1.5
- [Changelog](https://github.com/faye/websocket-extensions-ruby/blob/main/CHANGELOG.md)
- [Commits](faye/websocket-extensions-ruby@0.1.2...0.1.5)

---
updated-dependencies:
- dependency-name: puma
  dependency-type: direct:production
  dependency-group: bundler
- dependency-name: simple_form
  dependency-type: direct:production
  dependency-group: bundler
- dependency-name: devise
  dependency-type: direct:production
  dependency-group: bundler
- dependency-name: rails
  dependency-type: direct:production
  dependency-group: bundler
- dependency-name: simple_form
  dependency-type: direct:production
  dependency-group: bundler
- dependency-name: sass-rails
  dependency-type: direct:production
  dependency-group: bundler
- dependency-name: coffee-rails
  dependency-type: direct:production
  dependency-group: bundler
- dependency-name: web-console
  dependency-type: direct:development
  dependency-group: bundler
- dependency-name: capybara
  dependency-type: direct:development
  dependency-group: bundler
- dependency-name: puma
  dependency-type: direct:production
  dependency-group: bundler
- dependency-name: selenium-webdriver
  dependency-type: direct:development
  dependency-group: bundler
- dependency-name: listen
  dependency-type: direct:development
  dependency-group: bundler
- dependency-name: actionpack
  dependency-type: indirect
  dependency-group: bundler
- dependency-name: actionview
  dependency-type: indirect
  dependency-group: bundler
- dependency-name: activejob
  dependency-type: indirect
  dependency-group: bundler
- dependency-name: activerecord
  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: globalid
  dependency-type: indirect
  dependency-group: bundler
- dependency-name: loofah
  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: rails-html-sanitizer
  dependency-type: indirect
  dependency-group: bundler
- dependency-name: rake
  dependency-type: indirect
  dependency-group: bundler
- dependency-name: rubyzip
  dependency-type: indirect
  dependency-group: bundler
- dependency-name: sprockets
  dependency-type: indirect
  dependency-group: bundler
- dependency-name: tzinfo
  dependency-type: indirect
  dependency-group: bundler
- dependency-name: websocket-extensions
  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 Sep 20, 2024
Copy link

coderabbitai bot commented Sep 20, 2024

Important

Review skipped

Bot user detected.

To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.


Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    -- I pushed a fix in commit <commit_id>, please review it.
    -- Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    -- @coderabbitai generate unit testing code for this file.
    -- @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    -- @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    -- @coderabbitai read src/utils.ts and generate unit testing code.
    -- @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    -- @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link

guardrails bot commented Sep 20, 2024

⚠️ We detected 5 security issues in this pull request:

Vulnerable Libraries (5)
Severity Details
High pkg:gem/[email protected] upgrade to: > 5.0.0
High pkg:gem/[email protected] upgrade to: > 4.9.4
High pkg:gem/[email protected] upgrade to: > 7.2.1
High pkg:gem/[email protected] upgrade to: > 6.0.0
High pkg:gem/[email protected] upgrade to: > 4.2.1

More info on how to fix Vulnerable Libraries in Ruby.


👉 Go to the dashboard for detailed results.

📥 Happy? Share your feedback with us.

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