Releases: mollie/mollie-api-python
Releases · mollie/mollie-api-python
Release 2.4.1
Summary:
- Add missing metadata properties as reported by @kevinvalk in #172
- Add deprecation warning for Settlement
invoiceId
- Configure test runs for
python 3.9
andpypy 3
Release 2.4.0
Summary:
- Support for payment method
mealvoucher
. - Support for retrieving dashboard url from Organization
- Added
invoiceId
for each monthly period in Settlements test response - Fix typo in script name in examples
- Fix currency is displayed twice in examples, display value instead
Release 2.3.1
Summary:
- Fixed a minor issue in error handling while perform requests to the Mollie API (#153).
Release 2.3.0
Summary:
- Support for Python 2.7 is removed. Python 2.7 will be EOL on 2020-01-01.
- Support for specifying an API key through the constructor (
client = Client(api_key=...
) is removed. Useclient.set_api_key()
orclient.set_access_token()
instead. - Support for
Method.pricing
is added.
Release 1.4.5
Summary:
- Use
certifi
package (https://pypi.org/project/certifi/), replacing the includedcacert.pem
bundle to verify the SSL certificates of the API we're talking to. - Removed python2.7 from tested versions, it will be EOL shortly. Note that we didn't actually change any code for this, we just stopped testing for python 2.7 compatibility. Since no new features will be added to this version of the client, there's a fair change that python2.7 will still be a usable platform for this client in the longer term.
- Added python3.8 to tested versions.
Note: this is the client for the legacy V1 API.
Release 2.2.4
Summary:
- Support for new endpoint: listing all subscriptions.
- Add missing test for already existing endpoint: update payment.
Release 2.2.3
Summary:
- Support for new payment method:
mybank
. - Support for
metadata
in refunds - Support for retrieving settlements by their bank reference.
- Some Python2/Python3 cleanups.
NB release 2.2.2 was incorrectly tagged, don't use it.
Release 2.2.1
Summary:
- Support added for retrieving minimum and maximum amounts for payment methods.
- Support was added for listing all payment methods that mollie has available. The default
.list()
method returns all methods enabled in your Mollie profile, but.all()
will give you everything including inactive and pending methods.
Release 2.2.0
Summary:
- Support is added for handling OAuth2 inside the client. The README explains how to use it.
- All API endpoints that need OAuth2 are added: Permissions, Organizations, Profiles, Onboarding, Settlements and Invoices.
- Przelewy24 is added as a payment method.
- Specifying an API key through the constructor (
client = Client(api_key=....
) is deprecated. It will be removed completely in 2.3.0.
Release 2.1.3
Summary:
- Drop
pipenv
from our build mechanics. - Remove bitcoin support.