You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Add support for `origin_context` on `Checkout.Session`
27
+
*[#1881](https://github.com/stripe/stripe-php/pull/1881) Ensure compatibility with POST on older versions of libcurl
28
+
* Fixes an issue with older versions of php/libcurl where certain SDK calls that have empty POST bodies will result in a 400 Bad Request returned from the server.
29
+
22
30
## 17.5.0-beta.2 - 2025-07-09
23
31
*[#1886](https://github.com/stripe/stripe-php/pull/1886) Pull in V2 FinancialAccount changes for June release
24
32
* Add support for `close` and `create` methods on resource `V2.MoneyManagement.FinancialAccount`
@@ -46,6 +54,8 @@ This release changes the pinned API version to `2025-06-30.preview`.
46
54
* Change type of `V2.MoneyManagement.ReceivedCredit.balance_transfer.payout_v1` from `string` to `nullable(string)`
47
55
48
56
## 17.4.0 - 2025-07-01
57
+
This release changes the pinned API version to `2025-06-30.basil`.
Copy file name to clipboardExpand all lines: lib/Balance.php
+2-7Lines changed: 2 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -8,14 +8,9 @@
8
8
* This is an object representing your Stripe balance. You can retrieve it to see
9
9
* the balance currently on your Stripe account.
10
10
*
11
-
* You can also retrieve the balance history, which contains a list of
12
-
* <a href="https://stripe.com/docs/reporting/balance-transaction-types">transactions</a> that contributed to the balance
13
-
* (charges, payouts, and so forth).
11
+
* The top-level <code>available</code> and <code>pending</code> comprise your "payments balance."
14
12
*
15
-
* The available and pending amounts for each currency are broken down further by
16
-
* payment source types.
17
-
*
18
-
* Related guide: <a href="https://stripe.com/docs/connect/account-balances">Understanding Connect account balances</a>
13
+
* Related guide: <a href="https://stripe.com/docs/payments/balances">Balances and settlement time</a>, <a href="https://stripe.com/docs/connect/account-balances">Understanding Connect account balances</a>
19
14
*
20
15
* @property string $object String representing the object's type. Objects of the same type share the same value.
21
16
* @property (object{amount: int, currency: string, source_types?: (object{bank_account?: int, card?: int, fpx?: int}&StripeObject)}&StripeObject)[] $available Available funds that you can transfer or pay out automatically by Stripe or explicitly through the <a href="https://stripe.com/docs/api#transfers">Transfers API</a> or <a href="https://stripe.com/docs/api#payouts">Payouts API</a>. You can find the available balance for each currency and payment type in the <code>source_types</code> property.
Copy file name to clipboardExpand all lines: lib/BalanceSettings.php
+2-4Lines changed: 2 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -12,9 +12,7 @@
12
12
* to manage your connected accounts’ balance settings instead.
13
13
*
14
14
* @property string $object String representing the object's type. Objects of the same type share the same value.
15
-
* @property null|bool $debit_negative_balances A Boolean indicating if Stripe should try to reclaim negative balances from an attached bank account. See <a href="/connect/account-balances">Understanding Connect account balances</a> for details. The default value is <code>false</code> when <a href="/api/accounts/object#account_object-controller-requirement_collection">controller.requirement_collection</a> is <code>application</code>, which includes Custom accounts, otherwise <code>true</code>.
16
-
* @property null|(object{schedule: null|(object{interval: null|string, monthly_payout_days?: int[], weekly_payout_days?: string[]}&StripeObject), statement_descriptor: null|string, status: string}&StripeObject) $payouts Settings specific to the account's payouts.
Copy file name to clipboardExpand all lines: lib/Billing/AlertTriggered.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@
10
10
* @property int $created Time at which the object was created. Measured in seconds since the Unix epoch.
11
11
* @property string $customer ID of customer for which the alert triggered
12
12
* @property bool $livemode Has the value <code>true</code> if the object exists in live mode or the value <code>false</code> if the object exists in test mode.
13
-
* @property int $value The value triggering the alert
13
+
* @property string $value The value triggering the alert
* @property string $display_name The meter's name.
18
18
* @property string $event_name The name of the meter event to record usage for. Corresponds with the <code>event_name</code> field on meter events.
19
-
* @property null|string $event_time_window The time window to pre-aggregate meter events for, if any.
19
+
* @property null|string $event_time_window The time window which meter events have been pre-aggregated for, if any.
20
20
* @property bool $livemode Has the value <code>true</code> if the object exists in live mode or the value <code>false</code> if the object exists in test mode.
0 commit comments