Skip to content

Commit

Permalink
Merge pull request #1398 from stripe/latest-codegen-beta
Browse files Browse the repository at this point in the history
API Updates for beta branch
  • Loading branch information
anniel-stripe authored Nov 10, 2022
2 parents ee6776e + 65a595a commit ab68a2e
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 5 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,15 @@
# Changelog

## 9.9.0 - 2022-11-08
* [#1394](https://github.com/stripe/stripe-php/pull/1394) API Updates
* Add support for new values `eg_tin`, `ph_tin`, and `tr_tin` on enum `TaxId.type`
* [#1389](https://github.com/stripe/stripe-php/pull/1389) API Updates
* Add support for `on_behalf_of` on `Subscription`
* [#1379](https://github.com/stripe/stripe-php/pull/1379) Do not run Coveralls in PR-s

## 9.9.0-beta.2 - 2022-11-02
* [#1390](https://github.com/stripe/stripe-php/pull/1390) API Updates for beta branch
* Updated beta APIs to the latest stable version
* Updated beta APIs to the latest stable version

## 9.9.0-beta.1 - 2022-10-21
* [#1384](https://github.com/stripe/stripe-php/pull/1384) API Updates for beta branch
Expand Down
6 changes: 3 additions & 3 deletions lib/Service/PaymentMethodService.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@
class PaymentMethodService extends \Stripe\Service\AbstractService
{
/**
* Returns a list of PaymentMethods attached to the StripeAccount. For listing a
* customer’s payment methods, you should use <a
* Returns a list of PaymentMethods for Treasury flows. If you want to list the
* PaymentMethods attached to a Customer for payments, you should use the <a
* href="/docs/api/payment_methods/customer_list">List a Customer’s
* PaymentMethods</a>.
* PaymentMethods</a> API instead.
*
* @param null|array $params
* @param null|array|\Stripe\Util\RequestOptions $opts
Expand Down
2 changes: 1 addition & 1 deletion tests/Stripe/HttpClient/CurlClientTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,7 @@ public function testExecuteStreamingRequestWithRetriesRetries()
$serverCode = <<<'EOF'
<?php
http_response_code(500);
header("stripe-should-retry", "true");
header("stripe-should-retry: true");
?>
{}
EOF;
Expand Down

0 comments on commit ab68a2e

Please sign in to comment.