Skip to content

Releases: mollie/mollie-api-python

Release 2.4.0

07 Jul 07:35
Compare
Choose a tag to compare

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

07 Feb 10:01
Compare
Choose a tag to compare

Summary:

  • Fixed a minor issue in error handling while perform requests to the Mollie API (#153).

Release 2.3.0

23 Dec 13:43
282e961
Compare
Choose a tag to compare

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. Use client.set_api_key() or client.set_access_token() instead.
  • Support for Method.pricing is added.

Release 1.4.5

02 Dec 15:02
Compare
Choose a tag to compare

Summary:

  • Use certifi package (https://pypi.org/project/certifi/), replacing the included cacert.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

13 Nov 09:18
Compare
Choose a tag to compare

Summary:

  • Support for new endpoint: listing all subscriptions.
  • Add missing test for already existing endpoint: update payment.

Release 2.2.3

28 Aug 07:24
Compare
Choose a tag to compare

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

26 Jul 07:49
Compare
Choose a tag to compare

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

13 Jun 12:41
Compare
Choose a tag to compare

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

30 Apr 07:45
Compare
Choose a tag to compare

Summary:

  • Drop pipenv from our build mechanics.
  • Remove bitcoin support.

Release 2.1.2

05 Apr 14:32
Compare
Choose a tag to compare

Summary:

  • When using an access token, we now automatically set "OAuth/2.0" in the User-Agent.