Skip to content

Commit 4e51a36

Browse files
authored
Merge pull request #203 from maxmind/greg/eng-1675
Release 3.3.0
2 parents 49f369f + 97ddce2 commit 4e51a36

4 files changed

Lines changed: 7 additions & 11 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,13 @@
11
CHANGELOG
22
=========
33

4-
3.4.0
4+
3.3.0 (2025-05-23)
55
------------------
66

77
* Added support for the `/billing_phone/matches_postal` and
88
`/shipping_phone/matches_postal` outputs. These are available as the
99
`matchesPostal` property on `MaxMind\MinFraud\Model\Phone`.
1010
* Added `cryptomus` to the payment processor validation.
11-
12-
3.3.0
13-
------------------
14-
1511
* `\MaxMind\MinFraud` now implements `JsonSerializable`. This returns an
1612
array containing the contents of the request in a sub-array as well as
1713
the value of the `locales` and `hashEmail` options. Pull request by Noé

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ You should now have the file `composer.phar` in your project directory.
2424
Run in your project root:
2525

2626
```
27-
php composer.phar require maxmind/minfraud:^3.2.0
27+
php composer.phar require maxmind/minfraud:^3.3.0
2828
```
2929

3030
You should now have the files `composer.json` and `composer.lock` as well as

dev-bin/release.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,10 @@ php composer.phar update --no-dev
4747
perl -pi -e "s/(?<=const VERSION = ').+?(?=';)/$tag/g" src/MinFraud/ServiceClient.php
4848
perl -pi -e "s{(?<=php composer\.phar require maxmind\/minfraud:).+}{^$version}g" README.md
4949

50-
box_phar_hash='8d12a7d69a5003a80bd603ea95a8f3dcea30b9a2ad84cd7cb15b8193929def9e box.phar'
50+
box_phar_hash='aa0966319f709e74bf2bf1d58ddb987903ae4f6d0a9d335ec2261813c189f7fc box.phar'
5151

5252
if ! echo "$box_phar_hash" | sha256sum -c; then
53-
wget -O box.phar "https://github.com/box-project/box/releases/download/4.6.1/box.phar"
53+
wget -O box.phar "https://github.com/box-project/box/releases/download/4.6.6/box.phar"
5454
fi
5555

5656
echo "$box_phar_hash" | sha256sum -c
@@ -95,10 +95,10 @@ if [ -n "$(git status --porcelain)" ]; then
9595
fi
9696

9797
# Using Composer is possible, but they don't recommend it.
98-
phpdocumentor_phar_hash='68e860b191799efdd7582b2b5fb738ea4dd743bb0476257608f0b22155d155f3 phpDocumentor.phar'
98+
phpdocumentor_phar_hash='5223cc8455d53c51fcd5a3d4ac7817acdbec3f3e325981688d345f2468097230 phpDocumentor.phar'
9999

100100
if ! echo "$phpdocumentor_phar_hash" | sha256sum -c; then
101-
wget -O phpDocumentor.phar https://github.com/phpDocumentor/phpDocumentor/releases/download/v3.6.0/phpDocumentor.phar
101+
wget -O phpDocumentor.phar https://github.com/phpDocumentor/phpDocumentor/releases/download/v3.7.1/phpDocumentor.phar
102102
fi
103103

104104
echo "$phpdocumentor_phar_hash" | sha256sum -c

src/MinFraud/ServiceClient.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
abstract class ServiceClient
1111
{
12-
public const VERSION = 'v3.2.0';
12+
public const VERSION = 'v3.3.0';
1313

1414
/**
1515
* @var Client

0 commit comments

Comments
 (0)