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: 2 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ History
3.3.0
++++++++++++++++++

* Added ``banquest``, ``summit_payments``, and ``yaadpay`` to the
``/payment/processor`` validation.
* The version is now retrieved from package metadata at runtime using
``importlib.metadata``. This reduces the chance of version inconsistencies
during releases.
Expand Down
3 changes: 3 additions & 0 deletions src/minfraud/validation.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,7 @@ def _hostname(hostname: str) -> str:
"aps_payments",
"authorizenet",
"balanced",
"banquest",
"beanstream",
"bluepay",
"bluesnap",
Expand Down Expand Up @@ -257,6 +258,7 @@ def _hostname(hostname: str) -> str:
"solidtrust_pay",
"sps_decidir",
"stripe",
"summit_payments",
"synapsefi",
"systempay",
"telerecargas",
Expand All @@ -276,6 +278,7 @@ def _hostname(hostname: str) -> str:
"windcave",
"wirecard",
"worldpay",
"yaadpay",
],
)

Expand Down
Loading