Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
1 change: 1 addition & 0 deletions lib/plivo/resources/regulatory_compliance.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion lib/plivo/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Plivo
VERSION = "4.62.1".freeze
VERSION = "4.62.2".freeze
end