|
1 | 1 | CHANGELOG |
2 | 2 | ========= |
3 | 3 |
|
| 4 | +3.0.0 |
| 5 | +------------------ |
| 6 | + |
| 7 | +* This library is now a Java module. |
| 8 | +* Removed deprecated `last4Digits` method on `CreditCard.Builder` and |
| 9 | + `getLast4Digits` method on `CreditCard`. Use `lastDigits` and |
| 10 | + `getLastDigits` instead. |
| 11 | +* Removed deprecated `connectTimeout(int)`, `readTimeout(int)`, and |
| 12 | + `proxy(Proxy)` on `WebServiceClient.Builder`. Use |
| 13 | + `connectTimeout(Duration)`, `requestTimeout(Duration)`, and |
| 14 | + `proxy(ProxySelector)` instead. |
| 15 | +* `WebServiceClient` no longer implements `Closeable` and the `Close` |
| 16 | + method has been removed. This method was deprecated when the library |
| 17 | + switched to using `java.net.http.HttpClient`. |
| 18 | + |
4 | 19 | 2.2.0 (2022-10-31) |
5 | 20 | ------------------ |
6 | 21 |
|
@@ -62,9 +77,9 @@ CHANGELOG |
62 | 77 | * `TRUSTLY` |
63 | 78 | * `WINDCAVE` |
64 | 79 | * `com.maxmind.minfraud.request.CreditCard.last4Digits` has been deprecated in |
65 | | - favor of `lastDigits` and will be removed in a future release. `lastDigits` |
66 | | - / `last4Digits` also now supports two digit values in addition to the |
67 | | - previous four digit values. |
| 80 | + favor of `lastDigits` and will be removed in a future release. `lastDigits` |
| 81 | + / `last4Digits` also now supports two digit values in addition to the |
| 82 | + previous four digit values. |
68 | 83 | * Eight digit `com.maxmind.minfraud.request.CreditCard.issuerIdNumber` inputs are |
69 | 84 | now supported in addition to the previously accepted six digit `issuerIdNumber`. |
70 | 85 | In most cases, you should send the last four digits for |
@@ -281,24 +296,24 @@ CHANGELOG |
281 | 296 |
|
282 | 297 | * Added support for custom inputs. These can be set up from your account portal. |
283 | 298 | * Added support for new Device inputs. These are: |
284 | | - * `/device/session_age` |
285 | | - * `/device/session_id` |
| 299 | + * `/device/session_age` |
| 300 | + * `/device/session_id` |
286 | 301 | * Added support for new Email outputs. These are: |
287 | | - * `/email/first_seen` |
| 302 | + * `/email/first_seen` |
288 | 303 | * The following payment processors were added to the `Payment.Processor` enum: |
289 | | - * `AMERICAN_EXPRESS_PAYMENT_GATEWAY` |
290 | | - * `BLUESNAP` |
291 | | - * `COMMDOO` |
292 | | - * `CUROPAYMENTS` |
293 | | - * `EXACT` |
294 | | - * `OCEANPAYMENT` |
295 | | - * `PAYMENTWALL` |
296 | | - * `PAYZA` |
297 | | - * `SECURETRADING` |
298 | | - * `SOLIDTRUST_PAY` |
299 | | - * `VANTIV` |
300 | | - * `VERICHECK` |
301 | | - * `VPOS` |
| 304 | + * `AMERICAN_EXPRESS_PAYMENT_GATEWAY` |
| 305 | + * `BLUESNAP` |
| 306 | + * `COMMDOO` |
| 307 | + * `CUROPAYMENTS` |
| 308 | + * `EXACT` |
| 309 | + * `OCEANPAYMENT` |
| 310 | + * `PAYMENTWALL` |
| 311 | + * `PAYZA` |
| 312 | + * `SECURETRADING` |
| 313 | + * `SOLIDTRUST_PAY` |
| 314 | + * `VANTIV` |
| 315 | + * `VERICHECK` |
| 316 | + * `VPOS` |
302 | 317 |
|
303 | 318 | 1.4.0 (2017-02-22) |
304 | 319 | ------------------ |
@@ -377,11 +392,11 @@ CHANGELOG |
377 | 392 | ------------------ |
378 | 393 |
|
379 | 394 | * Added support for new minFraud Insights outputs. These are: |
380 | | - * `/credit_card/brand` |
381 | | - * `/credit_card/type` |
382 | | - * `/device/id` |
383 | | - * `/email/is_free` |
384 | | - * `/email/is_high_risk` |
| 395 | + * `/credit_card/brand` |
| 396 | + * `/credit_card/type` |
| 397 | + * `/device/id` |
| 398 | + * `/email/is_free` |
| 399 | + * `/email/is_high_risk` |
385 | 400 | * The `Warning.getInput()` method has been replaced by |
386 | 401 | `Warning.getInputPointer()`, which returns a JSON Pointer rather than array. |
387 | 402 | * The `ScoreResponse.getId()` and `InsightsResponse.getId()` methods now |
|
0 commit comments