Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Deprecate Factors subscores #419

Merged
merged 1 commit into from
Oct 24, 2024
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
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
CHANGELOG
=========

3.6.0
------------------

* The minFraud Factors subscores have been deprecated. They will be removed
in March 2025. Please see [our release notes](https://dev.maxmind.com/minfraud/release-notes/2024/#deprecation-of-risk-factor-scoressubscores)
for more information.

3.6.0-beta.1 (2024-09-06)
-------------------------

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,10 @@ public List<RiskScoreReason> getRiskScoreReasons() {

/**
* @return The {@code Subscores} model object containing the risk factor scores.
*
* @deprecated replaced by {@link getRiskScoreReasons}.
*/
@Deprecated
@JsonProperty("subscores")
public Subscores getSubscores() {
return subscores;
Expand Down
3 changes: 3 additions & 0 deletions src/main/java/com/maxmind/minfraud/response/Subscores.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@
/**
* This class contains scores for many of the risk factors that are used to calculate the overall
* risk score.
*
* @deprecated replaced by {@link RiskScoreReason}.
*/
@Deprecated
public final class Subscores {
private final Double avsResult;
private final Double billingAddress;
Expand Down
Loading