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 dependencies group across 1 directory with 7 updates #136

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jul 29, 2024

Bumps the dependencies group with 7 updates in the / directory:

Package From To
sqlite3 1.7.3 2.0.2
turbo-rails 2.0.5 2.0.6
selenium-webdriver 4.22.0 4.23.0
rack-mini-profiler 2.3.4 3.3.1
honeybadger 5.14.2 5.15.3
nio4r 2.7.0 2.7.3
sassc 2.1.0 2.4.0

Updates sqlite3 from 1.7.3 to 2.0.2

Release notes

Sourced from sqlite3's releases.

2.0.2 / 2024-05-23

Dependencies


sha256 checksums:

64296bb750efa19c4249136c2289799a4ac044116b7cc095784dc56358964dc1  sqlite3-2.0.2-aarch64-linux-gnu.gem
cc62889120bb62c98b513fc2b5fc91da944ed7e139efcc4a85fe1d03258462e3  sqlite3-2.0.2-aarch64-linux-musl.gem
29f74fb1af530ea4d1826efa8cb369ea11e476fd885843bceb191ef000c62695  sqlite3-2.0.2-arm-linux-gnu.gem
bbacba2099fe6084b073d4d4e23e54823345a8d2e98800380036fe7ae3323092  sqlite3-2.0.2-arm-linux-musl.gem
184e28292d46feea9132cd936bfe01d47a08a6d7839bc4c5eb3f09b9bed2e770  sqlite3-2.0.2-arm64-darwin.gem
c8144a1f4e2eea742fb4a4fdc9d0ba674c4e787ebb582671b8b69739f9fed191  sqlite3-2.0.2-x64-mingw-ucrt.gem
1c39e02dbb8099215e74a816d6d375136cc9851cf6833248b9cd888e022d627e  sqlite3-2.0.2-x64-mingw32.gem
1b92d4b4e54ba0245bc5d16415891e697766d62eb188fc173356e03f03881d78  sqlite3-2.0.2-x86-linux-gnu.gem
b256dbdb7117d60a0171df875fc2e07d001f03699bf12a196bf6f415b068643d  sqlite3-2.0.2-x86-linux-musl.gem
390c6284f89774cb228fb180b75ac54e5009b0aa24c72f18ad07465635029ea8  sqlite3-2.0.2-x86_64-darwin.gem
15dbf6f47755acb063c5b71a2dd6c65ba582eab3e0d9d4e95cde737120333efb  sqlite3-2.0.2-x86_64-linux-gnu.gem
5b7867dee7401c80db616828c31e5e20963c1dd7d4682757c9cc5aaba627b36c  sqlite3-2.0.2-x86_64-linux-musl.gem
326e53ffb89d050eb00274945078ff7af9026594a7031874af4e9f172cf6154d  sqlite3-2.0.2.gem

2.0.1 / 2024-04-20

Fixed

  • Raise ArgumentError if Database#execute, #execute_batch, or #query are passed multiple bind parameters that are not in an Array. In v2.0.0 these methods would silently swallow additional arguments, and this change makes the failure explicit. See the CHANGELOG notes for v2.0.0 for examples on how to update your code. #527 @​flavorjones
  • Fixed a regression in v2.0.0 that caused Database#execute_batch to raise an encoding exception when passed some non-ascii strings. As a result of this fix, Database#prepare now ensures the "remainder" string will always be encoded as UTF-8. #524 @​flavorjones

sha256 checksums:

752cb885faf5e5d80b2fda5601b1168f1461e2e63e18c62cab8cf32fc4b05d8e  sqlite3-2.0.1-aarch64-linux-gnu.gem
637f90e5ec6d30b34fc49d7acc50b0f569d8c58699c2157e818e5e99c2594fcf  sqlite3-2.0.1-aarch64-linux-musl.gem
0ff1acf7e110c7bbfd140682f14926c5b2e84fe01620dc19ab4f6de1deadc1fd  sqlite3-2.0.1-arm-linux-gnu.gem
09d9f9723683a97a9454f593eecbf6c029670c4c0f7059fcfa62eb12e3d47b93  sqlite3-2.0.1-arm-linux-musl.gem
0efb2ca9d6c184c9960322b2a32ec86355f523b50089b0f26147b2abdfc94583  sqlite3-2.0.1-arm64-darwin.gem
937cc0c0668565c863c0e1736e3172726729a210a1a8fb59b857509ffd6ca835  sqlite3-2.0.1-x64-mingw-ucrt.gem
ee01997371e3dc3495f46dec9f1667a49fe65fe8f635edcd203048d639aa0948  sqlite3-2.0.1-x64-mingw32.gem
bf395f9b713811eb5d068056df986531038f79b5a3d49dfa42b1ac164c937c3b  sqlite3-2.0.1-x86-linux-gnu.gem
3082b2a19bfd7e33539c407adc646c58e5985b6344e192f715f04bb65cc82727  sqlite3-2.0.1-x86-linux-musl.gem
9fd4ee3d3aa6f1a4703abe0a5d247f31ae2757cb6a3be89664dfb714ba55d5b4  sqlite3-2.0.1-x86_64-darwin.gem
97cd463ea0f7e31e85814918ab70ebf4ca87b2b829d4664ea2787a39a6c4ffa6  sqlite3-2.0.1-x86_64-linux-gnu.gem
f6d1d84a49df5ba11a99998ee76dc004eeb3e4129037126ed085833cf471edda  sqlite3-2.0.1-x86_64-linux-musl.gem
</tr></table> 

... (truncated)

Changelog

Sourced from sqlite3's changelog.

2.0.2 / 2024-05-23

Dependencies

2.0.1 / 2024-04-20

Fixed

  • Raise ArgumentError if Database#execute, #execute_batch, or #query are passed multiple bind parameters that are not in an Array. In v2.0.0 these methods would silently swallow additional arguments, and this change makes the failure explicit. See the CHANGELOG notes for v2.0.0 for examples on how to update your code. #527 @​flavorjones
  • Fixed a regression in v2.0.0 that caused Database#execute_batch to raise an encoding exception when passed some non-ascii strings. As a result of this fix, Database#prepare now ensures the "remainder" string will always be encoded as UTF-8. #524 @​flavorjones

2.0.0 / 2024-04-17

This is a major release which contains some breaking changes, primarily the removal of long-deprecated functionality. Before upgrading, please make sure to address deprecation warnings emitted from your application using sqlite3-ruby v1.7.x.

Ruby

Packaging

Native (precompiled) gems are now available for Linux Musl. #442 @​flavorjones

Here are the platforms for which native gems are shipped:

  • aarch64-linux-gnu (requires: glibc >= 2.29)
  • aarch64-linux-musl
  • arm-linux-gnu (requires: glibc >= 2.29)
  • arm-linux-musl
  • arm64-darwin
  • x64-mingw32 / x64-mingw-ucrt
  • x86-linux-gnu (requires: glibc >= 2.17)
  • x86-linux-musl
  • x86_64-darwin
  • x86_64-linux-gnu (requires: glibc >= 2.17)
  • x86_64-linux-musl

⚠ Ruby 3.0 linux users must use Rubygems >= 3.3.22 in order to use these gems.

⚠ Musl linux users should update to Bundler >= 2.5.6 to avoid rubygems/rubygems#7432

See the INSTALLATION doc for more information.

... (truncated)

Commits
  • eaf8f1e version bump to v2.0.2
  • 9d3adc6 Merge pull request #537 from sparklemotion/flavorjones-fix-github-actions-bre...
  • aae90b9 ci: macos images already have sqlite and pkg-config installed
  • c80fb27 Merge pull request #536 from sparklemotion/flavorjones-dep-sqlite-3.46.0
  • 58cb339 dep: update vendored sqlite3 to 3.46.0
  • 478e416 Merge pull request #535 from sparklemotion/dependabot/bundler/minitest-5.23.0
  • dc78e24 build(deps-dev): update minitest requirement from 5.22.3 to 5.23.0
  • 0870486 Merge pull request #534 from sparklemotion/dependabot/bundler/ruby_memcheck-3...
  • b442e65 build(deps-dev): update ruby_memcheck requirement from 2.3.0 to 3.0.0
  • 096088b doc: mention that pkgconf is a prereq to source builds
  • Additional commits viewable in compare view

Updates turbo-rails from 2.0.5 to 2.0.6

Release notes

Sourced from turbo-rails's releases.

v2.0.6

What's Changed

New Contributors

Full Changelog: hotwired/turbo-rails@v2.0.5...v2.0.6

Commits
  • 14b965f Update to latest turbo version
  • dbc8fe3 Bump version
  • 5f2c10b Bump version
  • 1ad9574 Update turbo version
  • 1428954 Remove morph broadcast helpers (#647)
  • 4f54481 Merge pull request #645 from dentarg/ci/bump-ferrum-timeouts
  • 6d02bf8 CI: bump Ferrum/Chrome timeouts
  • 41e8561 Merge pull request #584 from Uaitt/update-github-actions
  • 0960206 Merge pull request #562 from skipkayhil/hm-fix-double-renderer-registration
  • 669ba6d Merge pull request #502 from dorner/fix-array-to-a-bug
  • Additional commits viewable in compare view

Updates selenium-webdriver from 4.22.0 to 4.23.0

Release notes

Sourced from selenium-webdriver's releases.

Selenium 4.23.0

Detailed Changelogs by Component

Java     |     Python     |     DotNet     |     Ruby     |     JavaScript     |     IEDriver

What's Changed

  • 4df0a231af - [build] Prepare for release of Selenium 4.23.0 (#14273) :: Selenium CI Bot
  • e5422e6a4e - [bidi][java] Add high-level logging APIs (#14225) :: Puja Jagani
  • 8cf9a59153 - [grid] Set session-request-timeout as client readTimeout in RemoteNewSessionQueue (#14272) :: Viet Nguyen Duc
  • f3724e661a - [java] Consistent UTF-8 Encoding and Code Enhancements (#14218) :: Alex
  • 72e3a61001 - [java] custom duration for Actions constructor (#14085) :: Alex
  • 10b3305fe5 - Update logo path in readme (#14177) :: Nikolay Borisenko
  • d8830283fb - [rb] Add backtrace locations and cause to errors (#14170) :: Augustin Gottlieb Pequeno
  • 4a17ec391c - [java] Merge android specific parameters in chrome options (#14217) :: Alex
  • 9aa1a7f3ee - py: fix RelativeBy#near to take 2 parameters (#13082) :: pinterior
  • 9d6131f48e - Remove 'browserName' capability from stereotype when using RelaySession (#14247) :: bhecquet
  • 82715b914b - [dotnet] Quit fails after not successful new session (#14242) :: Indomitable
  • 79512380c6 - [bidi][js] Deprecate argument value wrapper class (#14251) :: Puja Jagani
  • 12769d6785 - [java] Revert workaround for old netty http client (addendum to #12843) (#14134) :: Oleksandr Kulychok
  • 7334bfc473 - [bidi][js] Add high-level script pinning APIs (#14250) :: Puja Jagani
  • 0f6884149f - [bidi][js] Add dom mutation handlers (#14238) :: Puja Jagani
  • 785914e555 - [py] Remove precompiled binaries from sdist (#14233) :: James Hilliard
  • 6b28a8c03f - [bidi] Add source type to log entry (#14244) :: Puja Jagani
  • df75c3a739 - [rb] Update selenium manager types (#14189) :: Augustin Gottlieb Pequeno
  • f09642274e - [dotnet] Return back protected synchronous Execute method in WebDriver :: Nikolay Borisenko
  • 425ed87c9e - [bidi][js] Add methods to add/remove handlers in Script module (#14230) :: Puja Jagani
  • 5e8d6a1f93 - [bidi][java] Avoid creating new instances of log entry event :: Puja Jagani
  • 06e7b7a4d7 - [bidi][java] Ensure empty values are removed from the call back map :: Puja Jagani
  • 5c087471ad - [bidi] [java] Fix the adding and the removing listener :: Puja Jagani
  • 48fd9563cb - [bidi] [java] Ensure the listeners returns an id (#14215) :: Puja Jagani
  • 5494108076 - [py] websocket-client v.1.8.0 was added to setup.py (#14187) :: Alex
  • fe7e7c7434 - [js + bazel]: Run Node browser tests on the RBE (#14194) :: Simon Stewart
  • 164bf7944b - [bidi][java] Remove the method that converts node value to RemoteWebElement :: Puja Jagani
  • e8745c61e3 - [java] Deleting tests referencing deprecated methods in Require.java :: Diego Molina
  • 257104ea93 - Bump JS dependencies (#14193) :: Simon Stewart
  • dcd99ce83a - [java] Removing usages of deprecated methods in Require.java :: Diego Molina
  • 2b32dbd572 - [java] Removing LocateNodeParameters.Builder, deprecated since 4.20 :: Diego Molina
  • 034a582078 - [java] Setting proxy in SM only when it is needed. :: Diego Molina
  • abdaa7539a - [js][bidi] Fix the event unsubscribe method. Update modules to have close methods. (#14192) :: Puja Jagani
  • 84cc67e7c7 - [rb] Add URLs constant to update error messages (#14174) :: Augustin Gottlieb Pequeno
  • fd5f54ebd7 - [rb] Run remote tests on RBE (#13906) :: Alex Rodionov
  • 8184982ab0 - [build] add notes for where automated build can be improved for next release :: titusfortner
  • 815839a857 - [build] ensure rust version and changelog are properly committed :: titusfortner
  • 917b2d4a57 - [build] parse patch version tags to update and PR just applicable languages :: titusfortner
  • 826a6bddeb - [rb] Add FedCM support to the ruby selenium client (#13796) :: Augustin Gottlieb Pequeno
  • 0770acd6c0 - [build] Release Staging workflow automatically runs Update Documentation workflow :: titusfortner
  • 4ec3e7a9de - [build] have update-documentation make a PR from the updated branch :: titusfortner
  • fbd6ff324d - [build] add temporary code to update documentattion workflow to generate correct api docs :: titusfortner
  • 6936f64293 - Updates the py api doc build (#14173) :: Ed Manlove
  • aba09e486d - [dotnet] Kick off sending of request and log it in parallel :: Nikolay Borisenko

... (truncated)

Changelog

Sourced from selenium-webdriver's changelog.

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
Commits

Updates rack-mini-profiler from 2.3.4 to 3.3.1

Release notes

Sourced from rack-mini-profiler's releases.

3.3.0

  • [FEATURE] Use ?pp=flamegraph?ignore_gc=true or config.flamegraph_ignore_gc to ignore gc in flamegraphs. #599

3.2.0

  • [BREAKING CHANGE] Ruby version 2.7.0 or later is required.
  • [FEATURE] All RMP actions can be chosen by including a X-Rack-Mini-Profiler header as well as by query parameter. #578
  • [FEATURE] Speedscope 1.12 -> 1.16
  • [FIX] If patch_rails is false, do not patch mysql2 or pg #583
  • [FIX] vertical position bottom now aligns the detail window correctly #581
  • [FIX] Webpacker hiccup in some setups #582
  • [INTERNAL] Capture rows instantiated by ActiveRecord, UI to be added later #585
  • [INTERNAL] Lots of refactoring.

3.1.0

  • [FEATURE] The query parameter that RMP uses (by default, pp) is now configurable #553
  • [FEATURE] You can now opt-out of the Net::HTTP patch by using RACK_MINI_PROFILER_PATCH_NET_HTTP="false"
  • [FIX] Error responses now include header values from the app, and stackprof not installed message now has correct content #547
  • [FIX] RMP pages now have more valid HTML, with title elements #552
  • [BREAKING CHANGE] Ruby 2.4 and Ruby 2.5 are no longer supported.
  • [FIX] Now works with apps that don't otherwise require erb #531
  • [DOCS] Added Heroku Redis instructions
  • [DEPRECATION] We are changing the name of the generators to rack_mini_profiler, e.g. rack_mini_profiler:install #550

3.0.0

No release notes provided.

Changelog

Sourced from rack-mini-profiler's changelog.

3.3.1 - 2024-02-15

  • [FEATURE] Support dynamic config.content_security_policy_nonce #609
  • [FEATURE] Add flamgraph path to response header: #601

3.3.0 - 2023-12-07

  • [FEATURE] Use ?pp=flamegraph?ignore_gc=true or config.flamegraph_ignore_gc to ignore gc in flamegraphs. #599

3.2.1 - 2023-12-07

  • [FIX] memory_profiler was broken due to an undefined local #597

3.2.0 - 2023-12-06

  • [BREAKING CHANGE] Ruby version 2.7.0 or later is required.
  • [FEATURE] All RMP actions can be chosen by including a X-Rack-Mini-Profiler header as well as by query parameter. #578
  • [FEATURE] Speedscope 1.12 -> 1.16
  • [FIX] If patch_rails is false, do not patch mysql2 or pg #583
  • [FIX] vertical position bottom now aligns the detail window correctly #581
  • [FIX] Webpacker hiccup in some setups #582
  • [INTERNAL] Capture rows instantiated by ActiveRecord, UI to be added later #585
  • [INTERNAL] Lots of refactoring.

3.1.1 - 2023-08-01

  • [FIX] Include configured base path in speedscope iframe URL #587
  • [FIX] Race condition starting CacheCleanupThread #586
  • [FEATURE] Add controller name to description #567
  • [FIX] 'more' link w/HTTPS #574

3.1.0 - 2023-04-11

  • [FEATURE] The query parameter that RMP uses (by default, pp) is now configurable #553
  • [FEATURE] You can now opt-out of the Net::HTTP patch by using RACK_MINI_PROFILER_PATCH_NET_HTTP="false"
  • [FIX] Error responses now include header values from the app, and stackprof not installed message now has correct content #547
  • [FIX] RMP pages now have more valid HTML, with title elements #552
  • [BREAKING CHANGE] Ruby 2.4 and Ruby 2.5 are no longer supported.
  • [FIX] Now works with apps that don't otherwise require erb #531
  • [DOCS] Added Heroku Redis instructions
  • [DEPRECATION] We are changing the name of the generators to rack_mini_profiler, e.g. rack_mini_profiler:install #550

3.0.0 - 2022-02-24

  • PERF: Improve snapshots page performance (#518) (introduces breaking changes to the API of AbstractStore, MemoryStore and RedisStore, and removes the snapshots_limit config option.)
Commits

Updates honeybadger from 5.14.2 to 5.15.3

Release notes

Sourced from honeybadger's releases.

v5.15.3

5.15.3 (2024-07-25)

Bug Fixes

v5.15.2

5.15.2 (2024-07-25)

Bug Fixes

  • don't send "key" in cache event payloads (#596) (b05ba2d)

v5.15.1

5.15.1 (2024-07-23)

Bug Fixes

  • safe navigate adapter_name for payload connection (#593) (368fb16)
  • sidekiq leader check only for version > 6.5 (#594) (3bc005b)

v5.15.0

5.15.0 (2024-07-18)

Features

  • define default events to ignore, allow for override (#570) (a6f2177)
Changelog

Sourced from honeybadger's changelog.

5.15.3 (2024-07-25)

Bug Fixes

5.15.2 (2024-07-25)

Bug Fixes

  • don't send "key" in cache event payloads (#596) (b05ba2d)

5.15.1 (2024-07-23)

Bug Fixes

  • safe navigate adapter_name for payload connection (#593) (368fb16)
  • sidekiq leader check only for version > 6.5 (#594) (3bc005b)

5.15.0 (2024-07-18)

Features

  • define default events to ignore, allow for override (#570) (a6f2177)
Commits

Updates nio4r from 2.7.0 to 2.7.3

Release notes

Sourced from nio4r's releases.

v2.7.1

What's Changed

Full Changelog: socketry/nio4r@v2.7.0...v2.7.1

Changelog

Sourced from nio4r's changelog.

2.7.2

  • Modernize gem (list all authors, etc).
  • Drop official support for Ruby 2.4.
  • Fix JRuby release version.

2.7.1

  • Fix license specification.
  • Fix JRuby build warnings.
Commits

Updates sassc from 2.1.0 to 2.4.0

Changelog

Sourced from sassc's changelog.

... (truncated)

Commits
  • 2adab27 version bump
  • 4bd764f Merge pull request #205 from larskanis/remove-libc
  • 1039a4d Merge pull request #193 from okuramasafumi/test-against-ruby-27
  • 9256d01 Merge pull request #199 from ahorek/libsass_update_364
  • d6d9dab Use FFI::MemoryPointer instead of libc's malloc()
  • 38cbb78 Update libsass to 3.6.4
  • 7df1271 update changelog
  • c51169a version bump 2.3.0
  • 1bc1c54 Merge pull request #196 from casperisfine/drop-32bit-targets
  • ee8154d Fix rake gem:native task
  • 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 dependencies group with 7 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [sqlite3](https://github.com/sparklemotion/sqlite3-ruby) | `1.7.3` | `2.0.2` |
| [turbo-rails](https://github.com/hotwired/turbo-rails) | `2.0.5` | `2.0.6` |
| [selenium-webdriver](https://github.com/SeleniumHQ/selenium) | `4.22.0` | `4.23.0` |
| [rack-mini-profiler](https://github.com/MiniProfiler/rack-mini-profiler) | `2.3.4` | `3.3.1` |
| [honeybadger](https://github.com/honeybadger-io/honeybadger-ruby) | `5.14.2` | `5.15.3` |
| [nio4r](https://github.com/socketry/nio4r) | `2.7.0` | `2.7.3` |
| [sassc](https://github.com/sass/sassc-ruby) | `2.1.0` | `2.4.0` |



Updates `sqlite3` from 1.7.3 to 2.0.2
- [Release notes](https://github.com/sparklemotion/sqlite3-ruby/releases)
- [Changelog](https://github.com/sparklemotion/sqlite3-ruby/blob/main/CHANGELOG.md)
- [Commits](sparklemotion/sqlite3-ruby@v1.7.3...v2.0.2)

Updates `turbo-rails` from 2.0.5 to 2.0.6
- [Release notes](https://github.com/hotwired/turbo-rails/releases)
- [Commits](hotwired/turbo-rails@v2.0.5...v2.0.6)

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

Updates `rack-mini-profiler` from 2.3.4 to 3.3.1
- [Release notes](https://github.com/MiniProfiler/rack-mini-profiler/releases)
- [Changelog](https://github.com/MiniProfiler/rack-mini-profiler/blob/master/CHANGELOG.md)
- [Commits](MiniProfiler/rack-mini-profiler@v2.3.4...v3.3.1)

Updates `honeybadger` from 5.14.2 to 5.15.3
- [Release notes](https://github.com/honeybadger-io/honeybadger-ruby/releases)
- [Changelog](https://github.com/honeybadger-io/honeybadger-ruby/blob/master/CHANGELOG.md)
- [Commits](honeybadger-io/honeybadger-ruby@v5.14.2...v5.15.3)

Updates `nio4r` from 2.7.0 to 2.7.3
- [Release notes](https://github.com/socketry/nio4r/releases)
- [Changelog](https://github.com/socketry/nio4r/blob/main/changes.md)
- [Commits](socketry/nio4r@v2.7.0...v2.7.3)

Updates `sassc` from 2.1.0 to 2.4.0
- [Changelog](https://github.com/sass/sassc-ruby/blob/master/CHANGELOG.md)
- [Commits](sass/sassc-ruby@v2.1.0...v2.4.0)

---
updated-dependencies:
- dependency-name: sqlite3
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: turbo-rails
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: selenium-webdriver
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: rack-mini-profiler
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: honeybadger
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: nio4r
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: sassc
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
...

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 Jul 29, 2024
@jcoyne
Copy link
Member

jcoyne commented Jul 29, 2024

@dependabot rebase

Copy link
Contributor Author

dependabot bot commented on behalf of github Jul 29, 2024

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Jul 29, 2024
@dependabot dependabot bot deleted the dependabot/bundler/dependencies-9bb9210cc0 branch July 29, 2024 15:11
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.

1 participant