pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/finance/py-stripe



Module Name:    pkgsrc
Committed By:   adam
Date:           Thu Apr 25 05:06:20 UTC 2019

Modified Files:
        pkgsrc/finance/py-stripe: Makefile PLIST distinfo

Log Message:
py-stripe: updated to 2.27.0

2.27.0:
* Add support for the TaxRate resource and APIs

2.26.0:
* Add support for the TaxId resource and APIs

2.25.0:
* Add support for the CreditNote resource and APIs

2.24.1:
* Fix encoding of nested parameters in multipart requests

2.24.0:
* Add delete class method on deletable API resources
* Add class methods for all custom API requests (e.g. Charge.capture)

2.23.0:
* Add support for the PaymentMethod resource and APIs
* Add support for retrieving a Checkout Session
* Add support for deleting a Terminal Location and Reader

2.22.0:
* Add stripe.util.convert_to_dict method for converting StripeObject instances to regular dicts

2.21.0:
* Add support for subscription schedules

2.20.3:
* Fix client telemetry implementation

2.20.2:
* Fix session initialization for multi-threaded environments

2.20.1:
* Make RequestsClient thread-safe

2.20.0:
* Reuse the default HTTP client by default

2.19.0:
* Rename CheckoutSession to Session and move it under the checkout namespace. This is a breaking change, but we've reached out to affected merchants and all new merchants would use the new approach.

2.18.1:
* Properly serialize individual on Account objects


To generate a diff of this commit:
cvs rdiff -u -r1.15 -r1.16 pkgsrc/finance/py-stripe/Makefile
cvs rdiff -u -r1.6 -r1.7 pkgsrc/finance/py-stripe/PLIST
cvs rdiff -u -r1.13 -r1.14 pkgsrc/finance/py-stripe/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/finance/py-stripe/Makefile
diff -u pkgsrc/finance/py-stripe/Makefile:1.15 pkgsrc/finance/py-stripe/Makefile:1.16
--- pkgsrc/finance/py-stripe/Makefile:1.15      Tue Jan 15 19:14:07 2019
+++ pkgsrc/finance/py-stripe/Makefile   Thu Apr 25 05:06:20 2019
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.15 2019/01/15 19:14:07 adam Exp $
+# $NetBSD: Makefile,v 1.16 2019/04/25 05:06:20 adam Exp $
 
-DISTNAME=      stripe-2.18.0
+DISTNAME=      stripe-2.27.0
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
 CATEGORIES=    finance python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=s/stripe/}

Index: pkgsrc/finance/py-stripe/PLIST
diff -u pkgsrc/finance/py-stripe/PLIST:1.6 pkgsrc/finance/py-stripe/PLIST:1.7
--- pkgsrc/finance/py-stripe/PLIST:1.6  Tue Jan 15 19:14:07 2019
+++ pkgsrc/finance/py-stripe/PLIST      Thu Apr 25 05:06:20 2019
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.6 2019/01/15 19:14:07 adam Exp $
+@comment $NetBSD: PLIST,v 1.7 2019/04/25 05:06:20 adam Exp $
 ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
 ${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
 ${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
@@ -23,6 +23,9 @@ ${PYSITELIB}/stripe/api_resources/abstra
 ${PYSITELIB}/stripe/api_resources/abstract/createable_api_resource.py
 ${PYSITELIB}/stripe/api_resources/abstract/createable_api_resource.pyc
 ${PYSITELIB}/stripe/api_resources/abstract/createable_api_resource.pyo
+${PYSITELIB}/stripe/api_resources/abstract/custom_method.py
+${PYSITELIB}/stripe/api_resources/abstract/custom_method.pyc
+${PYSITELIB}/stripe/api_resources/abstract/custom_method.pyo
 ${PYSITELIB}/stripe/api_resources/abstract/deletable_api_resource.py
 ${PYSITELIB}/stripe/api_resources/abstract/deletable_api_resource.pyc
 ${PYSITELIB}/stripe/api_resources/abstract/deletable_api_resource.pyo
@@ -80,15 +83,21 @@ ${PYSITELIB}/stripe/api_resources/card.p
 ${PYSITELIB}/stripe/api_resources/charge.py
 ${PYSITELIB}/stripe/api_resources/charge.pyc
 ${PYSITELIB}/stripe/api_resources/charge.pyo
-${PYSITELIB}/stripe/api_resources/checkout_session.py
-${PYSITELIB}/stripe/api_resources/checkout_session.pyc
-${PYSITELIB}/stripe/api_resources/checkout_session.pyo
+${PYSITELIB}/stripe/api_resources/checkout/__init__.py
+${PYSITELIB}/stripe/api_resources/checkout/__init__.pyc
+${PYSITELIB}/stripe/api_resources/checkout/__init__.pyo
+${PYSITELIB}/stripe/api_resources/checkout/session.py
+${PYSITELIB}/stripe/api_resources/checkout/session.pyc
+${PYSITELIB}/stripe/api_resources/checkout/session.pyo
 ${PYSITELIB}/stripe/api_resources/country_spec.py
 ${PYSITELIB}/stripe/api_resources/country_spec.pyc
 ${PYSITELIB}/stripe/api_resources/country_spec.pyo
 ${PYSITELIB}/stripe/api_resources/coupon.py
 ${PYSITELIB}/stripe/api_resources/coupon.pyc
 ${PYSITELIB}/stripe/api_resources/coupon.pyo
+${PYSITELIB}/stripe/api_resources/credit_note.py
+${PYSITELIB}/stripe/api_resources/credit_note.pyc
+${PYSITELIB}/stripe/api_resources/credit_note.pyo
 ${PYSITELIB}/stripe/api_resources/customer.py
 ${PYSITELIB}/stripe/api_resources/customer.pyc
 ${PYSITELIB}/stripe/api_resources/customer.pyo
@@ -158,6 +167,9 @@ ${PYSITELIB}/stripe/api_resources/order_
 ${PYSITELIB}/stripe/api_resources/payment_intent.py
 ${PYSITELIB}/stripe/api_resources/payment_intent.pyc
 ${PYSITELIB}/stripe/api_resources/payment_intent.pyo
+${PYSITELIB}/stripe/api_resources/payment_method.py
+${PYSITELIB}/stripe/api_resources/payment_method.pyc
+${PYSITELIB}/stripe/api_resources/payment_method.pyo
 ${PYSITELIB}/stripe/api_resources/payout.py
 ${PYSITELIB}/stripe/api_resources/payout.pyc
 ${PYSITELIB}/stripe/api_resources/payout.pyo
@@ -224,6 +236,18 @@ ${PYSITELIB}/stripe/api_resources/subscr
 ${PYSITELIB}/stripe/api_resources/subscription_item.py
 ${PYSITELIB}/stripe/api_resources/subscription_item.pyc
 ${PYSITELIB}/stripe/api_resources/subscription_item.pyo
+${PYSITELIB}/stripe/api_resources/subscription_schedule.py
+${PYSITELIB}/stripe/api_resources/subscription_schedule.pyc
+${PYSITELIB}/stripe/api_resources/subscription_schedule.pyo
+${PYSITELIB}/stripe/api_resources/subscription_schedule_revision.py
+${PYSITELIB}/stripe/api_resources/subscription_schedule_revision.pyc
+${PYSITELIB}/stripe/api_resources/subscription_schedule_revision.pyo
+${PYSITELIB}/stripe/api_resources/tax_id.py
+${PYSITELIB}/stripe/api_resources/tax_id.pyc
+${PYSITELIB}/stripe/api_resources/tax_id.pyo
+${PYSITELIB}/stripe/api_resources/tax_rate.py
+${PYSITELIB}/stripe/api_resources/tax_rate.pyc
+${PYSITELIB}/stripe/api_resources/tax_rate.pyo
 ${PYSITELIB}/stripe/api_resources/terminal/__init__.py
 ${PYSITELIB}/stripe/api_resources/terminal/__init__.pyc
 ${PYSITELIB}/stripe/api_resources/terminal/__init__.pyo

Index: pkgsrc/finance/py-stripe/distinfo
diff -u pkgsrc/finance/py-stripe/distinfo:1.13 pkgsrc/finance/py-stripe/distinfo:1.14
--- pkgsrc/finance/py-stripe/distinfo:1.13      Tue Jan 15 19:14:07 2019
+++ pkgsrc/finance/py-stripe/distinfo   Thu Apr 25 05:06:20 2019
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.13 2019/01/15 19:14:07 adam Exp $
+$NetBSD: distinfo,v 1.14 2019/04/25 05:06:20 adam Exp $
 
-SHA1 (stripe-2.18.0.tar.gz) = 8d28a9bfced1cc429c822caef62ff23b55b1bd4c
-RMD160 (stripe-2.18.0.tar.gz) = 7f52a395f3b3df65154a80d7b1e7902ff01ec14f
-SHA512 (stripe-2.18.0.tar.gz) = 0cb5227e563e1095c49d9290a62232393907bfa7ca68540ed2231e67225a24583b337badb258f4984262ee57f0c7520f300df9e83fa4ae9452c6407fe1ef28ee
-Size (stripe-2.18.0.tar.gz) = 196693 bytes
+SHA1 (stripe-2.27.0.tar.gz) = 40e038e76aea6a348cdabb3607684d0070dd3a53
+RMD160 (stripe-2.27.0.tar.gz) = c2b11a81c1261817f34d60c14c1ef3b3446b03d6
+SHA512 (stripe-2.27.0.tar.gz) = 10240b447982ceb359899861df238b25f8d6b4231d29b7787b6e266e0813984e660464cc487bd2d1260c3ab10b0378ce20d8fa768e611f8e9275172d4b6b25fe
+Size (stripe-2.27.0.tar.gz) = 204019 bytes



Home | Main Index | Thread Index | Old Index