Fixed empty json attributes arrays being sent incorrectly#116
Merged
Fixed empty json attributes arrays being sent incorrectly#116
Conversation
cb-karthikp
approved these changes
Dec 15, 2025
|
Actually this caused a regression : example : $client->coupon()->createForItems([
'id' => 'foo',
'name' => 'foo',
'discount_percentage' => 10.0,
'apply_on' => 'each_specified_item',
'item_constraints' => [[
'constraint' => 'specific',
'item_type' => 'plan',
'item_price_ids' => ['some_price_id'],
]],
]);
--> Chargebee\Exceptions\InvalidRequestException item_constraints[item_price_ids][0] : wrong format.in the final JSON payload, --> maybe the JSON_FORCE_OBJECT param should be used only if the $params array to serialize is an empty array ? |
Merged
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
v4.12.1 (2025-12-15)
Bug Fixes: