Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump the bundler-all group across 1 directory with 26 updates #333

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 23, 2024

Bumps the bundler-all group with 9 updates in the / directory:

Package From To
aws-sdk-s3 1.175.0 1.176.1
good_job 4.5.1 4.6.0
sentry-rails 5.21.0 5.22.1
rubocop 1.69.0 1.69.2
rubocop-rspec 3.2.0 3.3.0
net-imap 0.5.1 0.5.4
rexml 3.3.9 3.4.0
rspec-support 3.13.1 3.13.2
tilt 2.4.0 2.5.0

Updates aws-sdk-s3 from 1.175.0 to 1.176.1

Changelog

Sourced from aws-sdk-s3's changelog.

1.176.1 (2024-12-12)

  • Issue - Do not normalize object keys when calling presigned_url or presigned_request.

1.176.0 (2024-12-03)

  • Feature - Amazon S3 Metadata stores object metadata in read-only, fully managed Apache Iceberg metadata tables that you can query. You can create metadata table configurations for S3 general purpose buckets.
Commits

Updates good_job from 4.5.1 to 4.6.0

Release notes

Sourced from good_job's releases.

v4.6.0

Review the Changelog for more details.

What's Changed

Full Changelog: bensheldon/good_job@v4.5.1...v4.6.0

Changelog

Sourced from good_job's changelog.

v4.6.0 (2024-12-12)

Full Changelog

Implemented enhancements:

  • Set job execution thread priority to -3 when in async mode #1560 (bensheldon)

