Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Jan 18, 2025

This PR contains the following updates:

Package Change Age Confidence
aws-sdk-s3 (source, changelog) '~> 1', '>= 1.177.0' -> '~> 1', '>= 1.199.1' age confidence
httparty (changelog) '~> 0.22' -> '~> 0.23', '>= 0.23.2' age confidence
json '~> 2.9', '>= 2.9.1' -> '~> 2.15', '>= 2.15.1' age confidence
liquid (source) '~> 5.6' -> '~> 5.8', '>= 5.8.7' age confidence
mini_magick (changelog) '>= 5.0.1' -> '>= 5.3.1' age confidence
pg '~> 1.5', '>= 1.5.9' -> '~> 1.6', '>= 1.6.2' age confidence
simplecov-lcov '~> 0.8.0' -> '~> 0.9.0' age confidence
twilio-ruby '~> 7.4.0' -> '~> 7.8.3' age confidence

Release Notes

aws/aws-sdk-ruby (aws-sdk-s3)

v1.199.1

  • Issue - Update TransferManager#download_file and Object#download_file documentation regarding temporary file usage and failure handling for different destination types.

v1.199.0

  • Feature - This release includes backward compatibility work on the "Expires" parameter.

v1.198.0

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

  • Issue - Fix multipart download_file to support Pathname, File and Tempfile objects as download destinations.

v1.197.0

  • Issue - When multipart stream uploader fails to complete multipart upload, it calls abort multipart upload.

  • Issue - For Aws::S3::Object class, the following methods have been deprecated: download_file, upload_file and upload_stream. Use Aws::S3::TransferManager instead.

  • Feature - Add Aws::S3::TransferManager, a S3 transfer utility that provides upload/download capabilities with automatic multipart handling, progress tracking, and handling of large files.

v1.196.1

  • Issue - Add range validation to multipart download to ensure all parts are successfully processed.

  • Issue - When multipart uploader fails to complete multipart upload, it calls abort multipart upload.

  • Issue - Clean up partially downloaded file on multipart download_file failure while preserving existing file.

v1.196.0

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

v1.195.0

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

v1.194.0

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

v1.193.0

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

v1.192.0

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

v1.191.0

  • Feature - Adds support for additional server-side encryption mode and storage class values for accessing Amazon FSx data from Amazon S3 using S3 Access Points

v1.190.0

  • Feature - Added support for renaming objects within the same bucket using the new RenameObject API.

v1.189.1

  • Issue - Only load required cgi modules for Ruby 3.5.

v1.189.0

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

v1.188.0

  • Feature - Adding checksum support for S3 PutBucketOwnershipControls API.

v1.187.0

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

  • Issue - Signal data in http response listeners prior to writing, so that data can be inspected or verified before potential mutation.

v1.186.1

  • Issue - Abort multipart download if object is modified during download.

v1.186.0

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

v1.185.0

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

v1.184.0

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

v1.183.0

  • Feature - Amazon S3 adds support for S3 Access Points for directory buckets in AWS Dedicated Local Zones

v1.182.0

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

v1.181.0

  • Feature - Added support for Content-Range header in HeadObject response.

v1.180.0

  • Feature - Updated list of the valid AWS Region values for the LocationConstraint parameter for general purpose buckets.

v1.179.0

  • Feature - Change the type of MpuObjectSize in CompleteMultipartUploadRequest from int to long.

v1.178.0

  • Feature - This change enhances integrity protections for new SDK requests to S3. S3 SDKs now support the CRC64NVME checksum algorithm, full object checksums for multipart S3 objects, and new default integrity protections for S3 requests.

  • Feature - Default to using CRC32 checksum validation for S3 uploads and downloads.

jnunemaker/httparty (httparty)

v0.23.2: 0.23.2

Compare Source

What's Changed

New Contributors

Full Changelog: jnunemaker/httparty@v0.23.1...v0.23.2

v0.23.1

Compare Source

  • Add foul option to class level d268387

