Skip to content

Conversation

@dependabot
Copy link
Contributor

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

Bumps the ruby-minor-patch group with 4 updates: i18n-js, twilio-ruby, bundler-audit and i18n-tasks.

Updates i18n-js from 4.2.3 to 4.2.4

Changelog

Sourced from i18n-js's changelog.

Changelog

Commits

Updates twilio-ruby from 7.8.4 to 7.8.7

Release notes

Sourced from twilio-ruby's releases.

7.8.7

Release Notes

Memory

  • Memory API Changes

  • Added initial Memory API endpoints with darkseagreen badge status

Docs

7.8.6

Release Notes

Twiml

  • Add new noun <ConversationRelaySession>
  • Add support for <Recording> noun under <Start> verb

Docs

7.8.5

Release Notes

Ai

  • Add error as possible transcript status
  • Add error as possible transcript status

Chat

  • Updated v2 UserChannel channel_status from not_participating to notParticipating

Intelligence

  • Make intelligence work with RestProxy
  • Add additional enums to better represent the possible states
  • Add error enum to transcription status to better align with possible outputs
  • Add json output type to text classification

Trusthub

  • Remove required parameter Primary Profile Sid from compliance_inquiry and compliance_inquiry_individual

Accounts

  • Add Messaging GeoPermissions API changes

Docs

Changelog

Sourced from twilio-ruby's changelog.

[2025-11-20] Version 7.8.7

Memory

  • Memory API Changes

  • Added initial Memory API endpoints with darkseagreen badge status

[2025-11-11] Version 7.8.6

Twiml

  • Add new noun <ConversationRelaySession>
  • Add support for <Recording> noun under <Start> verb

[2025-10-28] Version 7.8.5

Ai

  • Add error as possible transcript status
  • Add error as possible transcript status

Chat

  • Updated v2 UserChannel channel_status from not_participating to notParticipating

Intelligence

  • Make intelligence work with RestProxy
  • Add additional enums to better represent the possible states
  • Add error enum to transcription status to better align with possible outputs
  • Add json output type to text classification

Trusthub

  • Remove required parameter Primary Profile Sid from compliance_inquiry and compliance_inquiry_individual

Accounts

  • Add Messaging GeoPermissions API changes
Commits
  • 8cabe11 Release 7.8.7
  • 076baf7 [Librarian] Regenerated @ e23430afd3fa493c96b42fc37f0314ad84bbe6ef 23e59a55e7...
  • 99123d9 Release 7.8.6
  • d5a84f2 [Librarian] Regenerated @ 453fa63ec6f75d83162a32a588214a40ecafec8f 73cdb4763e...
  • 03b970e Release 7.8.5
  • b9e6094 [Librarian] Regenerated @ a264875856b0343f622eafc05d7b82d1a272cd01 36d9907dbc...
  • See full diff in compare view

Updates bundler-audit from 0.9.2 to 0.9.3

Release notes

Sourced from bundler-audit's releases.

0.9.3

  • Officially support Ruby 3.4, 3.5, and 4.0.
  • Added support for Bundler 4.x.
  • Fixed typos in API documentation.

CLI

  • Ensure that the bundler-audit check command honors the BUNDLER_AUDIT_DB environment variable.
Changelog

Sourced from bundler-audit's changelog.

0.9.3 / 2025-11-28

  • Officially support Ruby 3.4, 3.5, and 4.0.
  • Added support for Bundler 4.x.
  • Fixed typos in API documentation.

CLI

  • Ensure that the bundler-audit check command honors the BUNDLER_AUDIT_DB environment variable.
Commits
  • f8b06eb Updated the ChangeLog for 0.9.3.
  • e4fb10a Version bump to 0.9.3.
  • 34cd522 Added Ruby 4.0 to the CI matrix.
  • 22da9d7 Added Ruby 3.5 to the CI matrix.
  • 0c2afaf Require rubygems-tasks ~> 0.3 for Ruby 3.5 and 4.0.
  • 309d203 Allow using bundler 4.x
  • d40dc75 Remove syntax highlighting from example output.
  • 91a912f Be consistent and only use markdown code fences.
  • fc1bc0a Fixed typo in @return tag.
  • 276e065 Update RubyGems in GitHub Actions CI (#406)
  • Additional commits viewable in compare view

Updates i18n-tasks from 1.0.15 to 1.1.2

Release notes

Sourced from i18n-tasks's releases.

v1.1.1

  • Prism: Fixes translate calls on non-I18n receivers being processed.
  • Prism: Adds candidate keys for model_name.human and human_attribute_name.
    • Event.human_attribute_name(:title) will now match activerecord.attributes.event.title or attributes.title.
  • Prism: Candidate keys were not added to the used_tree.
  • Works around a concurrency bug by reverting to serial scanning.

Full Changelog: glebm/i18n-tasks@v1.1.0...v1.1.1

v1.1.0

  • Dropping support for Ruby < 3.1 #631
  • OpenAI translator now uses language names instead of locale codes. #630
  • Renames RubyAstScanner to RubyScanner (deprecated RubyAstScanner name).
  • Adds Prism as a dependency.
  • Merges PrismScanner into RubyScanner, now configured with:
search:
  prism: "rails"

to use the Prism scanner with more Rails support and

search:
  prism: "ruby"

to use the Prism Scanner without Rails support.

  • Implements ERB-scanner using Prism, activated with same config as above.
    • The Prism-based scanner handles comments differently vs the whitequark/parser-based scanner does.
    • The usage will be for the magic comment line instead of the subsequent line.
    • This should not affect the results of the CLI tasks.
  • Loads environment variables via dotenv if available. #395
  • Adds CLI command check-prism to try the new parser out and see the differences in key detection.
  • The Prism-based scanner supports candidate_keys for Rails translations, allowing relative translations in controllers to match either the key scoped to controller and action or only to the controller.
  • Translation services now catch errors and save partial results #642
  • Prism: Skips translations form cyclic calls instead of throwing error.
  • Adds own client for Google Translate instead of easy_translate gem.

New Contributors

Full Changelog: glebm/i18n-tasks@v1.0.15...v1.1.0

Changelog

Sourced from i18n-tasks's changelog.

v1.1.2

  • Prism: Missing require 'prism' in the scanners fixed.

v1.1.1

  • Prism: Fixes translate calls on non-I18n receivers being processed. (glebm/i18n-tasks#684)
  • Prism: Adds candidate keys for model_name.human and human_attribute_name. (glebm/i18n-tasks#684)
    • Event.human_attribute_name(:title) will now match activerecord.attributes.event.title or attributes.title.
  • Prism: Candidate keys were not added to the used_tree. (glebm/i18n-tasks#684)
  • Works around a concurrency bug by reverting to serial scanning. (glebm/i18n-tasks#687)

v1.1.0

  • Dropping support for Ruby < 3.1 #631
  • OpenAI translator now uses language names instead of locale codes. #630
  • Renames RubyAstScanner to RubyScanner (deprecated RubyAstScanner name).
  • Adds Prism as a dependency.
  • Merges PrismScanner into RubyScanner, now configured with:
search:
  prism: "rails"

to use the Prism scanner with more Rails support and

search:
  prism: "ruby"

to use the Prism Scanner without Rails support.

  • Implements ERB-scanner using Prism, activated with same config as above.
    • The Prism-based scanner handles comments differently vs the whitequark/parser-based scanner does.
    • The usage will be for the magic comment line instead of the subsequent line.
    • This should not affect the results of the CLI tasks.
  • Loads environment variables via dotenv if available. #395
  • Adds CLI command check-prism to try the new parser out and see the differences in key detection.
  • The Prism-based scanner supports candidate_keys for Rails translations, allowing relative translations in controllers to match either the key scoped to controller and action or only to the controller.
  • Translation services now catch errors and save partial results #642
  • Prism: Skips translations form cyclic calls instead of throwing error.
  • Adds own client for Google Translate instead of easy_translate gem.
Commits
  • 9e174db Bump to v1.1.2
  • 62ef674 Adds require 'prism' to scanners using Prism
  • 48d3095 Bump to v1.1.1
  • 6b67f06 Prism: Candidate keys and parser fixes (#684)
  • 06e3479 ScannerMultiplexer: Removes concurrency due to bug
  • f1a2b3f chore(deps): bump actions/checkout from 5 to 6 (#686)
  • f0c62e9 Gemfile: Removes bundler, rbx and byebug (#685)
  • 4e0564c Bump to v1.1.0
  • 6e743f9 Google translate: Adds own API implementation (#681)
  • a51e667 Prism: model_name.human handles more count values
  • Additional commits viewable 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-minor-patch group with 4 updates: [i18n-js](https://github.com/fnando/i18n-js), [twilio-ruby](https://github.com/twilio/twilio-ruby), [bundler-audit](https://github.com/rubysec/bundler-audit) and [i18n-tasks](https://github.com/glebm/i18n-tasks).


Updates `i18n-js` from 4.2.3 to 4.2.4
- [Changelog](https://github.com/fnando/i18n-js/blob/main/CHANGELOG.md)
- [Commits](fnando/i18n-js@v4.2.3...v4.2.4)

Updates `twilio-ruby` from 7.8.4 to 7.8.7
- [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.8.4...7.8.7)

Updates `bundler-audit` from 0.9.2 to 0.9.3
- [Release notes](https://github.com/rubysec/bundler-audit/releases)
- [Changelog](https://github.com/rubysec/bundler-audit/blob/master/ChangeLog.md)
- [Commits](rubysec/bundler-audit@v0.9.2...v0.9.3)

Updates `i18n-tasks` from 1.0.15 to 1.1.2
- [Release notes](https://github.com/glebm/i18n-tasks/releases)
- [Changelog](https://github.com/glebm/i18n-tasks/blob/main/CHANGES.md)
- [Commits](glebm/i18n-tasks@v1.0.15...v1.1.2)

---
updated-dependencies:
- dependency-name: i18n-js
  dependency-version: 4.2.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: ruby-minor-patch
- dependency-name: twilio-ruby
  dependency-version: 7.8.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: ruby-minor-patch
- dependency-name: bundler-audit
  dependency-version: 0.9.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: ruby-minor-patch
- dependency-name: i18n-tasks
  dependency-version: 1.1.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: ruby-minor-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Dec 1, 2025
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Dec 8, 2025

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

@dependabot dependabot bot closed this Dec 8, 2025
@dependabot dependabot bot deleted the dependabot/bundler/ruby-minor-patch-d71e6aa800 branch December 8, 2025 20:02
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant