Releases: maxmind/minfraud-api-python
Releases · maxmind/minfraud-api-python
2.6.0
- Upgraded
geoip2
to 4.5.0. This adds mobile country code (MCC) and mobile
network code (MNC) to minFraud Insights and Factors responses. These are
available atresponse.ip_address.traits.mobile_country_code
and
response.ip_address.traits.mobile_network_code
. We expect this data to be
available by late January, 2022. - Added the following new values to the
/payment/processor
validation:boacompra
boku
coregateway
fiserv
neopay
neosurf
openbucks
paysera
payvision
trustly
windcave
- The
/credit_card/last_4_digits
input has been deprecated in favor of
/credit_card/last_digits
and will be removed in a future release.
last_digits
/last_4_digits
also now supports two digit values in
addition to the previous four digit values. - Eight digit
/credit_card/issuer_id_number
inputs are now supported in
addition to the previously accepted six digitissuer_id_number
. In most
cases, you should send the last four digits forlast_digits
. If you send
anissuer_id_number
that contains an eight digit IIN, and if the credit
card brand is not one of the following, you should send the last two digits
forlast_digits
:Discover
JCB
Mastercard
UnionPay
Visa
2.5.0
2.4.0
- Added the following new values to the
/payment/processor
validation:cardknox
creditguard
credorax
datacap
dlocal
onpay
safecharge
- Added
rule_label
to minFraud output/disposition
. - Added
was_3d_secure_successful
to/credit_card
validation
2.3.1
2.3.0
- You may now set a proxy to use when making web service requests by passing
theproxy
parameter to theAsyncClient
orClient
constructor. - Added
apple_pay
andaps_payments
to the/payment/processor
validation. - You may now enable client-side email hashing by setting the keyword argument
hash_email
toTrue
in the web-service client request methods (i.e.,
score
,insights
,factors
). When set, this normalizes the email
address and sends an MD5 hash of it to the web service rather than the
plain-text address. Note that the email domain will still be sent in plain
text. - Added support for the IP address risk reasons in the minFraud Insights and
Factors responses. This is available at.ip_address.risk_reasons
. It is
an array ofIPRiskReason
objects.
2.2.0
2.1.0
- Added
response.ip_address.traits.is_residential_proxy
to the
minFraud Insights and Factors models. This indicates whether the IP
address is on a suspected anonymizing network and belongs to a
residential ISP. HTTPError
now provides the decoded response content in the
decoded_content
attribute.