Full Changelog: jnunemaker/httparty@v0.23.0...v0.23.1

v0.23.0

Compare Source

What's Changed

New Contributors

Full Changelog: jnunemaker/httparty@v0.22.0...v0.23.0

minimagick/minimagick (mini_magick)

v5.3.1

Compare Source

  • Fixed MiniMagick.cli_prefix being mutated when set to an array.

v5.3.0

Compare Source

  • Actually require Ruby 2.5+ in the gemspec.
  • Fix Ruby 2.5 compatibility when using MiniMagick.restricted_env configuration.
  • Drop benchmark dependency.
  • Fix keyword argument forwarding when trying to call MiniMagick.compare(errors: false)

v5.2.0

Compare Source

  • Added MiniMagick.restricted_env configuration for stopping IM command from inheriting environment variables from the parent process.
  • Fixed "ambiguous * has been interpreted as an argument prefix" warning

v5.1.2

Compare Source

  • Add benchmark gem to runtime dependencies

v5.1.1

Compare Source

  • Add logger gem to dependencies for Ruby 3.4+.

v5.1.0

Compare Source

  • New cli_env configuration was added for setting extra environment variables for every CLI command:

    MiniMagick.configure do |config|
      config.cli_env = { "MAGICK_MEMORY_LIMIT" => "128MiB" }
    end
  • New graphicsmagick configuration was added for telling MiniMagick to use GraphicsMagick instead of MiniMagick:

    MiniMagick.configure do |config|
      config.graphicsmagick = true # prepend all commands with "gm"
    end

    Previously, the recommended approach was setting MiniMagick.cli_prefix = "gm", but that doesn't work when ImageMagick 7 is installed, as in that case MiniMagick will try to prepend magick on top of gm.

fortissimo1997/simplecov-lcov (simplecov-lcov)

v0.9.0

Compare Source

Features
  • Add automated release workflow with release-please (14ca244)
  • Refactor version management and modernize gemspec (2aa5f96)
Bug Fixes
twilio/twilio-ruby (twilio-ruby)

v7.8.3

Compare Source

Library - Chore

Insights

  • Replace field with key in Request Filters and Response Metadata Filters and for Reports API

v7.8.2

Compare Source

Api

  • Added optional parameter CallerDisplayName for conference participant outbound
  • Updated description for property to in the participant create request

v7.8.1

Compare Source

Library - Chore

Api

  • Add date_created property to media resource and date_created filtering parameters for read action
  • Updated the Recordings Resource channels property to clarify channels = # of channels in the recording resource and how to specify the # of channels in recording download

Intelligence

  • Add encryption_credential_sid field in transcripts and services in v2

Trusthub

  • Remove beta feature flag for all TH APIs
  • Remove beta feature flag for ComplianceInquiries API to support OneConsole traffic

Twiml

  • Add new noun <AiSession>

v7.8.0

Compare Source

Api

  • Remove usage category enum from usage record and usage triggers API (breaking change)

v7.7.2

Compare Source

Studio

  • Add type to Step resource APIs

Verify

  • Allow to update all passkeys parameters in the service update

v7.7.1

Compare Source

Accounts

  • Update beta feature flag for consent and contact bulk upsert APIs

Api

  • Add multiple missing usage categories to usage records and usage triggers api
  • Add channels-whatsapp-template-marketing and channels-whatsapp-template-utility to usage categories

Conversations

  • Fix state spelling for initializing enum value
  • Update state to include intializing for ServiceConversationWithParticipants and ConversationWithParticipants

Flex

  • Adding new optional parameter identity to web_channels API in version v2

Trusthub

  • Add required Permissions to the ComplianceInquiries API

Verify

  • Add passkeys support to Verify API creating and updating services.
  • Update ienum type for Factor creation
  • Add passkeys as challenge and factor type

v7.7.0

Compare Source

Events

  • Remove SinkSid parameter when updating subscriptions. (breaking change)