Closed issues:

  • Attaching metadata to jobs #1558
  • Lower Ruby Thread priority for jobs by default when running in Async mode #1554
  • NoMethodError: undefined method `<' for nil (process.rb:125 in stale?) #1363
  • Install PgHero on the Demo app #1166

Merged pull requests:

Commits

Updates sentry-rails from 5.21.0 to 5.22.1

Changelog

Sourced from sentry-rails's changelog.

5.22.1

Bug Fixes

  • Safe-navigate to session flusher #2396
  • Fix latency related nil error for Sidekiq Queues Module span data #2486

5.22.0

Features

  • Add include_sentry_event matcher for RSpec #2424
  • Add support for Sentry Cache instrumentation, when using Rails.cache #2380 Note: MemoryStore and FileStore require Rails 8.0+
  • Add support for Queue Instrumentation for Sidekiq. #2403
  • Add support for string errors in error reporter (#2464)
  • Reset trace_id and add root transaction for sidekiq-cron #2446
  • Add support for Excon HTTP client instrumentation (#2383)

Bug Fixes

  • Fix Vernier profiler not stopping when already stopped #2429
  • Fix send_default_pii handling in rails controller spans #2443
  • Fix RescuedExceptionInterceptor to handle an empty configuration #2428
  • Add mutex sync to SessionFlusher aggregates #2469
  • Fix sentry-rails' backtrace cleaner issues (#2475)
Commits

Updates rubocop from 1.69.0 to 1.69.2

Release notes

Sourced from rubocop's releases.

RuboCop 1.69.2

Bug fixes

  • #13553: Fix an incorrect autocorrect for Style/MultipleComparison when a variable is compared multiple times after a method call. (@​koic)
  • #13562: Fix Bundler/DuplicatedGem cop error in case of empty branch. (@​viralpraxis)
  • #13573: Fix Lint/UnescapedBracketInRegexp cop failure with invalid multibyte escape. (@​earlopain)
  • #13556: Fix false positives for Style/FileNull when using 'nul' string. (@​koic)
  • #12995: Fix --disable-uncorrectable to not insert directives inside a string. (@​dvandersluis)
  • #13320: Fix incorrect autocorrect when Layout/LineContinuationLeadingSpace and Style/StringLiterals autocorrects in the same pass. (@​dvandersluis)
  • #13299: Fix Style/BlockDelimiters to always accept braces when an operator method argument is chained. (@​dvandersluis)
  • #13565: Fix Style/RedundantLineContinuation false negatives when a redundant continuation follows a required continuation. (@​dvandersluis)
  • #13551: Fix an incorrect autocorrect for Style/IfWithSemicolon when using multi value assignment in if with a semicolon is used. (@​koic)
  • #13534: Fix Layout/LineLength cop failure in case of YARD-comment-like string. (@​viralpraxis)
  • #13558: Fix Lint/NonAtomicFileOperation cop error in case of implicit receiver. (@​viralpraxis)
  • #13564: Fix Metrics/ClassLength cop error in case of chained assignments. (@​viralpraxis)
  • #13570: Fix Naming/RescuedExceptionsVariableName cop error when exception is assigned with writer method. (@​viralpraxis)
  • #13559: Fix a false positive for Style/RedundantLineContinuation when a method definition is used as an argument for a method call. (@​davidrunger)
  • #13574: Fix Style/ExactRegexpMatch cop error on invalid regular expression literal. (@​viralpraxis)
  • #13554: Fix Style/FrozenStringLiteralComment false positive in case of non-downcased value literal. (@​viralpraxis)
  • #13569: Fix Style/MethodCallWithoutArgsParentheses cop error in case of mass hash assignment. (@​viralpraxis)
  • #13542: Fix Style/RedundantCondition cop failure in case of empty arguments. (@​viralpraxis)
  • #13509: Update Layout/ExtraSpacing and Layout/SpaceAroundOperators to handle preceding operators inside strings. (@​dvandersluis)

RuboCop 1.69.1

Bug fixes

  • #13502: Fix an incorrect autocorrect for Style/DigChain when using safe navigation method chain with dig method. (@​koic)
  • #13505: Fix an error for Style/ParallelAssignment when using the anonymous splat operator. (@​earlopain)
  • #13184: Fix some false positives in Lint/UnreachableCode. (@​isuckatcs)
  • #13494: Fix false positives for Style/HashExcept cop when using reject/!include?, reject/!in? or select/!exclude? combinations. (@​lovro-bikic)
  • #13522: Fix Lint/UnescapedBracketInRegexp cop failure with invalid regular expression. (@​viralpraxis)
  • #13523: Fix Style::AccessModifierDeclarations cop failure in case of if node without else. (@​viralpraxis)
  • #13524: Fix Style/RedundantArgument cop failure while inspecting string literal with invalid encoding. (@​viralpraxis)
  • #13528: Fix Style/RedundantParentheses cop failure in case of splatted case node without condition. (@​viralpraxis)
  • #13521: Fix Style/RedundantSelf cop failure with kwnilarg argument node. (@​viralpraxis)
  • #13526: Fix Style/StringConcatenation cop failure when there are mixed implicit and explicit concatenations. (@​viralpraxis)
  • #13511: Fix false positive in Lint/UnescapedBracketInRegexp when using regexp_parser 2.9.2 and earlier. (@​dvandersluis)
  • #13096: Update Style/BlockDelimiters to not change braces when they are required for syntax. (@​dvandersluis)
  • #13512: Update Style/LambdaCall to be aware of safe navigation. (@​dvandersluis)

... (truncated)

Changelog

Sourced from rubocop's changelog.

1.69.2 (2024-12-12)

Bug fixes

  • #13553: Fix an incorrect autocorrect for Style/MultipleComparison when a variable is compared multiple times after a method call. ([@​koic][])
  • #13562: Fix Bundler/DuplicatedGem cop error in case of empty branch. ([@​viralpraxis][])
  • #13573: Fix Lint/UnescapedBracketInRegexp cop failure with invalid multibyte escape. ([@​earlopain][])
  • #13556: Fix false positives for Style/FileNull when using 'nul' string. ([@​koic][])
  • #12995: Fix --disable-uncorrectable to not insert directives inside a string. ([@​dvandersluis][])
  • #13320: Fix incorrect autocorrect when Layout/LineContinuationLeadingSpace and Style/StringLiterals autocorrects in the same pass. ([@​dvandersluis][])
  • #13299: Fix Style/BlockDelimiters to always accept braces when an operator method argument is chained. ([@​dvandersluis][])
  • #13565: Fix Style/RedundantLineContinuation false negatives when a redundant continuation follows a required continuation. ([@​dvandersluis][])
  • #13551: Fix an incorrect autocorrect for Style/IfWithSemicolon when using multi value assignment in if with a semicolon is used. ([@​koic][])
  • #13534: Fix Layout/LineLength cop failure in case of YARD-comment-like string. ([@​viralpraxis][])
  • #13558: Fix Lint/NonAtomicFileOperation cop error in case of implicit receiver. ([@​viralpraxis][])
  • #13564: Fix Metrics/ClassLength cop error in case of chained assignments. ([@​viralpraxis][])
  • #13570: Fix Naming/RescuedExceptionsVariableName cop error when exception is assigned with writer method. ([@​viralpraxis][])
  • #13559: Fix a false positive for Style/RedundantLineContinuation when a method definition is used as an argument for a method call. ([@​davidrunger][])
  • #13574: Fix Style/ExactRegexpMatch cop error on invalid regular expression literal. ([@​viralpraxis][])
  • #13554: Fix Style/FrozenStringLiteralComment false positive in case of non-downcased value literal. ([@​viralpraxis][])
  • #13569: Fix Style/MethodCallWithoutArgsParentheses cop error in case of mass hash assignment. ([@​viralpraxis][])
  • #13542: Fix Style/RedundantCondition cop failure in case of empty arguments. ([@​viralpraxis][])
  • #13509: Update Layout/ExtraSpacing and Layout/SpaceAroundOperators to handle preceding operators inside strings. ([@​dvandersluis][])

1.69.1 (2024-12-03)

Bug fixes

  • #13502: Fix an incorrect autocorrect for Style/DigChain when using safe navigation method chain with dig method. ([@​koic][])
  • #13505: Fix an error for Style/ParallelAssignment when using the anonymous splat operator. ([@​earlopain][])
  • #13184: Fix some false positives in Lint/UnreachableCode. ([@​isuckatcs][])
  • #13494: Fix false positives for Style/HashExcept cop when using reject/!include?, reject/!in? or select/!exclude? combinations. ([@​lovro-bikic][])
  • #13522: Fix Lint/UnescapedBracketInRegexp cop failure with invalid regular expression. ([@​viralpraxis][])
  • #13523: Fix Style::AccessModifierDeclarations cop failure in case of if node without else. ([@​viralpraxis][])
  • #13524: Fix Style/RedundantArgument cop failure while inspecting string literal with invalid encoding. ([@​viralpraxis][])
  • #13528: Fix Style/RedundantParentheses cop failure in case of splatted case node without condition. ([@​viralpraxis][])
  • #13521: Fix Style/RedundantSelf cop failure with kwnilarg argument node. ([@​viralpraxis][])
  • #13526: Fix Style/StringConcatenation cop failure when there are mixed implicit and explicit concatenations. ([@​viralpraxis][])
  • #13511: Fix false positive in Lint/UnescapedBracketInRegexp when using regexp_parser 2.9.2 and earlier. ([@​dvandersluis][])
  • #13096: Update Style/BlockDelimiters to not change braces when they are required for syntax. ([@​dvandersluis][])
  • #13512: Update Style/LambdaCall to be aware of safe navigation. ([@​dvandersluis][])
Commits
  • 3ba4aef Cut 1.69.2
  • e74cea2 Update Changelog
  • 19ee909 [Fix #13556] Fix false positives for Style/FileNull
  • fd13dab [Fix #13299] Fix Style/BlockDelimiters to always accept braces when an oper...
  • 522950a Fix Style/ExactRegexpMatch cop error on invalid regular expression literal
  • e0777ff Merge pull request #13539 from dvandersluis/issue/13320
  • 7fbd78a Net::HTTPSession is deprecated now
  • bd31b8a Update RSpec 4 CI to the monorepo
  • 4618790 Fix Lint/UnescapedBracketInRegexp cop failure with invalid multibyte escape
  • b00b5f1 Merge pull request #13570 from viralpraxis/fix-naming-rescue-exceptions-varia...
  • Additional commits viewable in compare view

Updates rubocop-rspec from 3.2.0 to 3.3.0

Release notes

Sourced from rubocop-rspec's releases.

RuboCop RSpec v3.3.0

  • Deprecate top_level_group? method from TopLevelGroup mixin as all of its callers were intentionally removed from Rubocop/RSpec. (@​corsonknowles)
  • Fix false positive for RSpec/EmptyMetadata for splat kwargs. (@​pirj)
Changelog

Sourced from rubocop-rspec's changelog.

3.3.0 (2024-12-12)

  • Deprecate top_level_group? method from TopLevelGroup mixin as all of its callers were intentionally removed from Rubocop/RSpec. ([@​corsonknowles])
  • Fix false positive for RSpec/EmptyMetadata for splat kwargs. ([@​pirj])
Commits
  • 4272587 Merge pull request #2007 from rubocop/release
  • f659b41 Merge pull request #2006 from Earlopain/rspec-monorepo
  • 47365dc Release v3.3.0
  • 737f2d0 CI: Add actions:write to gem-publish workflow
  • 3c4c64e Update RSpec 4 CI to the monorepo
  • b8a0eb1 Merge pull request #2005 from rubocop/fix-empty-metadata-for-kwargs-splat
  • 4832625 Fix EmptyMetadata for splat kwargs
  • 274c7d9 Merge pull request #1998 from rubocop/use-node-extensions-instead-of-splat
  • a115a93 Use Node extensions instead of *splat
  • 5e7b947 Merge pull request #2003 from rubocop/fix-markdown
  • Additional commits viewable in compare view

Updates aws-partitions from 1.1015.0 to 1.1027.0

Changelog

Sourced from aws-partitions's changelog.

1.1027.0 (2024-12-20)

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

1.1026.0 (2024-12-19)

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

1.1025.0 (2024-12-18)

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

1.1024.0 (2024-12-17)

  • Feature - Added support for enumerating regions for Aws::BackupSearch.

1.1023.0 (2024-12-13)

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

1.1022.0 (2024-12-12)

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

1.1021.0 (2024-12-11)

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

1.1020.0 (2024-12-10)

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

1.1019.0 (2024-12-09)

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

1.1018.0 (2024-12-04)

  • Feature - Added support for enumerating regions for Aws::BedrockDataAutomationRuntime.

... (truncated)

Commits

Updates erubi from 1.13.0 to 1.13.1

Changelog

Sourced from erubi's changelog.

=== 1.13.1 (2024-12-19)

  • Avoid spurious frozen string literal warnings for chilled strings when using Ruby 3.4 (jeremyevans)
Commits
  • f1a0fb5 Bump version to 1.13.1
  • aeae5e7 Use -W:strict_unused_block when running tests on Ruby 3.4+
  • 6aa6f52 Avoid spurious frozen string literal warnings on Ruby 3.4.0-preview2
  • See full diff in compare view

Updates io-console from 0.7.2 to 0.8.0

Release notes

Sourced from io-console's releases.

v0.8.0

What's Changed

New Contributors

Full Changelog: ruby/io-console@v0.7.2...v0.8.0

v0.8.0.beta1

What's Changed

New Contributors

Full Changelog: ruby/io-console@v0.7.2...v0.8.0.beta1

Commits
  • 467508a Bump up 0.8.0
  • fdad351 Add IO#ttyname that returns the tty name or nil
  • 82a1efc [DOC] Make README the main page
  • aa79919 Freeze the version string
  • 839c1e8 Check if rb_syserr_fail_str is available
  • b152f5b Revert "Add a temporal debugging code"
  • 0ba400b Read errno before calling rb_io_path()
  • 3ffc714 Add a temporal debugging code
  • 5a06b50 Fixed version number of rubygems/release-gem
  • 9a718ea Bump rubygems/release-gem
  • Additional commits viewable in compare view

Updates irb from 1.14.1 to 1.14.3

Release notes

Sourced from irb's releases.

v1.14.3

What's Changed

🐛 Bug Fixes

📚 Documentation

🛠 Other Changes

New Contributors

Full Changelog: ruby/irb@v1.14.2...v1.14.3

v1.14.2

What's Changed

✨ Enhancements

🐛 Bug Fixes

📚 Documentation

🛠 Other Changes

... (truncated)

Commits

Updates json from 2.8.2 to 2.9.1

Release notes

Sourced from json's releases.

v2.9.1

What's Changed

  • Add support for Solaris 10 which lacks strnlen()

v2.9.0

What's Changed

  • Fix C implementation of script_safe escaping to not confuse some other 3 wide characters with \u2028 and \u2029. e.g. JSON.generate(["倩", "瀨"], script_safe: true) would generate the wrong JSON.
  • JSON.dump(object, some_io) now write into the IO in chunks while previously it would buffer the entire JSON before writing.
  • JSON::GeneratorError now has a #invalid_object attribute, making it easier to understand why an object tree cannot be serialized.
  • Numerous improvements to the JRuby extension.

Full Changelog: ruby/json@v2.8.2...v2.9.0

Changelog

Sourced from json's changelog.

2024-12-18 (2.9.1)

  • Fix support for Solaris 10.

2024-12-03 (2.9.0)

  • Fix C implementation of script_safe escaping to not confuse some other 3 wide characters with \u2028 and \u2029. e.g. JSON.generate(["倩", "瀨"], script_safe: true) would generate the wrong JSON.
  • JSON.dump(object, some_io) now write into the IO in chunks while previously it would buffer the entire JSON before writing.
  • JSON::GeneratorError now has a #invalid_object attribute, making it easier to understand why an object tree cannot be serialized.
  • Numerous improvements to the JRuby extension.
Commits
  • f745ec1 Release 2.9.1
  • 72f43d4 Merge pull request #719 from ngoto/support-solaris-10-missing-strnlen
  • 48d4bbc Add support for Solaris 10 which lacks strnlen()
  • e1f6456 Release 2.9.0
  • 20b501a Merge pull request #716 from byroot/fix-script-safe-kanji
  • 93a7f87 Fix generate(script_safe: true) to not confuse unrelated characters
  • d0c38f2 Add missing entry in changelog
  • 686dcb1 Merge pull request #713 from mame/prevent-printf-format-warning
  • b8c1490 Prevent a warning of "a candidate for gnu_printf format attribute"
  • dbd5042 Merge pull request #712 from byroot/generation-error
  • Additional commits viewable in compare view

Updates logger from 1.6.2 to 1.6.4

Release notes

Sourced from logger's releases.

v1.6.4

What's Changed

Full Changelog: ruby/logger@v1.6.3...v1.6.4

v1.6.3

What's Changed

Full Changelog: ruby/logger@v1.6.2...v1.6.3

Commits

Updates minitest from 5.25.2 to 5.25.4

Changelog

Sourced from minitest's changelog.

=== 5.25.4 / 2024-12-03

  • 1 bug fix:

    • Fix for must_verify definition if only requiring minitest/mock (but why?).

=== 5.25.3 / 2024-12-03

  • 5 bug fixes:

    • Fixed assert_mock to fail instead of raise on unmet mock expectations.
    • Fixed assert_mock to take an optional message argument.
    • Fixed formatting of unmet mock expectation messages.
    • Fixed missing must_verify expectation to match assert_mock.
    • minitest/pride: Fixed to use true colors with *-direct terminals (bk2204)
Commits
  • d84437f prepped for release
  • 51cfac5 - Fix for must_verify definition if only requiring minitest/mock (but why?).
  • 704d310 prepped for release
  • 2d542ff - Fixed formatting of unmet mock expectation messages.
  • 212de90 - minitest/pride: Fixed to use true colors with *-direct terminals (bk2204)
  • See full diff in compare view

Updates net-imap from 0.5.1 to 0.5.4

Release notes

Sourced from net-imap's releases.

v0.5.4

What's Changed

Added

Fixed

Documentation

Full Changelog: ruby/net-imap@v0.5.3...v0.5.4

v0.5.3

What's Changed

Added

Documentation

Full Changelog: ruby/net-imap@v0.5.2...v0.5.3

v0.5.2

What's Changed

Added

Bumps the bundler-all group with 9 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [aws-sdk-s3](https://github.com/aws/aws-sdk-ruby) | `1.175.0` | `1.176.1` |
| [good_job](https://github.com/bensheldon/good_job) | `4.5.1` | `4.6.0` |
| [sentry-rails](https://github.com/getsentry/sentry-ruby) | `5.21.0` | `5.22.1` |
| [rubocop](https://github.com/rubocop/rubocop) | `1.69.0` | `1.69.2` |
| [rubocop-rspec](https://github.com/rubocop/rubocop-rspec) | `3.2.0` | `3.3.0` |
| [net-imap](https://github.com/ruby/net-imap) | `0.5.1` | `0.5.4` |
| [rexml](https://github.com/ruby/rexml) | `3.3.9` | `3.4.0` |
| [rspec-support](https://github.com/rspec/rspec) | `3.13.1` | `3.13.2` |
| [tilt](https://github.com/jeremyevans/tilt) | `2.4.0` | `2.5.0` |



Updates `aws-sdk-s3` from 1.175.0 to 1.176.1
- [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 `good_job` from 4.5.1 to 4.6.0
- [Release notes](https://github.com/bensheldon/good_job/releases)
- [Changelog](https://github.com/bensheldon/good_job/blob/main/CHANGELOG.md)
- [Commits](bensheldon/good_job@v4.5.1...v4.6.0)

Updates `sentry-rails` from 5.21.0 to 5.22.1
- [Release notes](https://github.com/getsentry/sentry-ruby/releases)
- [Changelog](https://github.com/getsentry/sentry-ruby/blob/master/CHANGELOG.md)
- [Commits](getsentry/sentry-ruby@5.21.0...5.22.1)

Updates `rubocop` from 1.69.0 to 1.69.2
- [Release notes](https://github.com/rubocop/rubocop/releases)
- [Changelog](https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md)
- [Commits](rubocop/rubocop@v1.69.0...v1.69.2)

Updates `rubocop-rspec` from 3.2.0 to 3.3.0
- [Release notes](https://github.com/rubocop/rubocop-rspec/releases)
- [Changelog](https://github.com/rubocop/rubocop-rspec/blob/master/CHANGELOG.md)
- [Commits](rubocop/rubocop-rspec@v3.2.0...v3.3.0)

Updates `aws-partitions` from 1.1015.0 to 1.1027.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 `erubi` from 1.13.0 to 1.13.1
- [Changelog](https://github.com/jeremyevans/erubi/blob/master/CHANGELOG)
- [Commits](jeremyevans/erubi@1.13.0...1.13.1)

Updates `io-console` from 0.7.2 to 0.8.0
- [Release notes](https://github.com/ruby/io-console/releases)
- [Commits](ruby/io-console@v0.7.2...v0.8.0)

Updates `irb` from 1.14.1 to 1.14.3
- [Release notes](https://github.com/ruby/irb/releases)
- [Commits](ruby/irb@v1.14.1...v1.14.3)

Updates `json` from 2.8.2 to 2.9.1
- [Release notes](https://github.com/ruby/json/releases)
- [Changelog](https://github.com/ruby/json/blob/master/CHANGES.md)
- [Commits](ruby/json@v2.8.2...v2.9.1)

Updates `logger` from 1.6.2 to 1.6.4
- [Release notes](https://github.com/ruby/logger/releases)
- [Commits](ruby/logger@v1.6.2...v1.6.4)

Updates `minitest` from 5.25.2 to 5.25.4
- [Changelog](https://github.com/minitest/minitest/blob/master/History.rdoc)
- [Commits](minitest/minitest@v5.25.2...v5.25.4)

Updates `net-imap` from 0.5.1 to 0.5.4
- [Release notes](https://github.com/ruby/net-imap/releases)
- [Commits](ruby/net-imap@v0.5.1...v0.5.4)

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

Updates `psych` from 5.2.1 to 5.2.2
- [Release notes](https://github.com/ruby/psych/releases)
- [Commits](ruby/psych@v5.2.1...v5.2.2)

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

Updates `rdoc` from 6.8.1 to 6.10.0
- [Release notes](https://github.com/ruby/rdoc/releases)
- [Changelog](https://github.com/ruby/rdoc/blob/master/History.rdoc)
- [Commits](ruby/rdoc@v6.8.1...v6.10.0)

Updates `reline` from 0.5.12 to 0.6.0
- [Release notes](https://github.com/ruby/reline/releases)
- [Commits](ruby/reline@v0.5.12...v0.6.0)

Updates `rexml` from 3.3.9 to 3.4.0
- [Release notes](https://github.com/ruby/rexml/releases)
- [Changelog](https://github.com/ruby/rexml/blob/master/NEWS.md)
- [Commits](ruby/rexml@v3.3.9...v3.4.0)

Updates `rspec-support` from 3.13.1 to 3.13.2
- [Changelog](https://github.com/rspec/rspec/blob/rspec-support-v3.13.2/rspec-support/Changelog.md)
- [Commits](rspec/rspec@rspec-support-v3.13.1...rspec-support-v3.13.2)

Updates `rubocop-ast` from 1.36.2 to 1.37.0
- [Release notes](https://github.com/rubocop/rubocop-ast/releases)
- [Changelog](https://github.com/rubocop/rubocop-ast/blob/master/CHANGELOG.md)
- [Commits](rubocop/rubocop-ast@v1.36.2...v1.37.0)

Updates `securerandom` from 0.4.0 to 0.4.1
- [Release notes](https://github.com/ruby/securerandom/releases)
- [Commits](ruby/securerandom@v0.4.0...v0.4.1)

Updates `sentry-ruby` from 5.21.0 to 5.22.1
- [Release notes](https://github.com/getsentry/sentry-ruby/releases)
- [Changelog](https://github.com/getsentry/sentry-ruby/blob/master/CHANGELOG.md)
- [Commits](getsentry/sentry-ruby@5.21.0...5.22.1)

Updates `tilt` from 2.4.0 to 2.5.0
- [Changelog](https://github.com/jeremyevans/tilt/blob/master/CHANGELOG.md)
- [Commits](jeremyevans/tilt@v2.4.0...v2.5.0)

Updates `timeout` from 0.4.2 to 0.4.3
- [Release notes](https://github.com/ruby/timeout/releases)
- [Commits](ruby/timeout@v0.4.2...v0.4.3)

Updates `useragent` from 0.16.10 to 0.16.11
- [Commits](gshutler/useragent@v0.16.10...v0.16.11)

---
updated-dependencies:
- dependency-name: aws-sdk-s3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: bundler-all
- dependency-name: good_job
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: bundler-all
- dependency-name: sentry-rails
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: bundler-all
- dependency-name: rubocop
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: bundler-all
- dependency-name: rubocop-rspec
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: bundler-all
- dependency-name: aws-partitions
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: bundler-all
- dependency-name: erubi
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: bundler-all
- dependency-name: io-console
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: bundler-all
- dependency-name: irb
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: bundler-all
- dependency-name: json
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: bundler-all
- dependency-name: logger
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: bundler-all
- dependency-name: minitest
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: bundler-all
- dependency-name: net-imap
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: bundler-all
- dependency-name: nokogiri
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: bundler-all
- dependency-name: psych
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: bundler-all
- dependency-name: rails-html-sanitizer
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: bundler-all
- dependency-name: rdoc
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: bundler-all
- dependency-name: reline
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: bundler-all
- dependency-name: rexml
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: bundler-all
- dependency-name: rspec-support
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: bundler-all
- dependency-name: rubocop-ast
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: bundler-all
- dependency-name: securerandom
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: bundler-all
- dependency-name: sentry-ruby
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: bundler-all
- dependency-name: tilt
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: bundler-all
- dependency-name: timeout
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: bundler-all
- dependency-name: useragent
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: bundler-all
...

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 Dec 23, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Dec 30, 2024

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

@dependabot dependabot bot closed this Dec 30, 2024
@dependabot dependabot bot deleted the dependabot/bundler/bundler-all-b50b40f04b branch December 30, 2024 17:58
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.

0 participants