From 09ba00a40a35181f2a131ca6186616ca1e693435 Mon Sep 17 00:00:00 2001 From: Gregory Oschwald Date: Fri, 29 May 2026 20:39:28 +0000 Subject: [PATCH 1/3] Use 'GeoIP'/'GeoLite' branding in documentation and prose MaxMind no longer ships the legacy products, so refer to the products as 'GeoIP' and 'GeoLite' rather than 'GeoIP2'/'GeoLite2' in prose. Technical identifiers (packages, class names, filenames, edition IDs, hostnames, URLs) are unchanged. Co-Authored-By: Claude Opus 4.8 (1M context) --- src/MinFraud/Model/IpAddress.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/MinFraud/Model/IpAddress.php b/src/MinFraud/Model/IpAddress.php index 3c67168..c2b8e40 100644 --- a/src/MinFraud/Model/IpAddress.php +++ b/src/MinFraud/Model/IpAddress.php @@ -15,7 +15,7 @@ use GeoIp2\Record\Traits; /** - * Model containing GeoIP2 data and the risk for the IP address. + * Model containing GeoIP data and the risk for the IP address. */ class IpAddress implements \JsonSerializable { From 00409b1ee94ae150335e8b3d0559135f14bb8ea4 Mon Sep 17 00:00:00 2001 From: Gregory Oschwald Date: Fri, 29 May 2026 20:45:31 +0000 Subject: [PATCH 2/3] Update remaining GeoIP2 product prose to GeoIP Co-Authored-By: Claude Opus 4.8 (1M context) --- dev-bin/release.sh | 4 ++-- src/MinFraud/Model/Insights.php | 2 +- tests/MaxMind/Test/MinFraudTest.php | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/dev-bin/release.sh b/dev-bin/release.sh index 2620cc7..691aeac 100755 --- a/dev-bin/release.sh +++ b/dev-bin/release.sh @@ -129,10 +129,10 @@ else fi if [ ! -d .geoip2 ]; then - echo "Cloning GeoIP2 for docs" + echo "Cloning GeoIP for docs" git clone git@github.com:maxmind/GeoIP2-php.git .geoip2 else - echo "Updating GeoIP2 for docs" + echo "Updating GeoIP for docs" pushd .geoip2 git pull popd diff --git a/src/MinFraud/Model/Insights.php b/src/MinFraud/Model/Insights.php index e48bf56..cd5214f 100644 --- a/src/MinFraud/Model/Insights.php +++ b/src/MinFraud/Model/Insights.php @@ -60,7 +60,7 @@ class Insights implements \JsonSerializable public readonly string $id; /** - * @var IpAddress an object containing GeoIP2 and minFraud Insights + * @var IpAddress an object containing GeoIP and minFraud Insights * information about the geolocated IP address */ public readonly IpAddress $ipAddress; diff --git a/tests/MaxMind/Test/MinFraudTest.php b/tests/MaxMind/Test/MinFraudTest.php index 8b63164..ee9eeef 100644 --- a/tests/MaxMind/Test/MinFraudTest.php +++ b/tests/MaxMind/Test/MinFraudTest.php @@ -207,7 +207,7 @@ public function testLocalesOption(): void $this->assertSame( 'Royaume-Uni', $insights->ipAddress->country->name, - 'locales setting made it to the GeoIP2 models' + 'locales setting made it to the GeoIP models' ); } From 8be593bbfa8aaedee66e8d82a0456d15fb2102ef Mon Sep 17 00:00:00 2001 From: Gregory Oschwald Date: Sat, 30 May 2026 16:14:38 +0000 Subject: [PATCH 3/3] Refer to GeoIP Location information in docblock Update the GeoIp2Location docblock prose to say GeoIP; the class name is unchanged. Co-Authored-By: Claude Opus 4.8 (1M context) --- src/MinFraud/Model/GeoIp2Location.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/MinFraud/Model/GeoIp2Location.php b/src/MinFraud/Model/GeoIp2Location.php index 17eedad..1ade4ac 100644 --- a/src/MinFraud/Model/GeoIp2Location.php +++ b/src/MinFraud/Model/GeoIp2Location.php @@ -7,7 +7,7 @@ use GeoIp2\Record\Location; /** - * Model of the GeoIP2 Location information, including the local time. + * Model of the GeoIP Location information, including the local time. */ class GeoIp2Location extends Location {