Twiml

  • Remove Duplicates.
  • Add Polly Generative voices.
  • Add Latest Google (Chirp3-HD) voices.

v7.6.5

Compare Source

Flex

  • update team name for web_channel, webchat_init_token, webchat_refresh_token

v7.6.4

Compare Source

Library - Chore

Bulkexports

  • Changed the type of 'details' field to be a list of objects instead of a single object

Conversations

  • Updates to method casing for ConfgurationAddress, ConversationScopedWebhook, and ServiceConversationScopedWebhook for RestProxy compatibility

Proxy

  • remove shortcodes resource as its no longer used

Serverless

  • Change log field level from type ienum to string in Logs api

Taskrouter

  • Remove URL-encoded from attributes param definition in tasks

Trunking

  • Added symmetric_rtp_enabled property on Trunks.

Twiml

  • Add support for <WhatsApp> noun under <Dial> verb

v7.6.3

Compare Source

Library - Chore

Api

  • Change DependentPhoneNumber capabilities type object and date_created, date_updated to date_time<rfc2822>
  • Updated the Default value from 0 to 1 in the Recordings Resource channels property

Serverless

  • Update ienum type level in Logs api

Verify

  • Update Channel list in Verify Attempst API
  • Update ienum type for Conversion_Status in Verify Attempts API

Twiml

  • Add us2 to the list of supported values for the region attribute in the <Conference> TwiML noun.

v7.6.2

Compare Source

Library - Chore

Api

  • Added several usage category enums to usage_record API

Numbers

  • Update the porting documentation

Verify

  • Update ienum type for Channels in Verify Attempts API

v7.6.1

Compare Source

Accounts

  • Changes to add date_of_consent param in Bulk Consent API

Api

  • Change friendly_name, date_created and date_updated properties to type string.

Twiml

  • Update twiml definition for <ConversationRelay> and <Assistant>

v7.6.0

Compare Source

Library - Chore

Api

  • Add response_key for Usage Triggers fetch endpoint.

Flex

  • Add Update Interaction API
  • Adding webhook_ttid as optional parameter in Interactions API

Serverless

  • Add node22 as a valid Build runtime
  • Add node20 as a valid Build runtime

Video

  • removed transcribe_participants_on_connect and transcriptions_configuration from the room resource (breaking change)
  • Added transcribe_participants_on_connect and transcriptions_configuration to the room resource

v7.5.2

Compare Source

Studio

  • Add documentation for parent_step_sid field in Step resource

v7.5.1

Compare Source

Accounts

  • Update Safelist API docs as part of prefix supoort

Flex

  • Removing first_name, last_name, and friendly_name from the Flex User API

Messaging

  • Add missing tests under transaction/phone_numbers and transaction/short_code

v7.5.0

Compare Source

Library - Feature

Library - Chore

Api

  • Add the missing emergency_enabled field for Address Service endpoints

Messaging

  • Add missing enums for A2P and TF

Numbers

  • add missing enum values to hosted_number_order_status

Twiml

  • Convert Twiml Attribute speechModel of type enum to string (breaking change)

v7.4.5

Compare Source

Flex

  • Adding Digital Transfers APIs under v1/Interactions

Numbers

  • Convert webhook_type to ienum type in v1/Porting/Configuration/Webhook/{webhook_type}

Trusthub

  • Changing TrustHub SupportingDocument status enum from lowercase to uppercase since kyc-orch returns status capitalized and rest proxy requires strict casing

v7.4.4

Compare Source

Api

  • Change downstream url and change media type for file base/api/v2010/validation_request.json.

Intelligence

  • Add json_results for Generative JSON operator results

Messaging

  • Add DestinationAlphaSender API to support Country-Specific Alpha Senders

Video

  • Change codec type from enum to case-insensitive enum in recording and room_recording apis

v7.4.3

Compare Source

Library - Chore

Api

  • Add open-api file tag to conference/call recordings and recording_transcriptions.

Events

  • Add support for subaccount subscriptions (beta)

Insights

  • add new region to conference APIs

