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
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
CHANGELOG
=========

4.3.0
4.3.0 (2026-05-12)
------------------

* Added `FAT_ZEBRA` to the `Payment.Processor` enum.
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ To do this, add the dependency to your pom.xml:
<dependency>
<groupId>com.maxmind.minfraud</groupId>
<artifactId>minfraud</artifactId>
<version>4.2.0</version>
<version>4.3.0</version>
</dependency>
```

Expand All @@ -29,7 +29,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.maxmind.minfraud:minfraud:4.2.0'
implementation 'com.maxmind.minfraud:minfraud:4.3.0'
}
```

Expand Down
2 changes: 1 addition & 1 deletion mise.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# @generated - this file is auto-generated by `mise lock` https://mise.jdx.dev/dev-tools/mise-lock.html

[[tools.java]]
version = "26.0.0"
version = "26.0.1"
backend = "core:java"

[[tools.maven]]
Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>com.maxmind.minfraud</groupId>
<artifactId>minfraud</artifactId>
<version>4.2.0</version>
<version>4.3.0</version>
<name>MaxMind minFraud API</name>
<description>MaxMind minFraud Score, Insights, Factors and Report Transaction API</description>
<url>http://dev.maxmind.com/minfraud</url>
Expand Down Expand Up @@ -73,7 +73,7 @@
<dependency>
<groupId>com.maxmind.geoip2</groupId>
<artifactId>geoip2</artifactId>
<version>5.0.2</version>
<version>5.1.0</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
Expand Down Expand Up @@ -263,7 +263,7 @@
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<!-- Baseline version for API compatibility checking. Update after each release. -->
<japicmp.baselineVersion>4.2.0</japicmp.baselineVersion>
<japicmp.baselineVersion>4.3.0</japicmp.baselineVersion>
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The japicmp.baselineVersion should remain at 4.2.0 for this release. This property defines the baseline version used to check for binary compatibility; setting it to the version currently being released (4.3.0) will compare the build against itself, effectively bypassing the check. Additionally, as noted in the comment on line 265, this should be updated after the release. Updating it now may also cause build failures if the CI environment cannot resolve the yet-to-be-released version 4.3.0 from the repositories.

Suggested change
<japicmp.baselineVersion>4.3.0</japicmp.baselineVersion>
<japicmp.baselineVersion>4.2.0</japicmp.baselineVersion>

</properties>

<profiles>
Expand Down
Loading