Skip to content

Releases: stripe/stripe-dotnet

Subscription Love

25 Jun 23:51
Compare
Choose a tag to compare
  • Subscriptions now supports passing a proration date, and the entity includes the created field
  • The modernhttpclient was removed as a dependency last release, it is no longer included with nuget
  • Some behind the scenes testing/cleanup

Dependency Removed

14 May 01:31
Compare
Choose a tag to compare
  • The modernhttpclient dependency was removed. The library now strictly uses HttpClient.

Verifying Bank Accounts

25 Apr 15:49
Compare
Choose a tag to compare
  • Bug with verifying a bank account has been fixed
  • Corrected an issue in the readme when passing a StripeCard instead of a SourceCard when creating charges

Bank Account Support

17 Apr 20:32
Compare
Choose a tag to compare
  • Support has been added for bank accounts

Metadata fix for SourceCard, and api upgrade

12 Apr 00:26
Compare
Choose a tag to compare
  • The api version supported has been bumped to 09.08.2015
  • A bug was fixed when using Metadata with SourceCard (and other nested objects)

API Upgrades, Fraud Details, OAuth Changes, More Managed Accounts

04 Apr 22:57
Compare
Choose a tag to compare
  • The supported Stripe API has been bumped to 08.07.2015 (as I've said before, Stripe.net supports a much higher version, it just needs to be verified!)
  • Managed Accounts now lets you pass every single option except additional owners (all other legal entity values are present)
  • The OAuth endpoint now supports Deauthorize
  • There is a class called SubscriptionStatuses you can use to get all available values

Async

03 Apr 18:05
Compare
Choose a tag to compare
  • All of the Stripe.net services now support async

Better Debugging and Easier Sources

01 Apr 21:31
Compare
Choose a tag to compare
  • StripeSourceOptions has been marked obsolete. Now, you will use either StripeToken (or StripeTokenOrExistingSourceId on charges), or a StripeCard. The readme has been updated.
  • The POST data has been moved from the URL to the body for all messages. This helps you debug and get better error messages.
  • The version of Stripe.net is now in the User Agent, for better support.

Metadata Fixed and Small Breaking Change

25 Mar 09:55
Compare
Choose a tag to compare
  • There was a bug when using Metadata with charges/cards. This has been fixed.
  • The supported Stripe api has been bumped up to 2015-07-28 (a lot of newer api changes apply, they have just not been verified).
  • Small breaking change: On StripeSubscription, the PeriodStart and PeriodEnd properties have been renamed to CurrentPeriodStart and CurrentPeriodEnd to match Stripe's property names.

Fixes and Optimized Requests

15 Mar 03:38
Compare
Choose a tag to compare
  • Fixes for cross platform issues introduced with 6.0.0
  • Now uses ModernHttpClient so each platform uses the best optimized http handler
  • Upgraded Json.net