Mercadopago Sdk Java Versions Save

Mercado Pago's Official Java SDK

2.1.12

9 months ago

What's Changed

New Contributors

Full Changelog: https://github.com/mercadopago/sdk-java/compare/2.1.11...2.1.12

2.1.11

11 months ago

this version adds address and phone information to PaymentPayerRequest for PSE payments.

2.1.10

11 months ago

Update Payment field PaymentThreeDSInfo serialized name from three_dsinfo to three_ds_info.

2.1.9

1 year ago

This version updates maven-javadoc-plugin to 3.5.0

2.1.7

1 year ago

this version adds:

  • nextPaymentDate field to Preapproval model

2.1.6

1 year ago

this version adds:

  • Data models for processing boletos with fees, fines and discount
  • Fields for processing credit card payments with 3DS 2.0

2.1.5

1 year ago

We changed the field AccountId, which is normally used for Pix transactions. If your app makes use of this field in your integration, alter its type from long to BigInteger.

PaymentClient client = new PaymentClient();
Payment p = client.get(12345L);

// Collector accountId changed type from long to BigInteger
BigInteger collectorAccountId = p.getPointOfInteraction().getTransactionData().getBankInfo().getCollector().getAccountId();

// Collector accountId changed type from long to BigInteger
BigInteger payerAccountId = p.getPointOfInteraction().getTransactionData().getBankInfo().getPayer().getAccountId();

2.1.4

1 year ago

Fix way to set proxy.

2.1.3

1 year ago

this version refactors Serializer's Gson type adapter for OffsetDatetime to account for different ISO 8601 datetime formats during deserialization.

1.11.8

1 year ago

Fix issue with exceptions at InsightDataManager class.