dj-stripe

dj-stripe automatically syncs your Stripe Data to your local database as pre-implemented Django Models allowing you to use the Django ORM, in your code, to work with the data making it easier and faster.

MIT License

Downloads
119.1K
Stars
1.5K
Committers
127
dj-stripe - dj-stripe 0.1.5

Published by kavdev almost 4 years ago

  • Fixed the manifest so we include html, css, js, images.
dj-stripe - dj-stripe 0.1.6

Published by kavdev almost 4 years ago

  • Fixed a couple template paths
  • Fixed the manifest so we include html, images.
dj-stripe - dj-stripe 0.1.7

Published by kavdev almost 4 years ago

  • Middleware excepts all of the djstripe namespaced URLs. This way people can pay.
dj-stripe - dj-stripe 0.2.0

Published by kavdev almost 4 years ago

  • Cancellation of plans now works.
  • Upgrades and downgrades of plans now work.
  • Changing of cards now works.
  • Added breadcrumbs to improve navigation.
  • Improved installation instructions.
  • Consolidation of test instructions.
  • Minor improvement to django-stripe-payments documentation
  • Added coverage.py to test process.
  • Added south migrations.
  • Fixed the subscription_payment_required function-based view decorator.
  • Removed unnecessary django-crispy-forms
dj-stripe - dj-stripe 0.2.1

Published by kavdev almost 4 years ago

  • Fixed a bug on CurrentSubscription tests
  • Improved usage documentation
  • Added to migration from other tools documentation
dj-stripe - dj-stripe 0.2.2

Published by kavdev almost 4 years ago

  • Added Registration + Subscription form
dj-stripe - dj-stripe 0.2.3

Published by kavdev almost 4 years ago

  • Fix packaging so all submodules are loaded
dj-stripe - dj-stripe 0.2.4

Published by kavdev almost 4 years ago

  • Recursive package finding.
dj-stripe - dj-stripe 0.2.5

Published by kavdev almost 4 years ago

  • Fixed bug in initial checkout
  • You can't purchase the same plan that you currently have.
dj-stripe - dj-stripe 0.2.6

Published by kavdev almost 4 years ago

  • Changed name of division tag to djdiv.
  • Added safe_setting.py module to handle edge cases when working with custom user models.
  • Added cookbook page in the documentation.
dj-stripe - dj-stripe 0.2.7

Published by kavdev almost 4 years ago

  • Add handy rest_framework permission class.
  • Fixing attribution for django-stripe-payments.
  • Add new status to Invoice model.
dj-stripe - dj-stripe 0.2.8

Published by kavdev almost 4 years ago

  • Improved usage documentation.
  • Corrected order of fields in StripeSubscriptionSignupForm.
  • Corrected transaction history template layout.
  • Updated models to take into account when settings.USE_TZ is disabled.
dj-stripe - dj-stripe 0.2.9

Published by kavdev almost 4 years ago

  • Cancellation added to views.
  • Support for kwargs on charge and invoice fetching.
  • def charge() now supports send_receipt flag, default to True.
  • Fixed templates to work with Bootstrap 3.0.0 column design.
dj-stripe - dj-stripe 0.3.1

Published by kavdev almost 4 years ago

  • Cancellation fix (Thanks Yasmine Charif)
  • Add setup.cfg for wheel generation (Thanks Charlie Denton)
dj-stripe - dj-stripe 0.3.2

Published by kavdev almost 4 years ago

  • Made Yasmine Charif a core committer
  • Take into account trial days in a subscription plan (Thanks Yasmine Charif) * Take into account trial days in a subscription plan (Thanks Yasmine Charif)
  • Correct invoice period end value (Thanks Yasmine Charif) * Correct invoice period end value (Thanks Yasmine Charif)
  • Make plan cancellation and plan change consistently not prorating (Thanks Yasmine Charif) * Make plan cancellation and plan change consistently not prorating (Thanks Yasmine Charif)
  • Fix circular import when ACCOUNT_SIGNUP_FORM_CLASS is defined (Thanks Dustin Farris) * Fix circular import when ACCOUNT_SIGNUP_FORM_CLASS is defined (Thanks Dustin Farris)
  • Add send e-mail receipt action in charges admin panel (Thanks Buddy Lindsay) * Add send e-mail receipt action in charges admin panel (Thanks Buddy Lindsay)
  • Add created field to all ModelAdmins to help with internal auditing (Thanks Kulbir Singh) * Add created field to all ModelAdmins to help with internal auditing (Thanks Kulbir Singh)
dj-stripe - dj-stripe 0.3.3

Published by kavdev almost 4 years ago

  • Increased the extendability of the views by removing as many hard-coded URLs as possible and replacing them with success_url and other attributes/methods.
  • Added single unit purchasing to the cookbook * Added single unit purchasing to the cookbook
dj-stripe - dj-stripe 0.3.4

Published by kavdev almost 4 years ago

  • Clarify documentation for redirects on app_name.
  • If settings.DEBUG is True, then django-debug-toolbar is exempt from redirect to subscription form.
  • Use collections.OrderedDict to ensure that plans are listed in order of price.
  • Added ordereddict library to support Python 2.6 users.
  • Switch from __unicode__ to __str__ methods on models to better support Python 3.
  • Add python_2_unicode_compatible decorator to Models.
  • Check for PY3 so the unicode(self.user) in models.Customer doesn't blow up in Python 3.
  • Proration policy and cancellation at period end passed in settings.
  • Fix correct plan selection on subscription in subscribe_form template.
  • Fix subscription status in account, _subscription_status, and cancel_subscription templates.
dj-stripe - dj-stripe 0.3.5

Published by kavdev almost 4 years ago

This is a bugfix-only version:

  • Fixed djstripe_init_customers management command so it works with custom user models.
dj-stripe - dj-stripe 1.2.4

Published by kavdev almost 4 years ago

This is a bugfix-only version:

  • Allow billing_cycle_anchor argument when creating a subscription (#814)
  • Fixup plan amount null with tier plans (#781)
  • Update Cancel subscription view tests to match backport in f64af57
  • Implement Invoice._manipulate_stripe_object_hook for compatability with API 2018-11-08 (#771)
  • Fix product webhook for type="good" (#724)
  • Add trial_from_plan, trial_period_days args to Customer.subscribe() (#709)
dj-stripe - dj-stripe 1.2.3

Published by kavdev almost 4 years ago

This is a bugfix-only version:

  • Updated Subscription.cancel() for compatibility with Stripe 2018-08-23 (#723)