Lookups

  • Add new parnter_sub_id query parameter to the lookup request

v7.4.2

Compare Source

Library - Chore

Messaging

  • Adds validity period Default value in service resource documentation

v7.4.1

Compare Source

Library - Chore

Numbers

  • Change beta feature flag to use v2/BulkHostedNumberOrders

Configuration

📅 Schedule: Branch creation - "after 9am and before 1pm on Saturday" in timezone Asia/Tokyo, Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/minor-updated-gems branch 3 times, most recently from a23886d to 2e46a46 Compare January 29, 2025 21:02
@renovate renovate bot force-pushed the renovate/minor-updated-gems branch 4 times, most recently from cf7a49d to 92b388e Compare February 6, 2025 21:51
@renovate renovate bot force-pushed the renovate/minor-updated-gems branch 2 times, most recently from d1e5466 to 041784a Compare February 14, 2025 22:14
@renovate renovate bot force-pushed the renovate/minor-updated-gems branch 4 times, most recently from 5a89a4f to 1534c58 Compare February 25, 2025 11:55
@renovate renovate bot force-pushed the renovate/minor-updated-gems branch from 1534c58 to 1a38003 Compare February 26, 2025 12:26
@renovate renovate bot force-pushed the renovate/minor-updated-gems branch 3 times, most recently from 0ec00c3 to 322afaa Compare March 15, 2025 11:54
@renovate renovate bot force-pushed the renovate/minor-updated-gems branch 3 times, most recently from c3ca5fa to d6807e2 Compare March 23, 2025 09:13
@renovate renovate bot force-pushed the renovate/minor-updated-gems branch 3 times, most recently from dba0ef1 to 60f274b Compare March 31, 2025 19:24
@renovate renovate bot force-pushed the renovate/minor-updated-gems branch 3 times, most recently from 2923998 to d0455a5 Compare April 9, 2025 19:54
@renovate renovate bot force-pushed the renovate/minor-updated-gems branch from d0455a5 to bd3e31f Compare April 14, 2025 17:00
@renovate renovate bot force-pushed the renovate/minor-updated-gems branch from bd3e31f to e2cbe32 Compare April 24, 2025 10:28
@renovate renovate bot force-pushed the renovate/minor-updated-gems branch 3 times, most recently from cb91a6f to f93a622 Compare August 3, 2025 21:50
@renovate renovate bot force-pushed the renovate/minor-updated-gems branch 2 times, most recently from 817f6d9 to bcaf04f Compare August 5, 2025 21:03
@renovate renovate bot force-pushed the renovate/minor-updated-gems branch 3 times, most recently from 41c4d69 to 8f0b476 Compare August 24, 2025 16:40
@renovate renovate bot force-pushed the renovate/minor-updated-gems branch 2 times, most recently from b792ee9 to 4ce1007 Compare August 28, 2025 19:44
@renovate renovate bot force-pushed the renovate/minor-updated-gems branch 6 times, most recently from ed404f8 to 58f77d4 Compare September 11, 2025 06:31
@renovate renovate bot force-pushed the renovate/minor-updated-gems branch 3 times, most recently from 612ad6f to e8ef334 Compare September 22, 2025 12:37
@renovate renovate bot force-pushed the renovate/minor-updated-gems branch 3 times, most recently from f280bae to 5a90a5c Compare September 30, 2025 13:56
@renovate renovate bot force-pushed the renovate/minor-updated-gems branch from 5a90a5c to bb28d8d Compare October 7, 2025 08:49
@renovate renovate bot force-pushed the renovate/minor-updated-gems branch from bb28d8d to 797bea6 Compare October 8, 2025 05:10
@renovate
Copy link
Contributor Author

renovate bot commented Oct 12, 2025

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

@mergery mergery bot merged commit 90c8ee1 into master Oct 12, 2025
18 of 19 checks passed
@mergery mergery bot deleted the renovate/minor-updated-gems branch October 12, 2025 07:24
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants