-
Notifications
You must be signed in to change notification settings - Fork 438
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
API Updates #831
Merged
Merged
API Updates #831
Conversation
This file contains 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
dcr-stripe
force-pushed
the
latest-codegen-master
branch
from
June 29, 2022 19:10
6b02dd4
to
54a47ff
Compare
pakrym-stripe
force-pushed
the
latest-codegen-master
branch
from
June 29, 2022 19:51
54a47ff
to
d6d30c6
Compare
pakrym-stripe
approved these changes
Jun 30, 2022
dcr-stripe
added a commit
that referenced
this pull request
Jun 30, 2022
* Trigger workflows on beta branches (#823) * Codegen for openapi v157 (#824) * Bump version to 3.4.0 * Add feature/** and sdk-release/** to PR CI triggers (#830) * Add feature/** and release/** to PR CI triggers * Rename release to sdk-release in CI triggers * API Updates (#831) * Bump version to 3.5.0 * Set version to 3.5.0 to simplify merge * Reset version to 3.3.0 Co-authored-by: Kamil Pajdzik <99290280+kamil-stripe@users.noreply.github.com> Co-authored-by: Kamil Pajdzik <kamil@stripe.com> Co-authored-by: Dominic Charley-Roy <78050200+dcr-stripe@users.noreply.github.com> Co-authored-by: Dominic Charley-Roy <dcr@stripe.com>
netbsd-srcmastr
pushed a commit
to NetBSD/pkgsrc
that referenced
this pull request
Jul 8, 2022
## 3.5.0 - 2022-06-30 * [#831](stripe/stripe-python#831) API Updates * Add support for `deliver_card`, `fail_card`, `return_card`, and `ship_card` test helper methods on resource `Issuing.Card` * Switch from using `instance_url` to computing method path in place for custom methods. * Switch from using explicit class methods for test helpers instead of using meta-programming. ## 3.4.0 - 2022-06-17 * [#824](stripe/stripe-python#824) API Updates * Add support for `fund_cash_balance` test helper method on resource `Customer` * [#823](stripe/stripe-python#823) Trigger workflows on beta branches ## 3.3.0 - 2022-06-08 * [#818](stripe/stripe-python#818) fix: Update cash balance methods to no longer require nested ID. ## 3.2.0 - 2022-05-23 * [#812](stripe/stripe-python#812) API Updates * Add support for new resource `Apps.Secret` ## 3.1.0 - 2022-05-19 * [#810](stripe/stripe-python#810) API Updates * Add support for new resources `Treasury.CreditReversal`, `Treasury.DebitReversal`, `Treasury.FinancialAccountFeatures`, `Treasury.FinancialAccount`, `Treasury.FlowDetails`, `Treasury.InboundTransfer`, `Treasury.OutboundPayment`, `Treasury.OutboundTransfer`, `Treasury.ReceivedCredit`, `Treasury.ReceivedDebit`, `Treasury.TransactionEntry`, and `Treasury.Transaction` * Add support for `retrieve_payment_method` method on resource `Customer` * Add support for `list_owners` and `list` methods on resource `FinancialConnections.Account` * [#719](stripe/stripe-python#719) Set daemon attribute instead of using setDaemon method that was deprecated in Python 3.10 * [#767](stripe/stripe-python#767) Bump vendored six to 1.16.0 * [#806](stripe/stripe-python#806) Start testing on pypy-3.8 * [#811](stripe/stripe-python#811) Add sanitize_id method ## 3.0.0 - 2022-05-09 * [#809](stripe/stripe-python#809) Release of major version v3.0.0. The [migration guide](https://github.com/stripe/stripe-python/wiki/Migration-Guide-for-v3) contains more information. (⚠️ = breaking changes): *⚠️ Replace the legacy `Order` API with the new `Order` API. * New methods: `cancel`, `list_line_items`, `reopen`, and `submit` * Removed methods: `pay` and `return_order` * Removed resources: `OrderItem` and `OrderReturn` *⚠️ Rename `financial_connections.account.refresh` to `financial_connections.refresh_account` * Add support for `amount_discount`, `amount_tax`, and `product` on `LineItem` ## 2.76.0 - 2022-05-05 * [#808](stripe/stripe-python#808) API Updates * Add support for new resources `FinancialConnections.AccountOwner`, `FinancialConnections.AccountOwnership`, `FinancialConnections.Account`, and `FinancialConnections.Session` ## 2.75.0 - 2022-05-03 * [#805](stripe/stripe-python#805) API Updates * Add support for new resource `CashBalance`
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.
Codegen for openapi v161.
r? @yejia-stripe
cc @stripe/api-libraries
Changelog
deliver_card
,fail_card
,return_card
, andship_card
test helper methods on resourceIssuing.Card
instance_url
to computing method path in place for custom methods.