Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,21 @@ All notable changes to this project will be documented in this file.
This project follows [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
and [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [3.5.0] - 2026-08-11

### Added
- **Automatic Payments example**: two-step recurring flow ([#386](https://github.com/mercadopago/sdk-java/pull/386))
- **Order model**: reuse `client/common` types in `OrderPayerRequest`, add `country` to `AddressRequest`, restore `currency` field position in `OrderCreateRequest` ([#386](https://github.com/mercadopago/sdk-java/pull/386))

### Fixed
- **Stored credential**: rename `prevTransactionRef` to `previousTransactionReference` ([#386](https://github.com/mercadopago/sdk-java/pull/386))
- Deprecated `Matchers` replaced with `ArgumentMatchers` in unit tests ([#386](https://github.com/mercadopago/sdk-java/pull/386))

### CI
- Standardize CI/CD workflows ([#399](https://github.com/mercadopago/sdk-java/pull/399))
- Add mock-based unit tests ([#399](https://github.com/mercadopago/sdk-java/pull/399))
- Skip lombok-maven-plugin delombok in CI to support Java 17 and 21 ([#399](https://github.com/mercadopago/sdk-java/pull/399))

## [3.4.0] - 2026-08-04

### Added
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ already.
<dependency>
<groupId>com.mercadopago</groupId>
<artifactId>sdk-java</artifactId>
<version>3.4.0</version>
<version>3.5.0</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>com.mercadopago</groupId>
<artifactId>sdk-java</artifactId>
<version>3.4.0</version>
<version>3.5.0</version>
<packaging>jar</packaging>

<name>Mercadopago SDK</name>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/mercadopago/MercadoPagoConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
*/
public class MercadoPagoConfig {

public static final String CURRENT_VERSION = "3.4.0";
public static final String CURRENT_VERSION = "3.5.0";

/** Internal MercadoPago product identifier sent in every API request for analytics. */
public static final String PRODUCT_ID = "BC32A7VTRPP001U8NHJ0";
Expand Down