Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 1, 2025

⚠️ Dependabot is rebasing this PR ⚠️

Rebasing might not happen immediately, so don't worry if this takes some time.

Note: if you make any changes to this PR yourself, they will take precedence over the rebase.


Bumps the ruby-deps group with 16 updates:

Package From To
sassc-embedded 1.80.4 1.80.5
middleman-syntax 3.5.0 3.6.0
middleman-livereload 3.4.7 3.5.0
aws-sdk-s3 1.191.0 1.195.0
async 2.25.0 2.27.0
aws-partitions 1.1123.0 1.1139.0
aws-sdk-core 3.226.1 3.228.0
aws-sdk-kms 1.106.0 1.109.0
console 1.31.0 1.33.0
io-event 1.11.0 1.12.1
json 2.12.2 2.13.2
mime-types-data 3.2025.0624 3.2025.0729
rack-livereload 0.3.17 0.6.1
temple 0.10.3 0.10.4
thor 1.3.2 1.4.0
tilt 2.6.0 2.6.1

Updates sassc-embedded from 1.80.4 to 1.80.5

Commits
  • 29bfc9d v1.80.5
  • 7058c59 Remove extra existence checks
  • 48b7d89 Update rubocop requirement from ~> 1.77.0 to ~> 1.78.0 (#135)
  • b6b18e3 Fix test
  • 4574423 Update rubocop requirement from ~> 1.76.0 to ~> 1.77.0 (#134)
  • e3d0ee6 Update rubocop requirement from ~> 1.75.0 to ~> 1.76.0 (#133)
  • cc9349f Bump vendor/github.com/rails/sprockets from 2fe13f2 to 4dff018 (#132)
  • 8b8b705 Bump vendor/github.com/twbs/bootstrap-rubygem (#131)
  • c6d3a98 Update rubocop-performance requirement from ~> 1.24.0 to ~> 1.25.0 (#130)
  • 78bda38 Update rubocop-minitest requirement from ~> 0.37.1 to ~> 0.38.0 (#129)
  • Additional commits viewable in compare view

Updates middleman-syntax from 3.5.0 to 3.6.0

Changelog

Sourced from middleman-syntax's changelog.

3.6.0

  • Lexer options don't get passed to lexer (#92).
Commits

Updates middleman-livereload from 3.4.7 to 3.5.0

Changelog

Sourced from middleman-livereload's changelog.

3.5.0

  • Upgade rack-livereload gem
  • Migrate to GitHub Actions
  • Match supported Ruby versions with MM ecosystem
Commits

Updates aws-sdk-s3 from 1.191.0 to 1.195.0

Changelog

Sourced from aws-sdk-s3's changelog.

1.195.0 (2025-07-31)

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

1.194.0 (2025-07-21)

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

1.193.0 (2025-07-15)

  • Feature - Amazon S3 Metadata live inventory tables provide a queryable inventory of all the objects in your general purpose bucket so that you can determine the latest state of your data. To help minimize your storage costs, use journal table record expiration to set a retention period for your records.

1.192.0 (2025-07-02)

  • Feature - Added support for directory bucket creation with tags and bucket ARN retrieval in CreateBucket, ListDirectoryBuckets, and HeadBucket operations
Commits

Updates async from 2.25.0 to 2.27.0

Changelog

Sourced from async's changelog.

v2.27.0

  • Async::Task#stop supports an optional cause: argument (that defaults to $!), which allows you to specify the cause (exception) for stopping the task.
  • Add thread-safety agent context.

v2.26.0

  • Async::Notification#signal now returns true if a task was signaled, false otherwise, providing better feedback for notification operations.
  • require "async/limited_queue" is required to use Async::LimitedQueue without a deprecation warning. Async::LimitedQueue is not deprecated, but it's usage via async/queue is deprecated.
  • Async::Task#sleep is deprecated with no replacement.
  • Async::Task.yield is deprecated with no replacement.
  • Async::Scheduler#async is deprecated, use Async{}, Sync{} or Async::Task#async instead.
  • Agent context is now available, via the agent-context gem.

Async::Barrier Improvements

Async::Barrier now provides more flexible and predictable behavior for waiting on task completion:

  • Completion-order waiting: barrier.wait now processes tasks in the order they complete rather than the order they were created. This provides more predictable behavior when tasks have different execution times.
  • Block-based waiting: barrier.wait now accepts an optional block that yields each task as it completes, allowing for custom handling of individual tasks:
barrier = Async::Barrier.new
Start several tasks
3.times do |i|
barrier.async do |task|
sleep(rand * 0.1)  # Random completion time
"result_#{i}"
end
end
Wait for all tasks, processing them as they complete
barrier.wait do |task|
result = task.wait
puts "Task completed with: #{result}"
end

  • Partial completion support: The new block-based interface allows you to wait for only the first N tasks to complete:
# Wait for only the first 3 tasks to complete
count = 0
barrier.wait do |task|
	task.wait
</tr></table> 

... (truncated)

Commits

Updates aws-partitions from 1.1123.0 to 1.1139.0

Changelog

Sourced from aws-partitions's changelog.

1.1139.0 (2025-07-31)

  • Feature - Updated the partitions source data the determines the AWS service regions and endpoints.

1.1138.0 (2025-07-30)

  • Feature - Updated the partitions source data the determines the AWS service regions and endpoints.

1.1137.0 (2025-07-29)

  • Feature - Updated the partitions source data the determines the AWS service regions and endpoints.

1.1136.0 (2025-07-28)

  • Feature - Updated the partitions source data the determines the AWS service regions and endpoints.

1.1135.0 (2025-07-24)

  • Feature - Updated the partitions source data the determines the AWS service regions and endpoints.

1.1134.0 (2025-07-23)

  • Feature - Updated the partitions source data the determines the AWS service regions and endpoints.

1.1133.0 (2025-07-22)

  • Feature - Updated the partitions source data the determines the AWS service regions and endpoints.

1.1132.0 (2025-07-21)

  • Feature - Updated the partitions source data the determines the AWS service regions and endpoints.

1.1131.0 (2025-07-18)

  • Feature - Updated the partitions source data the determines the AWS service regions and endpoints.

1.1130.0 (2025-07-17)

  • Feature - Updated the partitions source data the determines the AWS service regions and endpoints.

... (truncated)

Commits

Updates aws-sdk-core from 3.226.1 to 3.228.0

Changelog

Sourced from aws-sdk-core's changelog.

3.228.0 (2025-07-31)

  • Feature - Add bigdecimal as a dependency. For systems that are not able to build native extension gems, prefer the locally installed bigdecimal with bundle install --prefer-local.

3.227.0 (2025-07-21)

  • Feature - Updated Aws::STS::Client with the latest API changes.

  • Feature - Updated Aws::SSOOIDC::Client with the latest API changes.

  • Feature - Updated Aws::SSO::Client with the latest API changes.

  • Feature - Support an auth scheme signing preference list using ENV['AWS_AUTH_SCHEME_PREFERENCE'] or auth_scheme_preference in shared configuration.

  • Feature - Support metric tracking for Bedrock Bearer tokens.

3.226.3 (2025-07-17)

  • Issue - Skip Aws::InstanceProfileCredentials instantiation when ENV['AWS_EC2_METADATA_DISABLED'] is set to true in the credential resolution chain.

  • Issue - Refactor InstanceProfileCredentials to improve code clarity and documentation.

3.226.2 (2025-07-01)

  • Issue - Document incorrect behavior in protocol error parsing (specifically around query and query compatible services).
Commits

Updates aws-sdk-kms from 1.106.0 to 1.109.0

Changelog

Sourced from aws-sdk-kms's changelog.

1.109.0 (2025-07-31)

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

1.108.0 (2025-07-25)

  • Feature - Doc only update: fixed grammatical errors.

1.107.0 (2025-07-21)

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

Updates console from 1.31.0 to 1.33.0

Updates io-event from 1.11.0 to 1.12.1

Changelog

Sourced from io-event's changelog.

Releases

v1.11.2

  • Fix Windows build.

v1.11.1

  • Fix read_nonblock when using the URing selector, which was not handling zero-length reads correctly. This allows reading available data without blocking.
Commits

Updates json from 2.12.2 to 2.13.2

Release notes

Sourced from json's releases.

v2.13.2

What's Changed

  • Improve duplicate key warning and errors to include the key name and point to the right caller.

Full Changelog: ruby/json@v2.13.1...v2.13.2

v2.13.1

What's Changed

  • Fix support for older compilers without __builtin_cpu_supports.

Full Changelog: ruby/json@v2.13.0...v2.13.1

v2.13.0

What's Changed

  • Add new allow_duplicate_key parsing options. By default a warning is now emitted when a duplicated key is encountered. In json 3.0 an error will be raised.
  • Optimize parsing further using SIMD to scan strings.

Full Changelog: ruby/json@v2.12.2...v2.13.0

Changelog

Sourced from json's changelog.

2025-07-28 (2.13.2)

  • Improve duplicate key warning and errors to include the key name and point to the right caller.

2025-07-24 (2.13.1)

  • Fix support for older compilers without __builtin_cpu_supports.

2025-07-17 (2.13.0)

  • Add new allow_duplicate_key parsing options. By default a warning is now emitted when a duplicated key is encountered. In json 3.0 an error will be raised.
  • Optimize parsing further using SIMD to scan strings.
Commits
  • 9e3efbf Release 2.13.2
  • 132049b Improve deprecation warning location detection
  • db4c428 Merge pull request #832 from byroot/duplicated-key-error-message-2
  • cd51557 Fix duplicated key warning location
  • bea97e0 Merge pull request #831 from byroot/duplicated-key-error-message
  • e3de4cc Improve duplicate key warning and errors to include the key name
  • 6d29d75 Merge pull request #830 from nobu/indent
  • 1988a3a Keep indentation consistent across functions
  • 17dd7b6 Merge pull request #829 from nobu/static-linked-ext
  • 020693b Functions defined in headers should be static inline
  • Additional commits viewable in compare view

Updates mime-types-data from 3.2025.0624 to 3.2025.0729

Changelog

Sourced from mime-types-data's changelog.

3.2025.0729 / 2025-07-29

  • Updated registry entries from the IANA [media registry][registry] and [provisional media registry][provisional], the [Apache httpd media registry][httpd], and the [Apache Tika media registry][tika] as of the release date.

  • Remove .doc from text/plain: The use of .doc for text/plain documents is mostly a holdover from VAX VMS where the default wasn't .txt but .doc. The world now thinks that .doc mostly means application/msword even though that format is obsolete by almost twenty years. Closes [ruby-mime-types#224][ruby-mime-types#224] with #191[pull-191].

  • Handle promoted and withdrawn provisional IANA media types. Closes #54[issue-54] with #192[pull-192].

    The logic is three relatively simple phases:

    1. When loading an existing registry grouping (such as types/application.yaml), we mark any type that is provisional as obsolete. This indicates that we consider any provisional type as potentially withdrawn (and therefore obsolete).
    2. When processing existing regular types, we clear both provisional and obsolete flags so that a type promoted from provisional is now a regular registry entry.
    3. After merging the current list of registry entries, we clear provisional if the type is marked both provisional and obsolete, indicating that the provisional type has been withdrawn.

    These heuristics match several types which have been promoted and withdrawn since the handling of provisional types was improved with #53[pull-53].

3.2025.0722 / 2025-07-22

  • Updated registry entries from the IANA [media registry][registry] and [provisional media registry][provisional], the [Apache httpd media registry][httpd], and the [Apache Tika media registry][tika] as of the release date.

3.2025.0715 / 2025-07-15

  • Updated registry entries from the IANA [media registry][registry] and [provisional media registry][provisional], the [Apache httpd media registry][httpd], and the [Apache Tika media registry][tika] as of the release date.

3.2025.0708 / 2025-07-08

  • Updated registry entries from the IANA [media registry][registry] and

... (truncated)

Commits
  • 8a86bff Update mime-types-data 3.2025.0729 / 2025-07-29
  • f72847a deps: Bump astral-sh/setup-uv from 6.4.1 to 6.4.3
  • 29fec61 deps: Bump ruby/setup-ruby from 1.247.0 to 1.253.0
  • e277d46 chore: Handle promoted and withdrawn provisional IANA media types
  • 65ed6e6 chore: Remove .doc from text/plain
  • a20c527 chore: Update workflows
  • 28d9c46 Update mime-types-data 3.2025.0722 / 2025-07-22
  • 3373008 deps: Bump astral-sh/setup-uv from 6.3.1 to 6.4.1
  • 8ee8f6f deps: Bump ruby/setup-ruby from 1.245.0 to 1.247.0
  • 21e58ac chore: Update hardened runner settings
  • Additional commits viewable in compare view

Updates rack-livereload from 0.3.17 to 0.6.1

Commits

Updates temple from 0.10.3 to 0.10.4

Changelog

Sourced from temple's changelog.

0.10.4

  • Fix Ruby 3.4 compatibility (#152)
Commits

Updates thor from 1.3.2 to 1.4.0

Release notes

Sourced from thor's releases.

1.4.0

What's Changed

New Contributors

Full Changelog: rails/thor@v1.3.2...v1.4.0

Commits
  • 518ae0f Prepare for 1.4.0
  • b4879f0 Update devcontainer configuration
  • 40412ec Merge pull request #904 from rails/revert-893-use-secure-thor-link
  • ae7cd4f Revert "Use secure whatisthor.com link"
  • b73c346 Merge pull request #890 from Uaitt/update-gh-action-versions
  • b14cfd4 Merge pull request #891 from Uaitt/correct-typo-in-comment
  • 048bbdd Merge pull request #877 from G-Rath/gsub_file-error-on-no-change
  • 13bd825 Merge pull request #900 from moguls753/main
  • 536b790 Merge pull request #897 from odaysec/patch-1
  • 094bd41 Merge pull request #898 from Edouard-chin/ec-encoding
  • Additional commits viewable in compare view

Updates tilt from 2.6.0 to 2.6.1

Changelog

Sourced from tilt's changelog.

2.6.1 (2025-07-07)

  • Fix race condition during parallel coverage testing using Template compiled_path option/method (jeremyevans)
Commits
  • 0697fe4 Bump version to 2.6.1
  • 048f0f1 Fix commonmarker tests with recent commonmarker versions
  • beda3c4 Fix race condition during parallel coverage testing using Template compiled_p...
  • e3fd319 Add JRuby 10.0 to CI
  • 5f55e89 Limit Redcarpet version in CI on Ruby 2.0
  • 4d8906b Add base64 and logger to CI gemfile
  • 8d22375 Drop JRuby 9.1 CI
  • a528024 Try readding JRuby 9.1/9.2 CI
  • See full diff 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 ruby-deps group with 16 updates:

| Package | From | To |
| --- | --- | --- |
| [sassc-embedded](https://github.com/sass-contrib/sassc-embedded-shim-ruby) | `1.80.4` | `1.80.5` |
| [middleman-syntax](https://github.com/middleman/middleman-syntax) | `3.5.0` | `3.6.0` |
| [middleman-livereload](https://github.com/middleman/middleman-livereload) | `3.4.7` | `3.5.0` |
| [aws-sdk-s3](https://github.com/aws/aws-sdk-ruby) | `1.191.0` | `1.195.0` |
| [async](https://github.com/socketry/async) | `2.25.0` | `2.27.0` |
| [aws-partitions](https://github.com/aws/aws-sdk-ruby) | `1.1123.0` | `1.1139.0` |
| [aws-sdk-core](https://github.com/aws/aws-sdk-ruby) | `3.226.1` | `3.228.0` |
| [aws-sdk-kms](https://github.com/aws/aws-sdk-ruby) | `1.106.0` | `1.109.0` |
| [console](https://socketry.github.io/console) | `1.31.0` | `1.33.0` |
| [io-event](https://github.com/socketry/io-event) | `1.11.0` | `1.12.1` |
| [json](https://github.com/ruby/json) | `2.12.2` | `2.13.2` |
| [mime-types-data](https://github.com/mime-types/mime-types-data) | `3.2025.0624` | `3.2025.0729` |
| [rack-livereload](https://github.com/onesupercoder/rack-livereload) | `0.3.17` | `0.6.1` |
| [temple](https://github.com/judofyr/temple) | `0.10.3` | `0.10.4` |
| [thor](https://github.com/rails/thor) | `1.3.2` | `1.4.0` |
| [tilt](https://github.com/jeremyevans/tilt) | `2.6.0` | `2.6.1` |


Updates `sassc-embedded` from 1.80.4 to 1.80.5
- [Commits](sass-contrib/sassc-embedded-shim-ruby@v1.80.4...v1.80.5)

Updates `middleman-syntax` from 3.5.0 to 3.6.0
- [Changelog](https://github.com/middleman/middleman-syntax/blob/master/CHANGELOG.md)
- [Commits](middleman/middleman-syntax@v3.5.0...v3.6.0)

Updates `middleman-livereload` from 3.4.7 to 3.5.0
- [Changelog](https://github.com/middleman/middleman-livereload/blob/master/CHANGELOG.md)
- [Commits](middleman/middleman-livereload@v3.4.7...v3.5.0)

Updates `aws-sdk-s3` from 1.191.0 to 1.195.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 `async` from 2.25.0 to 2.27.0
- [Release notes](https://github.com/socketry/async/releases)
- [Changelog](https://github.com/socketry/async/blob/main/releases.md)
- [Commits](socketry/async@v2.25.0...v2.27.0)

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

Updates `aws-sdk-core` from 3.226.1 to 3.228.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-core/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-ruby/commits)

Updates `aws-sdk-kms` from 1.106.0 to 1.109.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-kms/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-ruby/commits)

Updates `console` from 1.31.0 to 1.33.0

Updates `io-event` from 1.11.0 to 1.12.1
- [Release notes](https://github.com/socketry/io-event/releases)
- [Changelog](https://github.com/socketry/io-event/blob/main/releases.md)
- [Commits](socketry/io-event@v1.11.0...v1.12.1)

Updates `json` from 2.12.2 to 2.13.2
- [Release notes](https://github.com/ruby/json/releases)
- [Changelog](https://github.com/ruby/json/blob/master/CHANGES.md)
- [Commits](ruby/json@v2.12.2...v2.13.2)

Updates `mime-types-data` from 3.2025.0624 to 3.2025.0729
- [Changelog](https://github.com/mime-types/mime-types-data/blob/main/CHANGELOG.md)
- [Commits](mime-types/mime-types-data@v3.2025.0624...v3.2025.0729)

Updates `rack-livereload` from 0.3.17 to 0.6.1
- [Commits](https://github.com/onesupercoder/rack-livereload/commits)

Updates `temple` from 0.10.3 to 0.10.4
- [Changelog](https://github.com/judofyr/temple/blob/master/CHANGES)
- [Commits](judofyr/temple@v0.10.3...v0.10.4)

Updates `thor` from 1.3.2 to 1.4.0
- [Release notes](https://github.com/rails/thor/releases)
- [Commits](rails/thor@v1.3.2...v1.4.0)

Updates `tilt` from 2.6.0 to 2.6.1
- [Changelog](https://github.com/jeremyevans/tilt/blob/master/CHANGELOG.md)
- [Commits](jeremyevans/tilt@v2.6.0...v2.6.1)

---
updated-dependencies:
- dependency-name: sassc-embedded
  dependency-version: 1.80.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: ruby-deps
- dependency-name: middleman-syntax
  dependency-version: 3.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: ruby-deps
- dependency-name: middleman-livereload
  dependency-version: 3.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: ruby-deps
- dependency-name: aws-sdk-s3
  dependency-version: 1.195.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: ruby-deps
- dependency-name: async
  dependency-version: 2.27.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: ruby-deps
- dependency-name: aws-partitions
  dependency-version: 1.1139.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: ruby-deps
- dependency-name: aws-sdk-core
  dependency-version: 3.228.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: ruby-deps
- dependency-name: aws-sdk-kms
  dependency-version: 1.109.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: ruby-deps
- dependency-name: console
  dependency-version: 1.33.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: ruby-deps
- dependency-name: io-event
  dependency-version: 1.12.1
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: ruby-deps
- dependency-name: json
  dependency-version: 2.13.2
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: ruby-deps
- dependency-name: mime-types-data
  dependency-version: 3.2025.0729
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: ruby-deps
- dependency-name: rack-livereload
  dependency-version: 0.6.1
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: ruby-deps
- dependency-name: temple
  dependency-version: 0.10.4
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: ruby-deps
- dependency-name: thor
  dependency-version: 1.4.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: ruby-deps
- dependency-name: tilt
  dependency-version: 2.6.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: ruby-deps
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file ruby Pull requests that update Ruby code labels Aug 1, 2025
@chadlwilson
Copy link
Member

@dependabot rebase

@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Aug 1, 2025

Looks like this PR is already up-to-date with master! If you'd still like to recreate it from scratch, overwriting any edits, you can request @dependabot recreate.

@chadlwilson
Copy link
Member

@dependabot recreate

@chadlwilson chadlwilson merged commit 3c58cfd into master Aug 1, 2025
1 check passed
@dependabot dependabot bot deleted the dependabot/bundler/ruby-deps-5b16bf1079 branch August 1, 2025 08:13
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.

2 participants