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 ruby-minor-patch group across 1 directory with 10 updates #3298

Merged
merged 1 commit into from
Oct 29, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 28, 2024

Bumps the ruby-minor-patch group with 10 updates in the / directory:

Package From To
rexml 3.3.8 3.3.9
net-imap 0.4.17 0.5.0
pg 1.5.8 1.5.9
twilio-ruby 7.3.3 7.3.5
view_component 3.17.0 3.19.0
loofah 2.22.0 2.23.1
rubocop 1.66.1 1.67.0
rubocop-rails 2.26.2 2.27.0
factory_bot_rails 6.4.3 6.4.4
faker 3.4.2 3.5.1

Updates rexml from 3.3.8 to 3.3.9

Release notes

Sourced from rexml's releases.

REXML 3.3.9 - 2024-10-24

Improvements

  • Improved performance.

Fixes

  • Fixed a parse bug for text only invalid XML.

  • Fixed a parse bug that &#0x...; is accepted as a character reference.

Thanks

  • NAITOH Jun
Changelog

Sourced from rexml's changelog.

3.3.9 - 2024-10-24 {#version-3-3-9}

Improvements

  • Improved performance.

Fixes

  • Fixed a parse bug for text only invalid XML.

  • Fixed a parse bug that &#0x...; is accepted as a character reference.

Thanks

  • NAITOH Jun
Commits

Updates net-imap from 0.4.17 to 0.5.0

Release notes

Sourced from net-imap's releases.

v0.5.0

What's Changed

Breaking Changes

  • 💥 Drop ruby 2.7 and 3.0 support, and require ruby 3.1 by @​nevans in ruby/net-imap#276
  • 💥⚡ Simplify header-fld-name parser (backward incompatible) by @​nevans in ruby/net-imap#216 For example, HEADER.FIELDS(Content-Type) or HEADER.FIELDS("Content-Type") are semantically identical, and a server may choose to return the quoted version.
    • Before this change, the FetchData attr header name would be quoted if the server sent the field name quoted.
    • After this change, the header field names will always be unquoted by the parser, so the result will always available via fetch_data.header_fields("Content-Type") or fetch_data.attr_upcase["HEADER.FIELDS(CONTENT-TYPE)"].
  • 💥 Replace MessageSet with SequenceSet by @​nevans in ruby/net-imap#282 Most of the changes are bugfixes or allow something new to work that didn't work before. See the PR for more details. This affects #search, #uid_search, #sort, #uid_sort, #fetch, #uid_fetch, #store, #uid_store, #copy, #uid_copy, #move, #uid_move, and #uid_expunge.
  • 💥 SequenceSet input validation for Set, Array, and enumerables by @​nevans in ruby/net-imap#319
    • Array inputs can still be deeply nested.
    • Set inputs can only contain integers and "*" or :*, to be consistent with SequenceSet#to_set.
    • Other Enumerables will only be converted if they implement #to_sequence_set.
  • 🔥 Remove deprecated #client_thread attr_reader by @​nevans in ruby/net-imap#321 #client_thread was deprecated by v0.4.0.
  • 🔥 Drop deprecated BodyType structs by @​nevans in ruby/net-imap#323 These structs were deprecated by v0.4.0.

Added

Deprecations

  • 🔊 Warn about deprecated #responses usage by @​nevans in ruby/net-imap#97 To silence these warnings:
    • pass a block to #responses (supported since v0.4.0),
    • pass a response type to #responses for a frozen copied array (since v0.4.17),
    • set config.responses_without_block to :silence_deprecation_warning (since v0.4.13),
    • set config.responses_without_block to :frozen_dup for a frozen copy (since v0.4.17),
    • use #clear_responses instead (since v0.4.0),
    • use #extract_responses instead (since v0.4.17).
  • 🗑️ Deprecate MessageSet by @​nevans in ruby/net-imap#282 MessageSet was only intended for internal use, and all internal usage has been replaced.

Fixed

... (truncated)

Commits
  • cc13c91 🔖 Bump version to v0.5.0
  • 3e77349 ✅ Fix GH action for rubygems Trusted Publishing
  • 5ce90bb ♻️ Use SASL::AuthenticationExchange internally
  • 943afda ✅ Setup simplecov
  • 6af826d 🔨📚 Fix rdoc => ghpages workflow
  • 0f7d264 🔀 Merge pull request #334 from ruby/responses-return-frozen_dup
  • 566e668 🔧 Set responses_without_block to frozen_dup in 0.6
  • 5ac99b2 ✨ Responses with no args can return frozen dup hash
  • 1a25273 ✨ Responses with type can return frozen dup array
  • 1c3f43c 🔊 Update #responses deprecation message
  • Additional commits viewable in compare view

Updates pg from 1.5.8 to 1.5.9

Changelog

Sourced from pg's changelog.

v1.5.9 [2024-10-24] Lars Kanis lars@greiz-reinsdorf.de

  • Enable thread safety in static OpenSSL build for Windows. #595
  • Remove raising conect_timeout from 1 to 2 seconds. #590
  • Fix binary copy_data in Ractor context. #594
  • Exclude CI files and hidden files from built gem. #591 This is to simplify security inspection.
  • Update error classes to PostgreSQL-17.
  • Update Windows fat binary gem to OpenSSL-3.4.0 and PostgreSQL-17.0.
Commits
  • afe2f20 Bump VERSION to 1.5.9
  • 9f8a6c6 Add History entry for pg-1.5.9
  • 342bdbb Merge pull request #599 from larskanis/update-postgres
  • ca8e69c Remove skip on Windows since the issue is fixed
  • 70c02ea Work around missing dependency to errorcodes.h in PostgreSQL-17.0
  • 4a52437 CI: Update jobs to postgresql-1.7.0
  • d8c3753 Update to postgresql-17.0 and openssl-3.4.0 for Windows binary gems
  • 86367c6 Update error codes by rake update_error_codes
  • 94f1d7f Merge pull request #598 from larskanis/osl-threads
  • 716221a Enable thread safety in static OpenSSL build
  • Additional commits viewable in compare view

Updates twilio-ruby from 7.3.3 to 7.3.5

Release notes

Sourced from twilio-ruby's releases.

7.3.5

Release Notes

Conversations

  • Expose ConversationWithParticipants resource that allows creating a conversation with participants

Docs

7.3.4

Release Notes

Api

  • Add response key country to fetch AvailablePhoneNumber resource by specific country.

Messaging

  • Make library and doc public for requestManagedCert Endpoint

Docs

Changelog

Sourced from twilio-ruby's changelog.

[2024-10-24] Version 7.3.5

Conversations

  • Expose ConversationWithParticipants resource that allows creating a conversation with participants

[2024-10-17] Version 7.3.4

Api

  • Add response key country to fetch AvailablePhoneNumber resource by specific country.

Messaging

  • Make library and doc public for requestManagedCert Endpoint
Commits
  • 4cb858d Release 7.3.5
  • b2c3b50 [Librarian] Regenerated @ 2e932f6c59e0f9fb6cb96952802e5ebedd83b6f0 1852557f82...
  • db34888 Release 7.3.4
  • 4c0704b [Librarian] Regenerated @ d97b0740a0c7cf86beebd56c6973927b07719cde 1fc3bb6195...
  • See full diff in compare view

Updates view_component from 3.17.0 to 3.19.0

Release notes

Sourced from view_component's releases.

v3.19.0

  • Relax Active Support version constraint in gemspec.

    Simon Fish

v3.18.0

  • Enable components to use @request and request methods/ivars.

    Blake Williams

  • Fix bug where implicit locales in component filenames threw a NameError.

    Chloe Fons

  • Register ViewComponent tests directory for rails stats.

    Javier Aranda

  • Wrap entire compile step in a mutex to make it more resilient to race conditions.

    Blake Williams

  • Add Niva to companies who use ViewComponent.

    Daniel Vu Dao

  • Fix preview_paths in docs.

    Javier Aranda

Changelog

Sourced from view_component's changelog.

3.19.0

  • Relax Active Support version constraint in gemspec.

    Simon Fish

3.18.0

  • Enable components to use @request and request methods/ivars.

    Blake Williams

  • Fix bug where implicit locales in component filenames threw a NameError.

    Chloe Fons

  • Register ViewComponent tests directory for rails stats.

    Javier Aranda

  • Wrap entire compile step in a mutex to make it more resilient to race conditions.

    Blake Williams

  • Add Niva to companies who use ViewComponent.

    Daniel Vu Dao

  • Fix preview_paths in docs.

    Javier Aranda

Commits

Updates loofah from 2.22.0 to 2.23.1

Release notes

Sourced from loofah's releases.

2.23.1 / 2024-10-25

Added

Full Changelog: flavorjones/loofah@v2.23.0...v2.23.1

2.23.0 / 2024-10-24

Added

New Contributors

Full Changelog: flavorjones/loofah@v2.22.0...v2.23.0

Changelog

Sourced from loofah's changelog.

2.23.1 / 2024-10-25

Added

2.23.0 / 2024-10-24

Added

Commits
  • 3c09a93 version bump to v2.23.1
  • cc8a9f5 Merge pull request #288 from lazyatom/add-min-height-and-max-height-to-safelist
  • 6c70219 Allow CSS properties: min-height, max-height
  • 5ac17a8 version bump to v2.23.0
  • 07f6205 Merge pull request #287 from lazyatom/allow-css-min-width
  • 9f9b0b6 Allow CSS property: min-width
  • 31b90f2 Merge pull request #286 from flavorjones/flavorjones-fix-rubocop
  • 5ffc7bf style(rubocop): Gemspec/AddRuntimeDependency
  • 9bf0727 dep(dev): pin rubocop
  • beb82b8 Merge pull request #281 from m-nakamura145/update-checkout-action
  • Additional commits viewable in compare view

Updates rubocop from 1.66.1 to 1.67.0

Release notes

Sourced from rubocop's releases.

RuboCop 1.67

New features

  • #13259: Add new Lint/DuplicateSetElement cop. ([@​koic][])
  • #13223: Add AllowRBSInlineAnnotation config option to Layout/LeadingCommentSpace to support RBS::Inline style annotation comments. ([@​tk0miya][])
  • #13310: Display analysis Ruby version in rubocop -V. ([@​koic][])

Bug fixes

  • #13314: Fix a false negative for Style/Semicolon when using a semicolon between a closing parenthesis after a line break and a consequent expression. ([@​koic][])
  • #13217: Fix a false positive in Lint/ParenthesesAsGroupedExpression with compound ranges. ([@​gsamokovarov][])
  • #13268: Fix a false positive for Style/BlockDelimiters when a single line do-end block with an inline rescue with a semicolon before rescue. ([@​koic][])
  • #13298: Fix an error for Layout/AccessModifierIndentation when the access modifier is on the same line as the class definition. ([@​koic][])
  • #13198: Fix an error for Style/OneLineConditional when using nested if/then/else/end. ([@​koic][])
  • #13316: Fix an incorrect autocorrect for Lint/ImplicitStringConcatenation with Lint/TripleQuotes when string literals with triple quotes are used. ([@​koic][])
  • #13220: Fix an incorrect autocorrect for Style/ArgumentsForwarding when using only forwarded arguments in brackets. ([@​koic][])
  • #13202: Fix an incorrect autocorrect for Style/CombinableLoops when looping over the same data with different block variable names. ([@​koic][])
  • #13291: Fix an incorrect autocorrect for Style/RescueModifier when using modifier rescue for method call with heredoc argument. ([@​koic][])
  • #13226: Fix --auto-gen-config when passing an absolute config path. ([@​earlopain][])
  • #13225: Avoid syntax error when correcting Style/OperatorMethodCall with / operations followed by a parenthesized argument. ([@​dvandersluis][])
  • #13235: Fix an error for Style/IfUnlessModifier when multiline if that fits on one line and using implicit method call with hash value omission syntax. ([@​koic][])
  • #13219: Fix a false positive for Style/ArgumentsForwarding with Ruby 3.0 and optional position arguments. ([@​earlopain][])
  • #13271: Fix a false positive for Lint/AmbiguousRange when using rational literals. ([@​koic][])
  • #13260: Fix a false positive for Lint/RedundantSafeNavigation with namespaced constants. ([@​earlopain][])
  • #13224: Fix false positives for Style/OperatorMethodCall with named forwarding. ([@​earlopain][])
  • #13213: Fix false positives for Style/AccessModifierDeclarations when AllowModifiersOnAttrs: true and using splat with a percent symbol array, or with a constant. ([@​koic][])
  • #13145: Fix false positives for Style/RedundantLineContinuation when line continuations with comparison operator and the LHS is wrapped in parentheses. ([@​koic][])
  • #12875: Fix false positive for Style/ArgumentsForwarding when argument is used inside a block. ([@​dvandersluis][])
  • #13239: Fix false positive for Style/CollectionCompact when using delete_if. ([@​masato-bkn][])
  • #13210: Fix omit_parentheses style for pattern match with value omission in single-line branch. ([@​gsamokovarov][])
  • #13149: Handle crashes in custom Ruby extractors more gracefully. ([@​earlopain][])
  • #13319: Handle literal forward slashes inside a regexp in Lint/LiteralInInterpolation. ([@​dvandersluis][])
  • #13208: Fix an incorrect autocorrect for Style/IfWithSemicolon when single-line if/;/end when the then body contains a method call with [] or []=. ([@​koic][])
  • #13318: Prevent modifying blocks with Style/HashEachMethods if the hash is modified within the block. ([@​dvandersluis][])
  • #13293: Fix TargetRubyVersion from a gemspec when the gemspec is not named like the folder it is located in. ([@​earlopain][])
  • #13211: Fix wrong autocorrect for Style/GuardClause when using heredoc without else branch. ([@​earlopain][])
  • #13215: Fix wrong autocorrect for Lint/BigDecimalNew when using ::BigDecimal.new. ([@​earlopain][])
  • #13215: Fix wrong autocorrect for Style/MethodCallWithArgsParentheses with EnforcedStyle: omit_parentheses and whitespace. ([@​earlopain][])
  • #13302: Fix incompatible autocorrect between Style/RedundantBegin and Style/BlockDelimiters with EnforcedStyle: braces_for_chaining. ([@​earlopain][])

Changes

  • #13221: Do not group accessors having RBS::Inline annotation comments in Style/AccessorGrouping. ([@​tk0miya][])
  • #13286: Add AllowedMethods configuration to Layout/FirstMethodArgumentLineBreak. ([@​dvandersluis][])
  • #13110: Add support in Style/ArgumentsForwarding for detecting forwarding of all anonymous arguments. ([@​dvandersluis][])
  • #13222: Allow to write RBS::Inline annotation comments after method definition in Style/CommentedKeyword. ([@​tk0miya][])
  • #13253: Emit a deprecation when custom cops inherit from RuboCop::Cop::Cop. ([@​earlopain][])
  • #13300: Set EnforcedShorthandSyntax: either by default for Style/HashSyntax. ([@​koic][])
  • #13254: Enhance the autocorrect for Naming/InclusiveLanguage when a sole suggestion is set. ([@​koic][])
  • #13232: Make server mode aware of auto-restart for local config update. ([@​koic][])

... (truncated)

Changelog

Sourced from rubocop's changelog.

1.67.0 (2024-10-15)

New features

  • #13259: Add new Lint/DuplicateSetElement cop. ([@​koic][])
  • #13223: Add AllowRBSInlineAnnotation config option to Layout/LeadingCommentSpace to support RBS::Inline style annotation comments. ([@​tk0miya][])
  • #13310: Display analysis Ruby version in rubocop -V. ([@​koic][])

Bug fixes

  • #13314: Fix a false negative for Style/Semicolon when using a semicolon between a closing parenthesis after a line break and a consequent expression. ([@​koic][])
  • #13217: Fix a false positive in Lint/ParenthesesAsGroupedExpression with compound ranges. ([@​gsamokovarov][])
  • #13268: Fix a false positive for Style/BlockDelimiters when a single line do-end block with an inline rescue with a semicolon before rescue. ([@​koic][])
  • #13298: Fix an error for Layout/AccessModifierIndentation when the access modifier is on the same line as the class definition. ([@​koic][])
  • #13198: Fix an error for Style/OneLineConditional when using nested if/then/else/end. ([@​koic][])
  • #13316: Fix an incorrect autocorrect for Lint/ImplicitStringConcatenation with Lint/TripleQuotes when string literals with triple quotes are used. ([@​koic][])
  • #13220: Fix an incorrect autocorrect for Style/ArgumentsForwarding when using only forwarded arguments in brackets. ([@​koic][])
  • #13202: Fix an incorrect autocorrect for Style/CombinableLoops when looping over the same data with different block variable names. ([@​koic][])
  • #13291: Fix an incorrect autocorrect for Style/RescueModifier when using modifier rescue for method call with heredoc argument. ([@​koic][])
  • #13226: Fix --auto-gen-config when passing an absolute config path. ([@​earlopain][])
  • #13225: Avoid syntax error when correcting Style/OperatorMethodCall with / operations followed by a parenthesized argument. ([@​dvandersluis][])
  • #13235: Fix an error for Style/IfUnlessModifier when multiline if that fits on one line and using implicit method call with hash value omission syntax. ([@​koic][])
  • #13219: Fix a false positive for Style/ArgumentsForwarding with Ruby 3.0 and optional position arguments. ([@​earlopain][])
  • #13271: Fix a false positive for Lint/AmbiguousRange when using rational literals. ([@​koic][])
  • #13260: Fix a false positive for Lint/RedundantSafeNavigation with namespaced constants. ([@​earlopain][])
  • #13224: Fix false positives for Style/OperatorMethodCall with named forwarding. ([@​earlopain][])
  • #13213: Fix false positives for Style/AccessModifierDeclarations when AllowModifiersOnAttrs: true and using splat with a percent symbol array, or with a constant. ([@​koic][])
  • #13145: Fix false positives for Style/RedundantLineContinuation when line continuations with comparison operator and the LHS is wrapped in parentheses. ([@​koic][])
  • #12875: Fix false positive for Style/ArgumentsForwarding when argument is used inside a block. ([@​dvandersluis][])
  • #13239: Fix false positive for Style/CollectionCompact when using delete_if. ([@​masato-bkn][])
  • #13210: Fix omit_parentheses style for pattern match with value omission in single-line branch. ([@​gsamokovarov][])
  • #13149: Handle crashes in custom Ruby extractors more gracefully. ([@​earlopain][])
  • #13319: Handle literal forward slashes inside a regexp in Lint/LiteralInInterpolation. ([@​dvandersluis][])
  • #13208: Fix an incorrect autocorrect for Style/IfWithSemicolon when single-line if/;/end when the then body contains a method call with [] or []=. ([@​koic][])
  • #13318: Prevent modifying blocks with Style/HashEachMethods if the hash is modified within the block. ([@​dvandersluis][])
  • #13293: Fix TargetRubyVersion from a gemspec when the gemspec is not named like the folder it is located in. ([@​earlopain][])
  • #13211: Fix wrong autocorrect for Style/GuardClause when using heredoc without else branch. ([@​earlopain][])
  • #13215: Fix wrong autocorrect for Lint/BigDecimalNew when using ::BigDecimal.new. ([@​earlopain][])
  • #13215: Fix wrong autocorrect for Style/MethodCallWithArgsParentheses with EnforcedStyle: omit_parentheses and whitespace. ([@​earlopain][])
  • #13302: Fix incompatible autocorrect between Style/RedundantBegin and Style/BlockDelimiters with EnforcedStyle: braces_for_chaining. ([@​earlopain][])

Changes

  • #13221: Do not group accessors having RBS::Inline annotation comments in Style/AccessorGrouping. ([@​tk0miya][])
  • #13286: Add AllowedMethods configuration to Layout/FirstMethodArgumentLineBreak. ([@​dvandersluis][])
  • #13110: Add support in Style/ArgumentsForwarding for detecting forwarding of all anonymous arguments. ([@​dvandersluis][])
  • #13222: Allow to write RBS::Inline annotation comments after method definition in Style/CommentedKeyword. ([@​tk0miya][])
  • #13253: Emit a deprecation when custom cops inherit from RuboCop::Cop::Cop. ([@​earlopain][])
  • #13300: Set EnforcedShorthandSyntax: either by default for Style/HashSyntax. ([@​koic][])
  • #13254: Enhance the autocorrect for Naming/InclusiveLanguage when a sole suggestion is set. ([@​koic][])

... (truncated)

Commits
  • c108ac0 Cut 1.67
  • 74ddd9b Update Changelog
  • b5c12ae Update Changelog
  • c936160 [Fix #13331] Fix an error when using release task
  • 60ecb00 [Fix #13328] Declare Enabled as a common config key
  • 99022d9 Merge pull request #13327 from koic/make_server_mode_aware_of_auto_restart_fo...
  • 60432f5 Apply RESTRICT_ON_SEND to Bundler/GemVersion
  • 6b31c39 Make server mode aware of auto-restart for .rubocop_todo.yml update
  • adb7cee [Fix #9816] Refine Lint/SafeNavigationConsistency
  • 7d6797c [Fix #13286] Add AllowedMethods and AllowedPatterns configuration to `Lay...
  • Additional commits viewable in compare view

Updates rubocop-rails from 2.26.2 to 2.27.0

Release notes

Sourced from rubocop-rails's releases.

RuboCop Rails 2.27.0

Bug fixes

  • #1377: Fix an error for Rails/EnumSyntax when positional arguments are used and options are not passed as keyword arguments. (@​koic)
  • #1367: Fix Rails/TimeZone should not report offense on String#to_time with timezone specifier. (@​armandmgt)

Changes

Changelog

Sourced from rubocop-rails's changelog.

2.27.0 (2024-10-26)

Bug fixes

  • #1377: Fix an error for Rails/EnumSyntax when positional arguments are used and options are not passed as keyword arguments. ([@​koic][])
  • #1367: Fix Rails/TimeZone should not report offense on String#to_time with timezone specifier. ([@​armandmgt][])

Changes

Commits
  • 9165c10 Cut 2.27.0
  • f052a89 Update Changelog
  • f66b8f7 Merge pull request #1378 from koic/fix_an_error_for_rails_enum_syntax
  • 94a8370 [Fix #1377] Fix an error for Rails/EnumSyntax
  • ec31d1b Merge pull request #1367 from armandmgt/feature/allow-to_time-with-specifier
  • a413fe6 Suppress new RuboCop offenses
  • 5bc926f Fix Rails/TimeZone should not report offense on String#to_time with timez...
  • 209cc09 Use RuboCop Performance 1.22
  • 2e619f3 [Docs] Add TargetRailsVersion to config documentation
  • 083e24c Merge pull request #1374 from fatkodima/env_local-handle-negations
  • Additional commits viewable in compare view

Updates factory_bot_rails from 6.4.3 to 6.4.4

Release notes

Sourced from factory_bot_rails's releases.

6.4.4

What's Changed

New Contributors

Full Changelog: thoughtbot/factory_bot_rails@v6.4.3...v6.4.4

Changelog

Sourced from factory_bot_rails's changelog.

6.4.4 (October 25, 2024)

  • Changed: Bump Factory Bot 6.5.0
Commits

Updates faker from 3.4.2 to 3.5.1

Release notes

Sourced from faker's releases.

v3.5.1

Happy October! 🎃

This version drops support for Ruby < 3.0. We only support one EOL Ruby version at a time. Please upgrade to Ruby 3.0 to update to this and future versions of faker-ruby.

Besides that, this version removes deprecated generators, fixes some bugs, and adds a Security Policy.

Thanks to all contributors!

Breaking Changes

  • Drop support for Ru...

    Description has been truncated

Bumps the ruby-minor-patch group with 10 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [rexml](https://github.com/ruby/rexml) | `3.3.8` | `3.3.9` |
| [net-imap](https://github.com/ruby/net-imap) | `0.4.17` | `0.5.0` |
| [pg](https://github.com/ged/ruby-pg) | `1.5.8` | `1.5.9` |
| [twilio-ruby](https://github.com/twilio/twilio-ruby) | `7.3.3` | `7.3.5` |
| [view_component](https://github.com/viewcomponent/view_component) | `3.17.0` | `3.19.0` |
| [loofah](https://github.com/flavorjones/loofah) | `2.22.0` | `2.23.1` |
| [rubocop](https://github.com/rubocop/rubocop) | `1.66.1` | `1.67.0` |
| [rubocop-rails](https://github.com/rubocop/rubocop-rails) | `2.26.2` | `2.27.0` |
| [factory_bot_rails](https://github.com/thoughtbot/factory_bot_rails) | `6.4.3` | `6.4.4` |
| [faker](https://github.com/faker-ruby/faker) | `3.4.2` | `3.5.1` |



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

Updates `net-imap` from 0.4.17 to 0.5.0
- [Release notes](https://github.com/ruby/net-imap/releases)
- [Commits](ruby/net-imap@v0.4.17...v0.5.0)

Updates `pg` from 1.5.8 to 1.5.9
- [Changelog](https://github.com/ged/ruby-pg/blob/master/History.md)
- [Commits](ged/ruby-pg@v1.5.8...v1.5.9)

Updates `twilio-ruby` from 7.3.3 to 7.3.5
- [Release notes](https://github.com/twilio/twilio-ruby/releases)
- [Changelog](https://github.com/twilio/twilio-ruby/blob/main/CHANGES.md)
- [Commits](twilio/twilio-ruby@7.3.3...7.3.5)

Updates `view_component` from 3.17.0 to 3.19.0
- [Release notes](https://github.com/viewcomponent/view_component/releases)
- [Changelog](https://github.com/ViewComponent/view_component/blob/main/docs/CHANGELOG.md)
- [Commits](ViewComponent/view_component@v3.17.0...v3.19.0)

Updates `loofah` from 2.22.0 to 2.23.1
- [Release notes](https://github.com/flavorjones/loofah/releases)
- [Changelog](https://github.com/flavorjones/loofah/blob/main/CHANGELOG.md)
- [Commits](flavorjones/loofah@v2.22.0...v2.23.1)

Updates `rubocop` from 1.66.1 to 1.67.0
- [Release notes](https://github.com/rubocop/rubocop/releases)
- [Changelog](https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md)
- [Commits](rubocop/rubocop@v1.66.1...v1.67.0)

Updates `rubocop-rails` from 2.26.2 to 2.27.0
- [Release notes](https://github.com/rubocop/rubocop-rails/releases)
- [Changelog](https://github.com/rubocop/rubocop-rails/blob/master/CHANGELOG.md)
- [Commits](rubocop/rubocop-rails@v2.26.2...v2.27.0)

Updates `factory_bot_rails` from 6.4.3 to 6.4.4
- [Release notes](https://github.com/thoughtbot/factory_bot_rails/releases)
- [Changelog](https://github.com/thoughtbot/factory_bot_rails/blob/main/NEWS.md)
- [Commits](thoughtbot/factory_bot_rails@v6.4.3...v6.4.4)

Updates `faker` from 3.4.2 to 3.5.1
- [Release notes](https://github.com/faker-ruby/faker/releases)
- [Changelog](https://github.com/faker-ruby/faker/blob/main/CHANGELOG.md)
- [Commits](faker-ruby/faker@v3.4.2...v3.5.1)

---
updated-dependencies:
- dependency-name: rexml
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: ruby-minor-patch
- dependency-name: net-imap
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: ruby-minor-patch
- dependency-name: pg
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: ruby-minor-patch
- dependency-name: twilio-ruby
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: ruby-minor-patch
- dependency-name: view_component
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: ruby-minor-patch
- dependency-name: loofah
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: ruby-minor-patch
- dependency-name: rubocop
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: ruby-minor-patch
- dependency-name: rubocop-rails
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: ruby-minor-patch
- dependency-name: factory_bot_rails
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: ruby-minor-patch
- dependency-name: faker
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: ruby-minor-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Oct 28, 2024
@dependabot dependabot bot requested a review from xmunoz October 28, 2024 21:02
@xmunoz xmunoz merged commit 4cb6af3 into main Oct 29, 2024
3 checks passed
@dependabot dependabot bot deleted the dependabot/bundler/ruby-minor-patch-46ca831389 branch October 29, 2024 13:37
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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant