Skip to content

Releases: mollie/mollie-api-ruby

Release 4.4.1

16 Sep 07:22
Compare
Choose a tag to compare

Release 4.4.0

11 Jul 11:22
Compare
Choose a tag to compare
  • Mandate: add mode attribute
  • Organization: add _links helper method
  • Organization: add locale attribute
  • OrderLine: add metadata attribute
  • Method: add minimumAmount and maximumAmount attributes

Release 4.3.1

08 Jun 17:05
Compare
Choose a tag to compare

It's now possible to pass additional request parameters when creating a payment. This allows you to create a payment with a QR code embedded in the API response.

Example:

payment_params = {
    amount: { value: '10.00', currency: 'EUR' },
    method: 'ideal',
    description: 'My first API payment',
    redirect_url: 'https://webshop.example.org/order/12345/',
    webhook_url: 'https://webshop.example.org/mollie-webhook/',
    api_key: 'live_<api_key>'
}

payment = Mollie::Payment.create(
    payment_params,
    include: 'details.qrCode'
)

For more information, check out our documentation.

Release 4.3.0

20 May 09:29
Compare
Choose a tag to compare
  • Add Apple Pay payment method.
  • Add application fee support to Subscriptions (#113)
  • Add helper methods to access links in Subscription resource (#114)

Release 4.2.0

01 May 07:46
0eb5bde
Compare
Choose a tag to compare
  • Remove Bitcoin as a payment method.

Release 3.1.6

01 May 07:47
Compare
Choose a tag to compare
  • Update cacert.pem

Release 3.1.5

10 Dec 07:54
Compare
Choose a tag to compare
  • Backported change which updates cacert.pem (#100)

Release 4.1.4

04 Dec 13:36
Compare
Choose a tag to compare
  • Updated cacert.pem (#100)

Release 4.1.3

16 Nov 13:36
Compare
Choose a tag to compare

This patch exposes the following constants within the Mollie::Method class:

  • Mollie::Method::KLARNASLICEIT
  • Mollie::Method::KLARNAPAYLATER

Release 4.1.2

31 Oct 08:40
Compare
Choose a tag to compare

New attributes/methods exposed on Mollie::Customer::Subscription:

  • times_remaining
  • next_payment_date=(next_payment_date)
  • mandate_id

New attributes methods exposed on Mollie::Payment:

  • refunded?
  • authorized_at=(authorized_at)
  • amount_captured
  • captures(options = {})