Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 1, 2026

Bumps the ruby-deps group with 20 updates:

Package From To
aws-sdk-s3 1.209.0 1.213.0
listen 3.9.0 3.10.0
html-proofer 5.1.1 5.2.0
activesupport 8.1.1 8.1.2
async 2.35.1 2.36.0
aws-partitions 1.1200.0 1.1211.0
aws-sdk-core 3.240.0 3.241.4
aws-sdk-kms 1.118.0 1.121.0
bigdecimal 3.3.1 4.0.1
google-protobuf 4.33.2 4.33.4
haml 7.1.0 7.2.0
kramdown 2.5.1 2.5.2
mime-types-data 3.2025.0924 3.2026.0127
prism 1.7.0 1.9.0
public_suffix 7.0.1 7.0.2
sass-embedded 1.97.1 1.97.3
thor 1.4.0 1.5.0
tilt 2.6.1 2.7.0
ttfunk 1.8.0 1.7.0
typhoeus 1.4.1 1.5.0

Updates aws-sdk-s3 from 1.209.0 to 1.213.0

Changelog

Sourced from aws-sdk-s3's changelog.

1.213.0 (2026-01-28)

  • Feature - Adds support for the UpdateObjectEncryption API to change the server-side encryption type of objects in general purpose buckets.

1.212.0 (2026-01-16)

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

1.211.0 (2026-01-08)

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

  • Issue - Falls back to header request checksums when using custom endpoints or endpoint providers for PutObject and UploadPart operations.

1.210.1 (2026-01-06)

  • Issue - Normalize response encoding to UTF-8 for proper XML error parsing in HTTP 200 responses.

1.210.0 (2026-01-05)

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

  • Feature - Added :http_chunk_size parameter to TransferManager#upload_file to control the buffer size when streaming request bodies over HTTP. Larger chunk sizes may improve network throughput at the cost of higher memory usage (Ruby MRI only).

  • Feature - Improved memory efficiency when calculating request checksums for large file uploads (Ruby MRI only).

Commits

Updates listen from 3.9.0 to 3.10.0

Release notes

Sourced from listen's releases.

v3.10.0

What's Changed

New Contributors

Full Changelog: guard/listen@v3.9.0...v3.10.0

Commits
  • 2fa1a74 Bump VERSION to 3.10.0
  • 7c6d39e Merge pull request #596 from y-yagi/ci_against_ruby40
  • 62255c0 CI against Ruby 4.0
  • 43cb09c Merge pull request #595 from y-yagi/mention_memory_allocation_about_max_user_...
  • 030aff8 Merge pull request #594 from y-yagi/remove_unused_require
  • 4317b21 Mention the relation with fs.inotify.max_user_watches and the memory alloc...
  • 5883c5e Remove unused require
  • cde3720 Merge pull request #592 from y-yagi/fix_rubocop
  • 8e93885 Merge pull request #593 from y-yagi/remove_link_to_travis
  • 2f07a81 Remove link to Travis CI
  • Additional commits viewable in compare view

Updates html-proofer from 5.1.1 to 5.2.0

Release notes

Sourced from html-proofer's releases.

v5.2.0

What's Changed

Full Changelog: gjtorikian/html-proofer@v5.1.1...v5.2.0

Changelog

Sourced from html-proofer's changelog.

[v5.2.0] - 07-01-2026

What's Changed

Full Changelog: gjtorikian/html-proofer@v5.1.1...v5.2.0

Commits
  • df89ea2 Merge pull request #870 from gjtorikian/more-failure-element-info
  • 9b0f5ae hide unnecessary warning
  • 0583124 💎 bump to 5.2.0
  • 06391d1 Merge branch 'main' into more-failure-element-info
  • 2bb1b7e update vcr
  • eb37c24 [auto-lint]: Lint files
  • 53a1ac7 work around new 429 error
  • cd974d0 Merge pull request #871 from gjtorikian/dependabot/bundler/bundler-dependenci...
  • 25501a6 Bump the bundler-dependencies group with 2 updates
  • a2eceaa Update workflows
  • Additional commits viewable in compare view

Updates activesupport from 8.1.1 to 8.1.2

Release notes

Sourced from activesupport's releases.

8.1.2

Active Support

  • Make delegate and delegate_missing_to work in BasicObject subclasses.

    Rafael Mendonça França

  • Fix Inflectors when using a locale that fallbacks to :en.

    Said Kaldybaev

  • Fix ActiveSupport::TimeWithZone#as_json to consistently return UTF-8 strings.

    Previously the returned string would sometime be encoded in US-ASCII, which in some cases may be problematic.

    Now the method consistently always return UTF-8 strings.

    Jean Boussier

  • Fix TimeWithZone#xmlschema when wrapping a DateTime instance in local time.

    Previously it would return an invalid time.

    Dmytro Rymar

  • Implement LocalCache strategy on ActiveSupport::Cache::MemoryStore. The memory store needs to respond to the same interface as other cache stores (e.g. ActiveSupport::NullStore).

    Mikey Gough

  • Fix ActiveSupport::Inflector.humanize with international characters.

    ActiveSupport::Inflector.humanize("áÉÍÓÚ")  # => "Áéíóú"
    ActiveSupport::Inflector.humanize("аБВГДЕ") # => "Абвгде"

    Jose Luis Duran

Active Model

  • No changes.

Active Record

  • Fix counting cached queries in ActiveRecord::RuntimeRegistry.

... (truncated)

Changelog

Sourced from activesupport's changelog.

Rails 8.1.2 (January 08, 2026)

  • Make delegate and delegate_missing_to work in BasicObject subclasses.

    Rafael Mendonça França

  • Fix Inflectors when using a locale that fallbacks to :en.

    Said Kaldybaev

  • Fix ActiveSupport::TimeWithZone#as_json to consistently return UTF-8 strings.

    Previously the returned string would sometime be encoded in US-ASCII, which in some cases may be problematic.

    Now the method consistently always return UTF-8 strings.

    Jean Boussier

  • Fix TimeWithZone#xmlschema when wrapping a DateTime instance in local time.

    Previously it would return an invalid time.

    Dmytro Rymar

  • Implement LocalCache strategy on ActiveSupport::Cache::MemoryStore. The memory store needs to respond to the same interface as other cache stores (e.g. ActiveSupport::NullStore).

    Mikey Gough

  • Fix ActiveSupport::Inflector.humanize with international characters.

    ActiveSupport::Inflector.humanize("áÉÍÓÚ")  # => "Áéíóú"
    ActiveSupport::Inflector.humanize("аБВГДЕ") # => "Абвгде"

    Jose Luis Duran

Commits
  • d7c8ae6 Preparing for 8.1.2 release
  • 3ea2701 CHANGELOG sync
  • 0f8014a [8-1-stable] Minitest 6 support
  • 991ccf3 Merge pull request #56393 from rails/add-exclude-keys-to-live-controller
  • c86465f Merge pull request #56353 from rails/rmf-delegation-basic-object
  • fce726b Merge pull request #56344 from Saidbek/fix-inflections-fallback-to-en-locale
  • efd9bd9 Merge pull request #56324 from jeremyevans/activesupport-uri-require
  • 81dca9c Merge pull request #56285 from markokajzer/main
  • a5c1af3 Merge pull request #56294 from fatkodima/fix-mem_cache_store-newer-connection...
  • 923f8e9 Merge pull request #56292 from fatkodima/fix-redis_cache_store-newer-connecti...
  • Additional commits viewable in compare view

Updates async from 2.35.1 to 2.36.0

Changelog

Sourced from async's changelog.

v2.36.0

  • Introduce Task#wait_all which recursively waits for all children and self, excepting the current task.
  • Introduce Task#join as an alias for Task#wait for compatibility with Thread#join and similar interfaces.

v2.35.3

  • Async::Clock now implements #as_json and #to_json for nicer log formatting.

v2.35.2

  • Improved handling of Process.fork on Ruby 4+.
  • Improve @promise state handling in Task#initialize, preventing incomplete instances being visible to the scheduler.
Commits

Updates aws-partitions from 1.1200.0 to 1.1211.0

Changelog

Sourced from aws-partitions's changelog.

1.1211.0 (2026-01-30)

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

1.1210.0 (2026-01-27)

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

1.1209.0 (2026-01-22)

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

1.1208.0 (2026-01-21)

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

1.1207.0 (2026-01-20)

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

1.1206.0 (2026-01-16)

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

1.1205.0 (2026-01-15)

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

1.1204.0 (2026-01-14)

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

1.1203.0 (2026-01-12)

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

1.1202.0 (2026-01-09)

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

... (truncated)

Commits

Updates aws-sdk-core from 3.240.0 to 3.241.4

Changelog

Sourced from aws-sdk-core's changelog.

3.241.4 (2026-01-16)

  • Issue - Rewind IO during initialization for AwsChunkedTrailerDigestIO.

3.241.3 (2026-01-08)

  • Issue - Disable request trailer checksums when using non-HTTPs endpoints.

3.241.2 (2026-01-07)

  • Issue - Preserve existing Content-Encoding when applying request trailer checksum.

3.241.1 (2026-01-06)

  • Issue - Fix memory leak in ClockSkew retry plugin by normalizing endpoints to prevent unlimited hash growth.

3.241.0 (2026-01-05)

  • Feature - Improved memory efficiency when calculating request checksums.
Commits

Updates aws-sdk-kms from 1.118.0 to 1.121.0

Changelog

Sourced from aws-sdk-kms's changelog.

1.121.0 (2026-01-16)

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

1.120.0 (2026-01-08)

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

1.119.0 (2026-01-05)

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

Updates bigdecimal from 3.3.1 to 4.0.1

Release notes

Sourced from bigdecimal's releases.

v4.0.1

What's Changed

Full Changelog: ruby/bigdecimal@v4.0.0...v4.0.1

v4.0.0

What's Changed

New Contributors

Full Changelog: ruby/bigdecimal@v3.3.1...v4.0.0

Changelog

Sourced from bigdecimal's changelog.

4.0.1

4.0.0

Commits
  • 6d01c36 Bump version to v4.0.1 (#477)
  • 4914cc3 Remove "Which version should you select" section (#476)
  • 4120325 Remove unused variable (and add test for it) (#475)
  • f0bf63f Merge pull request #474 from ruby/exclude-dependabot-update
  • d93ef2b Exclude dependabot updates from release note
  • d9914c9 Bump version to v4.0.0 (#472)
  • 45d203a Deprecate ludcmp, jacobian and newton (#471)
  • 8146336 Remove deprecated method BigDecimal#precs (#470)
  • b7e93bf Better rounding of BigMath.atan(nearly_one, prec) (#469)
  • cef76eb Merge pull request #468 from ruby/dependabot/github_actions/step-security/har...
  • Additional commits viewable in compare view

Updates google-protobuf from 4.33.2 to 4.33.4

Commits

Updates haml from 7.1.0 to 7.2.0

Release notes

Sourced from haml's releases.

v7.2.0

What's Changed

New Contributors

Full Changelog: haml/haml@v7.1.0...v7.2.0

Changelog

Sourced from haml's changelog.

7.2.0

Commits

Updates kramdown from 2.5.1 to 2.5.2

Commits

Updates mime-types-data from 3.2025.0924 to 3.2026.0127

Changelog

Sourced from mime-types-data's changelog.

3.2026.0127 / 2026-01-27

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

3.2026.0120 / 2026-01-20

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

3.2026.0113 / 2026-01-13

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

3.2026.0106 / 2026-01-06

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

  • Manual contributions now require Signed-off-by trailers for assertion of the [Developer Certificate of Origin][dco]. More details will be added in the coming weeks.

  • Added application/microdata+json, application/speculationrules+json, text/event-stream and text/ping from the [WHATWG HTML spec][whatwg]

Commits
  • b523ad4 Update mime-types-data 3.2026.0127 / 2026-01-27
  • 2f6bac0 Update mime-types-data 3.2026.0120 / 2026-01-20
  • bb5741a Update mime-types-data 3.2026.0113 / 2026-01-13
  • cd04bb5 fix: Fix release workflow
  • 2fcf0c3 Update mime-types-data 3.2026.0106 / 2026-01-06
  • 27a1e8d chore: Update workflows
  • 3388bd6 types: Add WHATWG HTML Spec Types
  • 1bf930a deps: Bump the actions group across 1 directory with 2 updates
  • 87a99e0 deps: Bump actions/checkout from 5.0.0 to 6.0.0
  • 2f07063 chore: Update workflows and suspport documentation
  • Additional commits viewable in compare view

Updates prism from 1.7.0 to 1.9.0

Release notes

Sourced from prism's releases.

v1.9.0

Added

  • Lots of work on the Ripper translation layer to make it more compatible and efficient.
  • Alias Prism::Node#breadth_first_search to Prism::Node#find.
  • Add Prism::Node#breadth_first_search_all/Prism::Node#find_all for finding all nodes matching a condition.

Changed

  • Fixed location of opening tokens when invalid syntax is parsed.
  • Fix RBI for parsing options.

v1.8.0

Added

  • Optimize ruby visitor.
  • Report unterminated construct errors at opening token.

Changed

  • Correctly expose ripper state.
  • Use one file for versioned parser classes.
  • Fix denominator of rational float literal.
  • Decouple ripper translator from ripper library.
  • Sync Prism::Translation::ParserCurrent with Ruby 4.0.
Changelog

Sourced from prism's changelog.

[1.9.0] - 2026-01-27

Added

  • Lots of work on the Ripper translation layer to make it more compatible and efficient.
  • Alias Prism::Node#breadth_first_search to Prism::Node#find.
  • Add Prism::Node#breadth_first_search_all/Prism::Node#find_all for finding all nodes matching a condition.

Changed

  • Fixed location of opening tokens when invalid syntax is parsed.
  • Fix RBI for parsing options.

[1.8.0] - 2026-01-12

Added

  • Optimize ruby visitor.
  • Report unterminated construct errors at opening token.

Changed

  • Correctly expose ripper state.
  • Use one file for versioned parser classes.
  • Fix denominator of rational float literal.
  • Decouple ripper translator from ripper library.
  • Sync Prism::Translation::ParserCurrent with Ruby 4.0.
Commits

Updates public_suffix from 7.0.1 to 7.0.2

Changelog

Sourced from public_suffix's changelog.

7.0.2 - 2026-01-04

Changed

  • Excluded symlinks and unnecessary files from gem packaging. On Windows symlinks cannot be created without Administrator privileges or with developer mode enabled #496.
Commits

Updates sass-embedded from 1.97.1 to 1.97.3

Commits
  • 28f7a79 v1.97.3
  • 88136c8 Bump sass from 1.97.2 to 1.97.3 in /ext/sass (#367)
  • 26f472c Avoid an extra mutex on platforms without fork support
  • 3e6a3dd Remove freebsd linuxulator compatibility
  • cf7e1e0 Update rubocop-rspec requirement from ~> 3.8.0 to ~> 3.9.0 (#365)
  • 08067f3 v1.97.2
  • 17b1a66 Bump sass from 1.97.1 to 1.97.2 in /ext/sass (#364)
  • 75e77eb Set NoHostAuthenticationForLocalhost=yes for localhost vm
  • f47a03e Use azure ubuntu mirror to speed up debootstrap on FreeBSD
  • 6030a54 Test ruby 4.0 (#363)
  • See full diff in compare view

Updates thor from 1.4.0 to 1.5.0

Release notes

Sourced from thor's releases.

1.5.0

What's Changed

New Contributors

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

Commits
  • 6a680f2 Prepare for 1.5.0
  • 615b0c2 Merge pull request #919 from rails/rmf-ci
  • f16a2db Unlock bundler development dependency
  • 7b99536 Test with Ruby 4.0
  • 2a1eecb Merge pull request #918 from rails/dependabot/github_actions/actions/checkout-6
  • ed9ffca Merge pull request #916 from moritzschepp/ec-encoding
  • 5b85a33 Bump actions/checkout from 5 to 6
  • 2e2b684 fix encoding error when running a merge tool
  • b2d98fe Remove whatisthor.com references
  • 17a3be9 Merge pull request #912 from rails/dependabot/github_actions/actions/checkout-5
  • Additional commits viewable in compare view

Updates tilt from 2.6.1 to 2.7.0

Changelog

Sourced from tilt's changelog.

2.7.0 (2026-01-09)

  • Support passing template-specific options to Tilt::Pipeline.new (LevitatingBusinessMan) (#24)
  • Remove deprecated creole template (jeremyevans)
  • Make the rendering of Prawn templates idempotent (rickenharp) (#20)
Commits
  • 2b1189f Bump version to 2.7.0
  • ac414e7 Minor changes to Tile::Pipeline.new options support
  • df4b7e3 allow additional options to pipeline
  • f9193d5 Drop JRuby 9.4 from CI
  • 712e75d Remove use of minitest mocks
  • d3aa2a0 Add Ruby 4.0 to CI
  • 8454c9f Require URI in haml test to work around test failure on Ruby 4.0
  • e271cab Fix class name in coffeescript documentation
  • 1bca970 Remove deprecated creole template
  • 7e5263e Mention Tilt::StaticTemplate in README
  • Additional commits viewable in compare view

Updates ttfunk from 1.8.0 to 1.7.0

Changelog

Sourced from ttfunk's changelog.

[1.8.0][] - 2024-03-05

Fixed

  • Corrupted CFF index data

    there was a subtle bug in cff index implementation that resulted in a data corruption. in certain circumstances some items didn't get properly encoded. this happened when items were not previously accessed.

    this resulted, for instance, in missing glyphs. but only sometimes because indexes might've still contain data that shouldn't've been there. in combination with incorrect encoding (see further) this resulted in some glyphs still being rendered, sometimes even correctly.

    along with the fix a rather large api change landed. this resulted in quite a big diff.

    Alexander Mankuta

  • Incorrect CFF encoding in subsets

    TTFunk used to reuse encoding from the original font. This mapping was incorrect for subset fonts which used not just a subset of glyphs but also a different encoding.

    A separate issue was that some fonts have empty CFF encoding. This incorrect mapping resulted in encoding that mapped all codes to glyph 0.

    This had impact on Prawn in particular. PDF spec explicitly says that CFF encoding is not to be used in OpenType fonts. cmap table should directly index charstrings in the CFF table. Despite this PDF renderers still use CFF encoding to retrieve glyphs. So TTFunk has to discard the original CFF encoding and supply its own.

    Alexander Mankuta

  • maxp table

    The table is now correctly parsed and encoded for both TrueType and CFF-based OpenType fonts.

    Cameron Dutro, Alexander Mankuta

  • Files are closed sooner

    Files were garbage collected but could stay open for longer than necessary.

    Jon Burgess

... (truncated)

Commits

Bumps the ruby-deps group with 20 updates:

| Package | From | To |
| --- | --- | --- |
| [aws-sdk-s3](https://github.com/aws/aws-sdk-ruby) | `1.209.0` | `1.213.0` |
| [listen](https://github.com/guard/listen) | `3.9.0` | `3.10.0` |
| [html-proofer](https://github.com/gjtorikian/html-proofer) | `5.1.1` | `5.2.0` |
| [activesupport](https://github.com/rails/rails) | `8.1.1` | `8.1.2` |
| [async](https://github.com/socketry/async) | `2.35.1` | `2.36.0` |
| [aws-partitions](https://github.com/aws/aws-sdk-ruby) | `1.1200.0` | `1.1211.0` |
| [aws-sdk-core](https://github.com/aws/aws-sdk-ruby) | `3.240.0` | `3.241.4` |
| [aws-sdk-kms](https://github.com/aws/aws-sdk-ruby) | `1.118.0` | `1.121.0` |
| [bigdecimal](https://github.com/ruby/bigdecimal) | `3.3.1` | `4.0.1` |
| [google-protobuf](https://github.com/protocolbuffers/protobuf) | `4.33.2` | `4.33.4` |
| [haml](https://github.com/haml/haml) | `7.1.0` | `7.2.0` |
| [kramdown](https://github.com/gettalong/kramdown) | `2.5.1` | `2.5.2` |
| [mime-types-data](https://github.com/mime-types/mime-types-data) | `3.2025.0924` | `3.2026.0127` |
| [prism](https://github.com/ruby/prism) | `1.7.0` | `1.9.0` |
| [public_suffix](https://github.com/weppos/publicsuffix-ruby) | `7.0.1` | `7.0.2` |
| [sass-embedded](https://github.com/sass-contrib/sass-embedded-host-ruby) | `1.97.1` | `1.97.3` |
| [thor](https://github.com/rails/thor) | `1.4.0` | `1.5.0` |
| [tilt](https://github.com/jeremyevans/tilt) | `2.6.1` | `2.7.0` |
| [ttfunk](https://github.com/prawnpdf/ttfunk) | `1.8.0` | `1.7.0` |
| [typhoeus](https://github.com/typhoeus/typhoeus) | `1.4.1` | `1.5.0` |


Updates `aws-sdk-s3` from 1.209.0 to 1.213.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 `listen` from 3.9.0 to 3.10.0
- [Release notes](https://github.com/guard/listen/releases)
- [Commits](guard/listen@v3.9.0...v3.10.0)

Updates `html-proofer` from 5.1.1 to 5.2.0
- [Release notes](https://github.com/gjtorikian/html-proofer/releases)
- [Changelog](https://github.com/gjtorikian/html-proofer/blob/main/CHANGELOG.md)
- [Commits](gjtorikian/html-proofer@v5.1.1...v5.2.0)

Updates `activesupport` from 8.1.1 to 8.1.2
- [Release notes](https://github.com/rails/rails/releases)
- [Changelog](https://github.com/rails/rails/blob/v8.1.2/activesupport/CHANGELOG.md)
- [Commits](rails/rails@v8.1.1...v8.1.2)

Updates `async` from 2.35.1 to 2.36.0
- [Release notes](https://github.com/socketry/async/releases)
- [Changelog](https://github.com/socketry/async/blob/main/releases.md)
- [Commits](socketry/async@v2.35.1...v2.36.0)

Updates `aws-partitions` from 1.1200.0 to 1.1211.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.240.0 to 3.241.4
- [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.118.0 to 1.121.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 `bigdecimal` from 3.3.1 to 4.0.1
- [Release notes](https://github.com/ruby/bigdecimal/releases)
- [Changelog](https://github.com/ruby/bigdecimal/blob/master/CHANGES.md)
- [Commits](ruby/bigdecimal@v3.3.1...v4.0.1)

Updates `google-protobuf` from 4.33.2 to 4.33.4
- [Release notes](https://github.com/protocolbuffers/protobuf/releases)
- [Commits](https://github.com/protocolbuffers/protobuf/commits)

Updates `haml` from 7.1.0 to 7.2.0
- [Release notes](https://github.com/haml/haml/releases)
- [Changelog](https://github.com/haml/haml/blob/main/CHANGELOG.md)
- [Commits](haml/haml@v7.1.0...v7.2.0)

Updates `kramdown` from 2.5.1 to 2.5.2
- [Release notes](https://github.com/gettalong/kramdown/releases)
- [Changelog](https://github.com/gettalong/kramdown/blob/master/doc/news.page)
- [Commits](https://github.com/gettalong/kramdown/commits)

Updates `mime-types-data` from 3.2025.0924 to 3.2026.0127
- [Changelog](https://github.com/mime-types/mime-types-data/blob/main/CHANGELOG.md)
- [Commits](mime-types/mime-types-data@v3.2025.0924...v3.2026.0127)

Updates `prism` from 1.7.0 to 1.9.0
- [Release notes](https://github.com/ruby/prism/releases)
- [Changelog](https://github.com/ruby/prism/blob/main/CHANGELOG.md)
- [Commits](ruby/prism@v1.7.0...v1.9.0)

Updates `public_suffix` from 7.0.1 to 7.0.2
- [Changelog](https://github.com/weppos/publicsuffix-ruby/blob/main/CHANGELOG.md)
- [Commits](weppos/publicsuffix-ruby@v7.0.1...v7.0.2)

Updates `sass-embedded` from 1.97.1 to 1.97.3
- [Commits](sass-contrib/sass-embedded-host-ruby@v1.97.1...v1.97.3)

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

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

Updates `ttfunk` from 1.8.0 to 1.7.0
- [Release notes](https://github.com/prawnpdf/ttfunk/releases)
- [Changelog](https://github.com/prawnpdf/ttfunk/blob/master/CHANGELOG.md)
- [Commits](prawnpdf/ttfunk@1.8.0...1.7.0)

Updates `typhoeus` from 1.4.1 to 1.5.0
- [Changelog](https://github.com/typhoeus/typhoeus/blob/master/CHANGELOG.md)
- [Commits](typhoeus/typhoeus@v1.4.1...v1.5.0)

---
updated-dependencies:
- dependency-name: aws-sdk-s3
  dependency-version: 1.213.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: ruby-deps
- dependency-name: listen
  dependency-version: 3.10.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: ruby-deps
- dependency-name: html-proofer
  dependency-version: 5.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: ruby-deps
- dependency-name: activesupport
  dependency-version: 8.1.2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: ruby-deps
- dependency-name: async
  dependency-version: 2.36.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: ruby-deps
- dependency-name: aws-partitions
  dependency-version: 1.1211.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: ruby-deps
- dependency-name: aws-sdk-core
  dependency-version: 3.241.4
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: ruby-deps
- dependency-name: aws-sdk-kms
  dependency-version: 1.121.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: ruby-deps
- dependency-name: bigdecimal
  dependency-version: 4.0.1
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: ruby-deps
- dependency-name: google-protobuf
  dependency-version: 4.33.4
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: ruby-deps
- dependency-name: haml
  dependency-version: 7.2.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: ruby-deps
- dependency-name: kramdown
  dependency-version: 2.5.2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: ruby-deps
- dependency-name: mime-types-data
  dependency-version: 3.2026.0127
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: ruby-deps
- dependency-name: prism
  dependency-version: 1.9.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: ruby-deps
- dependency-name: public_suffix
  dependency-version: 7.0.2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: ruby-deps
- dependency-name: sass-embedded
  dependency-version: 1.97.3
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: ruby-deps
- dependency-name: thor
  dependency-version: 1.5.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: ruby-deps
- dependency-name: tilt
  dependency-version: 2.7.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: ruby-deps
- dependency-name: ttfunk
  dependency-version: 1.7.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: ruby-deps
- dependency-name: typhoeus
  dependency-version: 1.5.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: ruby-deps
...

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 Feb 1, 2026
@chadlwilson chadlwilson merged commit 5ce0960 into master Feb 1, 2026
1 check passed
@dependabot dependabot bot deleted the dependabot/bundler/ruby-deps-5f3bcbcdce branch February 1, 2026 10: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.

1 participant