Skip to content

Releases: maxmind/minfraud-api-python

3.1.0

23 May 22:22
18c3749
Compare
Choose a tag to compare
  • Added support for the /billing_phone/matches_postal and
    /shipping_phone/matches_postal outputs. These are available as the
    matches_postal attribute on minfraud.model.Phone.
  • Added cryptomus to the /payment/processor validation.

3.0.0

10 Feb 17:44
93fc2c8
Compare
Choose a tag to compare
  • BREAKING CHANGE: The minfraud.model.* classes have been refactored to
    simplify them and make them more flexible. They are no longer subclass
    NamedTuple and are now standard Python classes. This also means the
    classes are no longer immutable. For most users, these differences should
    not impact their integration.
  • BREAKING CHANGE: Model attributes that were formerly tuples are now lists.
  • BREAKING CHANGE: The deprecated is_high_risk attribute on
    resp.ip_address.country has been removed.
  • IMPORTANT: Python 3.9 or greater is required. If you are using an older
    version, please use an earlier release.
  • Added to_dict methods to the model classes. These return a dict version
    of the object that is suitable for serialization. It recursively calls
    to_dict or the equivalent on all objects contained within the object.
  • 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.
  • Added epayco to the /payment/processor validation.

2.12.0b1

06 Sep 17:57
2432c6d
Compare
Choose a tag to compare
2.12.0b1 Pre-release
Pre-release
  • setuptools was incorrectly listed as a runtime dependency. This has
    been removed.
  • Added support for the new risk reasons outputs in minFraud Factors. The risk
    reasons output codes and reasons are currently in beta and are subject to
    change. We recommend that you use these beta outputs with caution and avoid
    relying on them for critical applications.

2.11.0

08 Jul 21:51
e9f0577
Compare
Choose a tag to compare
  • Updated the validation for the Report Transactions API to make the
    ip_address parameter optional. Now the tag and at least one of the
    following parameters must be supplied: ip_address, maxmind_id,
    minfraud_id, transaction_id.
  • Added billing_phone and shipping_phone properties to the minFraud
    Insights and Factors response models. These contain objects with information
    about the respective phone numbers. Please see our developer site <https://dev.maxmind.com/minfraud/api-documentation/responses/>_ for
    more information.
  • Added payconex to the /payment/processor validation.

2.10.0

16 Apr 22:00
e9fa006
Compare
Choose a tag to compare
  • Added the following new values to the /payment/processor validation:

    • pxp_financial
    • trustpay
  • Equivalent domain names are now normalized when hash_email is used.
    For example, googlemail.com will become gmail.com.

  • Periods are now removed from gmail.com email address local parts when
    hash_email is used. For example, [email protected] will become
    [email protected].

  • Fastmail alias subdomain email addresses are now normalized when
    hash_email is used. For example, [email protected] will
    become [email protected].

  • Additional yahoo.com email addresses now have aliases removed from
    their local part when hash_email is used. For example,
    [email protected] will become [email protected] for additional
    yahoo.com domains.

  • Duplicate .com s are now removed from email domain names when
    hash_email is used. For example, example.com.com will become
    example.com.

  • Certain TLD typos are now normalized when hash_email is used. For
    example, example.comcom will become example.com.

  • Additional gmail.com domain names with leading digits are now
    normalized when hash_email is used. For example, 100gmail.com will
    become gmail.com.

  • Additional gmail.com typos are now normalized when hash_email is
    used. For example, gmali.com will become gmail.com.

  • When hash_email is used, the local part of an email address is now
    normalized to NFC.

2.9.0

05 Dec 22:41
31aeaaa
Compare
Choose a tag to compare
  • IMPORTANT: Python 3.8 or greater is required. If you are using an older
    version, please use an earlier release.
  • Updated geoip2 to version that includes the is_anycast attribute on
    geoip2.record.Traits. This property is True if the IP address
    belongs to an anycast network <https://en.wikipedia.org/wiki/Anycast>_.
    This is available in minFraud Insights and Factors.

2.8.0

09 May 20:39
cfb3970
Compare
Choose a tag to compare
  • IMPORTANT: Python 3.7 or greater is required. If you are using an older
    version, please use an earlier release.
  • Added the following new values to the /payment/processor validation:
    • google_pay
    • placetopay
    • shopify_payments

2.7.2

29 Mar 14:54
9cab064
Compare
Choose a tag to compare
  • Updated code to correctly handle None Content-Type from minFraud
    web service. This should never happen, but if it does, the correct
    exception will now be thrown.

2.7.1

29 Mar 14:40
9ee0924
Compare
Choose a tag to compare
  • Fixed KeyError when using the report() method. Reported by siang.
    GitHub #99.

2.7.0

28 Mar 19:27
92629ce
Compare
Choose a tag to compare
  • Added the input /credit_card/country. This is the country where the
    issuer of the card is located. This may be passed instead of
    /credit_card/issuer_id_number if you do not wish to pass partial
    account numbers or if your payment processor does not provide them.