From df4dbec63982ac5078fd79ff8f5271272d1a9e8a Mon Sep 17 00:00:00 2001 From: Parthiv Chandran Date: Fri, 17 Oct 2025 15:29:28 +0530 Subject: [PATCH] fix: added rejection_reason and bumped version with changelog --- CHANGELOG.md | 4 ++++ lib/plivo/resources/regulatory_compliance.rb | 1 + lib/plivo/version.rb | 2 +- 3 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 81b1aeb0..6aa4a274 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Change Log +## [4.62.2](https://github.com/plivo/plivo-ruby/tree/v4.62.2) (2025-10-17) +**Feature - Regulatory Compliance: Add rejection_reason to Compliance Application** +- Added `rejection_reason` field to Compliance Application response object. + ## [4.62.1](https://github.com/plivo/plivo-ruby/tree/v4.62.1) (2025-08-06) **Feature - Expanded Media Type Support for Media Upload** - Added support for additional media file formats: GIF, MP3, WAV, OGG, 3GPP, 3GPP2, VCARD, CSV, XLS, XLSX, and PLAIN text files diff --git a/lib/plivo/resources/regulatory_compliance.rb b/lib/plivo/resources/regulatory_compliance.rb index 8b3bc364..f55ed6cc 100644 --- a/lib/plivo/resources/regulatory_compliance.rb +++ b/lib/plivo/resources/regulatory_compliance.rb @@ -453,6 +453,7 @@ def to_s country_iso2: @country_iso2, number_type: @number_type, compliance_requirement_id: @compliance_requirement_id, + rejection_reason: @rejection_reason, documents: @documents, }.delete_if { |key, value| value.nil? }.to_s end diff --git a/lib/plivo/version.rb b/lib/plivo/version.rb index 08243466..5367ae50 100644 --- a/lib/plivo/version.rb +++ b/lib/plivo/version.rb @@ -1,3 +1,3 @@ module Plivo - VERSION = "4.62.1".freeze + VERSION = "4.62.2".freeze end