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 12 updates #3082

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jun 25, 2024

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

Package From To
aws-sdk-s3 1.152.1 1.153.0
aws-sdk-s3control 1.83.0 1.84.0
caxlsx_rails 0.6.3 0.6.4
mini_magick 4.12.0 4.13.1
net-imap 0.4.12 0.4.14
nokogiri 1.16.5 1.16.6
pagy 8.4.4 8.4.5
rack 3.0.11 3.1.4
rspec-rails 6.1.2 6.1.3
rubocop-performance 1.21.0 1.21.1
selenium-webdriver 4.21.1 4.22.0
timecop 0.9.9 0.9.10

Updates aws-sdk-s3 from 1.152.1 to 1.153.0

Changelog

Sourced from aws-sdk-s3's changelog.

1.153.0 (2024-06-24)

  • Feature - Code Generated Changes, see ./build_tools or aws-sdk-core's CHANGELOG.md for details.

1.152.3 (2024-06-13)

  • Issue - Handle 200 errors for all S3 operations that do not have streaming responses.

1.152.2 (2024-06-12)

  • Issue - Revert Handling of 200 errors for all S3 operations.
Commits

Updates aws-sdk-s3control from 1.83.0 to 1.84.0

Changelog

Sourced from aws-sdk-s3control's changelog.

1.84.0 (2024-06-24)

  • Feature - Code Generated Changes, see ./build_tools or aws-sdk-core's CHANGELOG.md for details.
Commits

Updates caxlsx_rails from 0.6.3 to 0.6.4

Changelog

Sourced from caxlsx_rails's changelog.

Change log

June 18, 2024: 0.6.4 release

  • Convert to Github actions
  • Improve tests
  • Fix broken templates with comments as their last line

March 8, 2022: 0.6.3 release

December 18, 2019: 0.6.2 release

  • Release under caxlsx_rails

December 18, 2019: 0.6.1 release

  • Deprecate axlsx_rails name, release under caxlsx_rails
  • Switch to using caxlsx 3.0 gem

September 5, 2019: 0.6.0 release

  • Improved Rails 6.0 compatibility re MIME type

May 1st, 2018: 0.5.2 release

  • Improved Rails 5 compatibility re MIME type

March 29th, 2017: 0.5.1 release

July 26st, 2016: 0.5.0 release

  • Support for Rails 5
  • Tested on on Rails 4.0, 4.1, 4.2, and 5.0
  • Bug fixes for unreadable files and UTF-8 errors

July 13th, 2015: 0.4.0 release

  • Support for Rails 4.2
  • Removal of forced default_formats (url format must match)
  • Tested only on Rails 4.1 and 4.2
  • For Rails 3.2 or below, use 0.3.0

November 20th, 2014: 0.3.0 release

  • Support for Rails 4.2.beta4.

... (truncated)

Commits
  • 35d8740 Version bump to 0.6.4
  • 7edfebc Merge pull request #180 from caxlsx/dependabot/github_actions/actions/checkout-4
  • 12ae0c2 Bump actions/checkout from 3 to 4
  • e626ec7 Fix dependabot
  • cd752d3 Merge pull request #179 from kiskoza/fix-failing-test
  • c13142e Add dependabot to catch github action warnings
  • 911cee0 Fix failing tests for Rails 6.0, 6.1, 7.0, 7.1 by pinning down sqlite3 version
  • 508d3ba Fix failing tests for Rails 4.2 by pinning down bigdecimal and ffi versions
  • b98bc49 Update README.md
  • d3e18ec Merge pull request #175 from kiskoza/add-ruby-3.3.0-to-ci
  • Additional commits viewable in compare view

Updates mini_magick from 4.12.0 to 4.13.1

Release notes

Sourced from mini_magick's releases.

v4.13.1

  • Revert an optimization to save an identify call when retrieving image information by doing this work while validating on create, as this caused validation to hang for some SVG files.

v4.13.0

  • Warnings about convert command being deprecated on ImageMagick 7 are now ignored.

    The next major version of MiniMagick will switch to using magick on IM7, as it might not be fully compatible with magick convert.

  • If processing images is returning warnings (e.g. TIFF images tend to do that), but they're otherwise fine, you can prevent MiniMagick from forwarding warnings to standard error:

    MiniMagick.configure do |config|
      config.warnings = false
    end
  • When the ImageMagick subprocess has been abruptly killed by the operating system (e.g. OOM kill), in which case the exit status will be unknown, MiniMagick will now handle this gracefully.

  • When validating the image, the cheap info will now be automatically stored on the MiniMagick::Image object, so a subsequent call to #type, #width, #height, #dimensions, #size or #human_size will not call identify again.

  • The posix-spawn shell backend has been deprecated (see minimagick/minimagick#558).

    Ruby uses vfork since Ruby 2.2, so posix-spawn doesn't provide performance benefits on relevant Ruby versions anymore. Additionally, Ruby 3 switched to non-blocking pipes by default, which should hopefully resolve deadlocks with open3 (see minimagick/minimagick#347 and minimagick/minimagick#437). Due to this change, posix-spawn is currently incompatible with Ruby 3.

  • MiniMagick::Image#mime_type has been deprecated, due to returning incorrect MIME type for formats not starting with image/*.

    ImageMagick does have a way to return the MIME type, but it requires reading the whole image, which is significantly slower. It's recommended to use Marcel or MimeMagic for determining MIME type from magic header. Alternatively, you can use mime-types or MiniMime for obtaining MIME type from file extension or from MiniMagick::Image#type.

  • Ruby 2.3+ is now required.

Commits
  • 58a6a5e Bump to 4.13.1
  • 75432bb Revert "Save format, dimensions, size, etc when validating to avoid unnecessa...
  • ca8d406 Bump to 4.13.0
  • c39fbef Ignore warnings about convert command being deprecated on IM7
  • c7c5d2f Allow silencing warnings
  • ece9f09 Save format, dimensions, size, etc when validating to avoid unnecessary secon...
  • 6cc4ecf Also add explicit permissions to workflows (#566)
  • fe2951c Fix CI badge (#564)
  • ac2a94a Deprecate MiniMagick::Image#mime_type
  • 67547cd Handle OOM kills
  • Additional commits viewable in compare view

Updates net-imap from 0.4.12 to 0.4.14

Release notes

Sourced from net-imap's releases.

v0.4.14

What's Changed

Added

Fixed

Full Changelog: ruby/net-imap@v0.4.13...v0.4.14

v0.4.13

What's Changed

✨ Added features

  • 🔧 Add Config class for debug, open_timeout, and idle_response_timeout by @​nevans in ruby/net-imap#291
    • Net::IMAP.config for global configuration. This enables global defaults for previously client-local configuration:
      • open_timeout
      • idle_response_timeout
    • config keyword parameters for Net::IMAP.new
    • Net::IMAP#config for client configuration. This enables client-local overrides of previously global configuration:
      • debug
    • ♻️ Minor Config class tidy up by @​nevans in ruby/net-imap#295
  • 🔧 Add config option for sasl_ir by @​nevans in ruby/net-imap#294
  • 🔊 Add config option for responses_without_block by @​nevans in ruby/net-imap#293

📖 Documentation

🛠️ Other changes

Full Changelog: ruby/net-imap@v0.4.12...v0.4.13

Commits
  • e588adb 🔖 Bump version to 0.4.14
  • f1762fd 🔀 Merge pull request #304 from ruby/fix-ruby-2.7-warnings
  • c921580 🔇 Fix ruby 2.7 keyword argument warning
  • 156f86b 🔇 Fix ruby 2.7 ivar not initialized warning
  • 1920a38 🔇 Fix ruby 2.7 warning: ivar not initialized
  • 958e872 🔀 Merge pull request #301 from nevans/config-load_defaults
  • 4aa0f5f ♻️ Refactor config attrs that inherit by default
  • d8ce1cb 🔧 Add Config#load_defaults
  • 394452e 🔀 Merge pull request #302 from nevans/config/add-versioned_defaults
  • be8d5cd 🔧 Add default configs for named versions
  • Additional commits viewable in compare view

Updates nokogiri from 1.16.5 to 1.16.6

Release notes

Sourced from nokogiri's releases.

v1.16.6 / 2024-06-13

Dependencies

  • [CRuby] Vendored libxml2 is updated to v2.12.8, which the release notes state is a bugfix release.

sha256 checksums:

7f4c37ee2dd9c97fdfb6278cf3d9dd2078651f241eed320e26902135dbf78183  nokogiri-1.16.6-aarch64-linux.gem
73d7a7ca569308f181a234269e6607c9acb26ecc93ccbb05998d24a9546c0a94  nokogiri-1.16.6-arm-linux.gem
43e8a783697c65413408a4923b5c2ed6bea6632cfdab4da220446b601733fa4b  nokogiri-1.16.6-arm64-darwin.gem
993ec13a1f0fb2261913e62e1f7a662c77108b1a59c903033eac432f74437275  nokogiri-1.16.6-java.gem
285687f16c330a9b61793d9d45913becf7a9aa82b0ce15c48fc1e0d6c6c9972f  nokogiri-1.16.6-x64-mingw-ucrt.gem
dbbefbfabe363daaa90e7c0b15854769e17ee5b8ae243014e0e55c01047eb5cd  nokogiri-1.16.6-x64-mingw32.gem
dedac3ee38b4deed1141747f04dd5ac512ef9165259cec66ec934edaa8a2a848  nokogiri-1.16.6-x86-linux.gem
5080e9512e3ba320aef074c16a23aef737301ac0e3b7a173a299dcaaa40b6a20  nokogiri-1.16.6-x86-mingw32.gem
92fa413d866baf9b609f17558ecfbcf950d5373213babcf4ce11d7eaed4b21cf  nokogiri-1.16.6-x86_64-darwin.gem
769bd2c14ad76dd5a7e14c867741cf2e3b8c25626a34f40aee7b0b998b8de820  nokogiri-1.16.6-x86_64-linux.gem
935fe4dd67d4377f4a05002acb1ffbadbcae265ea8e7869fc40e3a8121f3e1ef  nokogiri-1.16.6.gem
Changelog

Sourced from nokogiri's changelog.

v1.16.6 / 2024-06-13

Dependencies

  • [CRuby] Vendored libxml2 is updated to v2.12.8, which the release notes state is a bugfix release.
Commits

Updates pagy from 8.4.4 to 8.4.5

Release notes

Sourced from pagy's releases.

Version 8.4.5

✴ What's new in 8.0+ ✴

  • New Pagy Playground to showcase, clone and develop pagy APPs without any setup on your side (try the pagy demo)
  • New :max_pages variable to limit the pagination regardless the actual count
  • Better frontend helpers
  • The foundation, materialize, semantic and uikit CSS extras have been discontinued and will be removed in v9 (See the details)
  • See the CHANGELOG for possible breaking changes

Changes in 8.4.5

  • Fix pluralization rule link on locale files (#716)
  • Install gems in pagy CI
  • Indentation changes
  • Remove :cycle false default
  • Fill aria_label.nav ca pluralized entry (#715) (Fixes #581)
  • Fix typos (#710)

CHANGELOG

Changelog

Sourced from pagy's changelog.

Version 8.4.5

  • Fix pluralization rule link on locale files (#716)
  • Install gems in pagy CI
  • Indentation changes
  • Remove :cycle false default
  • Fill aria_label.nav ca pluralized entry (#715) (Fixes #581)
  • Fix typos (#710)
Commits

Updates rack from 3.0.11 to 3.1.4

Changelog

Sourced from rack's changelog.

[3.1.4] - 2024-06-22

Fixed

  • Fix Rack::Lint matching some paths incorrectly as authority form. (#2220, [@​ioquatix])

[3.1.3] - 2024-06-12

Fixed

[3.1.2] - 2024-06-11

  • Rack::Response will take in to consideration chunked encoding responses (#2204, [@​tenderlove])

[3.1.1] - 2024-06-11

  • Oops! I shouldn't have shipped that

[3.1.0] - 2024-06-11

⚠️ This release includes several breaking changes. Refer to the Removed section below for the list of deprecated methods that have been removed in this release.

Rack v3.1 is primarily a maintenance release that removes features deprecated in Rack v3.0. Alongside these removals, there are several improvements to the Rack SPEC, mainly focused on enhancing input and output handling. These changes aim to make Rack more efficient and align better with the requirements of server implementations and relevant HTTP specifications.

SPEC Changes

Added

  • Introduce Rack::Multipart::MissingInputError for improved handling of missing input in #parse_multipart. (#2018, [@​ioquatix])
  • Introduce module Rack::BadRequest which is included in multipart and query parser errors. (#2019, [@​ioquatix])
  • Add .mjs MIME type (#2057, @​axilleas)
  • set_cookie_header utility now supports the partitioned cookie attribute. This is required by Chrome in some embedded contexts. (#2131, @​flavio-b)
  • Introduce rack.early_hints for sending 103 Early Hints informational responses. (#1831, @​casperisfine, [@​jeremyevans])

Changed

  • MIME type for JavaScript files (.js) changed from application/javascript to text/javascript (1bd0f15, [@​ioquatix])
  • Update MIME types associated to .ttf, .woff, .woff2 and .otf extensions to use mondern font/* types. (#2065, [@​davidstosik])
  • 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)
  • Clarify use of @buffered and only update content-length when Rack::Response#finish is invoked. (#2149, [@​ioquatix])

Deprecated

... (truncated)

Commits

Updates rspec-rails from 6.1.2 to 6.1.3

Changelog

Sourced from rspec-rails's changelog.

6.1.3 / 2024-06-19

Full Changelog

Bug Fixes:

  • Reset ActiveSupport::CurrentAttributes between examples. (Javier Julio, #2752)
  • Fix a broken link in generated mailer previews. (Chiara Núñez, #2764)
  • Fix have_status_code behaviour with deprecated status names by delegating to Rack::Utils.status_code/1 to set the expected status code. (Darren Boyd, #2765)
Commits

Updates rubocop-performance from 1.21.0 to 1.21.1

Release notes

Sourced from rubocop-performance's releases.

RuboCop Performance 1.21.1

Bug fixes

  • #452: Fix an error for Performance/RedundantEqualityComparisonBlock when the block is empty. (@​earlopain)
Changelog

Sourced from rubocop-performance's changelog.

1.21.1 (2024-06-16)

Bug fixes

  • #452: Fix an error for Performance/RedundantEqualityComparisonBlock when the block is empty. ([@​earlopain][])
Commits
  • decd4a4 Cut 1.21.1
  • e9acfaf Update Changelog
  • 142d49f Use sh instead of system cmd, exception: true in *.rake
  • 404ca8b Merge pull request #453 from Earlopain/readme-badge
  • dae5c83 Fix readme CI badge
  • cec9f54 Merge pull request #452 from Earlopain/fix-error-for-redundant-equality-check
  • 106202a Fix error for Performance/RedundantEqualityComparisonBlock when block is empty
  • 4752f8d Merge pull request #451 from koic/restore_skipping_specs_for_prism
  • 875bdb4 Restore skipped specs for Prism
  • eab7722 Correct some example descriptions
  • Additional commits viewable in compare view

Updates selenium-webdriver from 4.21.1 to 4.22.0

Release notes

Sourced from selenium-webdriver's releases.

Selenium 4.22.0

Detailed Changelogs by Component

Java     |     Python     |     DotNet     |     Ruby     |     JavaScript     |     IEDriver

What's Changed

New Contributors

... (truncated)

Changelog

Sourced from selenium-webdriver's changelog.

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
Commits

Updates timecop from 0.9.9 to 0.9.10

Changelog

Sourced from timecop's changelog.

v0.9.10

  • Make Process.clock_gettime configurable and turned off by default (for backwards compatability) (#427)
Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot 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 12 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [aws-sdk-s3](https://github.com/aws/aws-sdk-ruby) | `1.152.1` | `1.153.0` |
| [aws-sdk-s3control](https://github.com/aws/aws-sdk-ruby) | `1.83.0` | `1.84.0` |
| [caxlsx_rails](https://github.com/caxlsx/caxlsx_rails) | `0.6.3` | `0.6.4` |
| [mini_magick](https://github.com/minimagick/minimagick) | `4.12.0` | `4.13.1` |
| [net-imap](https://github.com/ruby/net-imap) | `0.4.12` | `0.4.14` |
| [nokogiri](https://github.com/sparklemotion/nokogiri) | `1.16.5` | `1.16.6` |
| [pagy](https://github.com/ddnexus/pagy) | `8.4.4` | `8.4.5` |
| [rack](https://github.com/rack/rack) | `3.0.11` | `3.1.4` |
| [rspec-rails](https://github.com/rspec/rspec-rails) | `6.1.2` | `6.1.3` |
| [rubocop-performance](https://github.com/rubocop/rubocop-performance) | `1.21.0` | `1.21.1` |
| [selenium-webdriver](https://github.com/SeleniumHQ/selenium) | `4.21.1` | `4.22.0` |
| [timecop](https://github.com/travisjeffery/timecop) | `0.9.9` | `0.9.10` |



Updates `aws-sdk-s3` from 1.152.1 to 1.153.0
- [Release notes](https://github.com/aws/aws-sdk-ruby/releases)
- [Changelog](https://github.com/aws/aws-sdk-ruby/blob/version-3/gems/aws-sdk-s3/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-ruby/commits)

Updates `aws-sdk-s3control` from 1.83.0 to 1.84.0
- [Release notes](https://github.com/aws/aws-sdk-ruby/releases)
- [Changelog](https://github.com/aws/aws-sdk-ruby/blob/version-3/gems/aws-sdk-s3control/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-ruby/commits)

Updates `caxlsx_rails` from 0.6.3 to 0.6.4
- [Changelog](https://github.com/caxlsx/caxlsx_rails/blob/master/CHANGELOG.md)
- [Commits](caxlsx/caxlsx_rails@v0.6.3...v0.6.4)

Updates `mini_magick` from 4.12.0 to 4.13.1
- [Release notes](https://github.com/minimagick/minimagick/releases)
- [Commits](minimagick/minimagick@v4.12.0...v4.13.1)

Updates `net-imap` from 0.4.12 to 0.4.14
- [Release notes](https://github.com/ruby/net-imap/releases)
- [Commits](ruby/net-imap@v0.4.12...v0.4.14)

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

Updates `pagy` from 8.4.4 to 8.4.5
- [Release notes](https://github.com/ddnexus/pagy/releases)
- [Changelog](https://github.com/ddnexus/pagy/blob/master/CHANGELOG.md)
- [Commits](ddnexus/pagy@8.4.4...8.4.5)

Updates `rack` from 3.0.11 to 3.1.4
- [Release notes](https://github.com/rack/rack/releases)
- [Changelog](https://github.com/rack/rack/blob/main/CHANGELOG.md)
- [Commits](https://github.com/rack/rack/commits/v3.1.4)

Updates `rspec-rails` from 6.1.2 to 6.1.3
- [Changelog](https://github.com/rspec/rspec-rails/blob/main/Changelog.md)
- [Commits](rspec/rspec-rails@v6.1.2...v6.1.3)

Updates `rubocop-performance` from 1.21.0 to 1.21.1
- [Release notes](https://github.com/rubocop/rubocop-performance/releases)
- [Changelog](https://github.com/rubocop/rubocop-performance/blob/master/CHANGELOG.md)
- [Commits](rubocop/rubocop-performance@v1.21.0...v1.21.1)

Updates `selenium-webdriver` from 4.21.1 to 4.22.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.22.0)

Updates `timecop` from 0.9.9 to 0.9.10
- [Changelog](https://github.com/travisjeffery/timecop/blob/master/History.md)
- [Commits](travisjeffery/timecop@v0.9.9...v0.9.10)

---
updated-dependencies:
- dependency-name: aws-sdk-s3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: aws-sdk-s3control
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: caxlsx_rails
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: mini_magick
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: net-imap
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: nokogiri
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: pagy
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: rack
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: rspec-rails
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: rubocop-performance
  dependency-type: direct:development
  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: timecop
  dependency-type: direct:development
  update-type: version-update:semver-patch
  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 Jun 25, 2024
@alan-at-work
Copy link
Contributor

Need to bump these as part of the refactor

Copy link
Contributor Author

dependabot bot commented on behalf of github Jun 25, 2024

This pull request was built based on a group rule. Closing it will not ignore any of these versions in future pull requests.

To ignore these dependencies, configure ignore rules in dependabot.yml

@dependabot dependabot bot deleted the dependabot/bundler/dependencies-0e3cb073c8 branch June 25, 2024 11:02
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