Releases: mollie/mollie-api-python
Releases · mollie/mollie-api-python
Release 2.1.2
Summary:
- When using an access token, we now automatically set "OAuth/2.0" in the User-Agent.
Release 2.1.1
Summary:
- Added support for configuring API access tokens using
Client.set_access_token(token)
. - Added support for configuring custom User-Agent data using
Client.set_user_agent_component(key, value)
. This can be used by plugin authors to announce their plugin usage to Mollie:client.set_user_agent_component('Oscar', OSCAR_VERSION)
. Recommended usage is to report the framework (f.i.Saleor
) + version you're integrating in, and the Mollie plugin (f.i.SaleorMollie
) + version you're developing.
Deprecation notice: configuring API keys while initializing a new Client
object (client = Client(api_key=...) is deprecated now. In stead, you can use client = Client(); client.set_api_key(...)
. The old method will continue to work for some time but will be removed in the future.
Release 2.1.0
Summary:
- Adjust readme
- Use single file to define versioning of the package
- Remove custom cacert usage, use certifi package (requests default)
- Remove the vendored certificate bundle, and the scripts to regenerate it
- Test with python 3.7, switch to xenial distro because trusty doesn't support python 3.7 + ssl
- The automatic installation of numpy by travis-ci causes a security error. Ignore this
- Add test for revoking a customer mandate
- Use client not _resource
- Add support for listing subscription payments
- Add support for creating an order payment
- Add support for updating an orderline
- Reformat error response tests
- Add release process documentation
Release 2.0.6
Updating cacert.pem
Release 2.0.5
Updating the cacert.pem
Release 1.4.4
Correcting version
Release 1.4.3
Updating cacert.pem
Release 2.0.4
Summary:
- Update README.
- Update requests to 2.20.0 because of a moderate severity vulnerability in versions prior to 2.20.0.
Release 2.0.3
Summary:
- Add possibility to define timeout on the client, defaults to 10 seconds (see #70).
Release 2.0.2
Summary:
- The
authorized
payment status andauthorizedAt
payment property were added to the client (see #69).