mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-03 01:39:24 +02:00
Update Composer dependencies.
This commit is contained in:
parent
12049cba3a
commit
47fbfd2bca
12558 changed files with 155183 additions and 28099 deletions
90
vendor/stripe/stripe-php/CHANGELOG.md
vendored
90
vendor/stripe/stripe-php/CHANGELOG.md
vendored
|
@ -1,5 +1,75 @@
|
|||
# Changelog
|
||||
|
||||
## 10.5.0 - 2023-02-02
|
||||
* [#1439](https://github.com/stripe/stripe-php/pull/1439) API Updates
|
||||
* Add support for `resume` method on resource `Subscription`
|
||||
* Add support for `amount_shipping` and `shipping_cost` on `CreditNote` and `Invoice`
|
||||
* Add support for `shipping_details` on `Invoice`
|
||||
* Add support for `invoice_creation` on `PaymentLink`
|
||||
* Add support for `trial_settings` on `Subscription`
|
||||
* Add support for new value `paused` on enum `Subscription.status`
|
||||
|
||||
## 10.4.0 - 2023-01-19
|
||||
* [#1381](https://github.com/stripe/stripe-php/pull/1381) Add getService methods to StripeClient and AbstractServiceFactory to allow mocking
|
||||
* [#1424](https://github.com/stripe/stripe-php/pull/1424) API Updates
|
||||
|
||||
* Added `REFUND_CREATED`, `REFUND_UPDATED` event definitions.
|
||||
* [#1426](https://github.com/stripe/stripe-php/pull/1426) Ignore PHP version for formatting
|
||||
* [#1425](https://github.com/stripe/stripe-php/pull/1425) Fix Stripe::setAccountId parameter type
|
||||
* [#1418](https://github.com/stripe/stripe-php/pull/1418) Switch to mb_convert_encoding to fix utf8_encode deprecation warning
|
||||
|
||||
## 10.3.0 - 2022-12-22
|
||||
* [#1413](https://github.com/stripe/stripe-php/pull/1413) API Updates
|
||||
Change `CheckoutSession.cancel_url` to be nullable.
|
||||
|
||||
## 10.2.0 - 2022-12-15
|
||||
* [#1411](https://github.com/stripe/stripe-php/pull/1411) API Updates
|
||||
* Add support for new value `invoice_overpaid` on enum `CustomerBalanceTransaction.type`
|
||||
* [#1407](https://github.com/stripe/stripe-php/pull/1407) API Updates
|
||||
|
||||
|
||||
## 10.1.0 - 2022-12-06
|
||||
* [#1405](https://github.com/stripe/stripe-php/pull/1405) API Updates
|
||||
* Add support for `flow` on `BillingPortal.Session`
|
||||
* [#1404](https://github.com/stripe/stripe-php/pull/1404) API Updates
|
||||
* Remove support for resources `Order` and `Sku`
|
||||
* Remove support for `all`, `cancel`, `create`, `list_line_items`, `reopen`, `retrieve`, `submit`, and `update` methods on resource `Order`
|
||||
* Remove support for `all`, `create`, `delete`, `retrieve`, and `update` methods on resource `Sku`
|
||||
* Add support for `custom_text` on `Checkout.Session` and `PaymentLink`
|
||||
* Add support for `invoice_creation` and `invoice` on `Checkout.Session`
|
||||
* Remove support for `product` on `LineItem`
|
||||
* Add support for `latest_charge` on `PaymentIntent`
|
||||
* Remove support for `charges` on `PaymentIntent`
|
||||
|
||||
## 10.0.0 - 2022-11-16
|
||||
* [#1392](https://github.com/stripe/stripe-php/pull/1392) Next major release changes
|
||||
|
||||
Breaking changes that arose during code generation of the library that we postponed for the next major version. For changes to the Stripe products, read more at https://stripe.com/docs/upgrades#2022-11-15.
|
||||
|
||||
"⚠️" symbol highlights breaking changes.
|
||||
|
||||
### Deprecated
|
||||
* [#1382](https://github.com/stripe/stripe-php/pull/1382) Mark `resource.save` as deprecated. Prefer the static update method that doesn't require retrieval of the resource to update it.
|
||||
```PHP
|
||||
// before
|
||||
$resource = Price::retrieve(self::TEST_RESOURCE_ID);
|
||||
$resource->metadata['key'] = 'value';
|
||||
$resource->save();
|
||||
|
||||
// after
|
||||
$resource = Price::update('price_123', [
|
||||
'metadata' => ['key' => 'value'],
|
||||
]);
|
||||
```
|
||||
|
||||
### ⚠️ Removed
|
||||
- [#1377](https://github.com/stripe/stripe-php/pull/1377) Removed deprecated `Sku` resource and service
|
||||
- [#1375](https://github.com/stripe/stripe-php/pull/1375) Removed deprecated `Orders` resource and service
|
||||
- [#1375](https://github.com/stripe/stripe-php/pull/1375) Removed deprecated `Product` field from the `LineItem`
|
||||
- [#1388](https://github.com/stripe/stripe-php/pull/1388) Removed deprecated `AlipayAccount` resource
|
||||
- [#1396](https://github.com/stripe/stripe-php/pull/1396) Removed `charges` field on `PaymentIntent` and replace it with `latest_charge`.
|
||||
|
||||
|
||||
## 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`
|
||||
|
@ -38,28 +108,28 @@
|
|||
* Add support for `login_page` on `BillingPortal.Configuration`
|
||||
* [#1360](https://github.com/stripe/stripe-php/pull/1360) Add test coverage using Coveralls
|
||||
* [#1361](https://github.com/stripe/stripe-php/pull/1361) fix: Fix type hints for error objects.
|
||||
* Update `Invoice.last_finalization_error`, `PaymentIntent.last_payment_error`, `SetupAttempt.setup_error` and `SetupIntent.setup_error` type to be `StripeObject`.
|
||||
* Addresses https://github.com/stripe/stripe-php/issues/1353. The library today does not actually return a `ErrorObject` for these fields, so the type annotation was incorrect.
|
||||
* Update `Invoice.last_finalization_error`, `PaymentIntent.last_payment_error`, `SetupAttempt.setup_error` and `SetupIntent.setup_error` type to be `StripeObject`.
|
||||
* Addresses https://github.com/stripe/stripe-php/issues/1353. The library today does not actually return a `ErrorObject` for these fields, so the type annotation was incorrect.
|
||||
* [#1356](https://github.com/stripe/stripe-php/pull/1356) Add beta readme.md section
|
||||
|
||||
## 9.3.0 - 2022-08-23
|
||||
* [#1355](https://github.com/stripe/stripe-php/pull/1355) API Updates
|
||||
* Change type of `Treasury.OutboundTransfer.destination_payment_method` from `string` to `string | null`
|
||||
* Change the return type of `CustomerService.fundCashBalance` test helper from `CustomerBalanceTransaction` to `CustomerCashBalanceTransaction`.
|
||||
* This would generally be considered a breaking change, but we've worked with all existing users to migrate and are comfortable releasing this as a minor as it is solely a test helper method. This was essentially broken prior to this change.
|
||||
* Change type of `Treasury.OutboundTransfer.destination_payment_method` from `string` to `string | null`
|
||||
* Change the return type of `CustomerService.fundCashBalance` test helper from `CustomerBalanceTransaction` to `CustomerCashBalanceTransaction`.
|
||||
* This would generally be considered a breaking change, but we've worked with all existing users to migrate and are comfortable releasing this as a minor as it is solely a test helper method. This was essentially broken prior to this change.
|
||||
|
||||
## 9.2.0 - 2022-08-19
|
||||
* [#1352](https://github.com/stripe/stripe-php/pull/1352) API Updates
|
||||
* Add support for new resource `CustomerCashBalanceTransaction`
|
||||
* Add support for `currency` on `PaymentLink`
|
||||
* Add constant for `customer_cash_balance_transaction.created` webhook event.
|
||||
* Add support for new resource `CustomerCashBalanceTransaction`
|
||||
* Add support for `currency` on `PaymentLink`
|
||||
* Add constant for `customer_cash_balance_transaction.created` webhook event.
|
||||
* [#1351](https://github.com/stripe/stripe-php/pull/1351) Add a support section to the readme
|
||||
* [#1304](https://github.com/stripe/stripe-php/pull/1304) Allow passing PSR-3 loggers to setLogger as they are compatible
|
||||
|
||||
## 9.1.0 - 2022-08-11
|
||||
* [#1348](https://github.com/stripe/stripe-php/pull/1348) API Updates
|
||||
* Add support for `payment_method_collection` on `Checkout.Session` and `PaymentLink`
|
||||
|
||||
* Add support for `payment_method_collection` on `Checkout.Session` and `PaymentLink`
|
||||
|
||||
* [#1346](https://github.com/stripe/stripe-php/pull/1346) API Updates
|
||||
* Add support for `expires_at` on `Apps.Secret`
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue