Releases: maxmind/GeoIP2-php
Releases · maxmind/GeoIP2-php
2.7.0
- The following new anonymizer properties were added to
GeoIp2\Record\Traits
for use with GeoIP2 Precision Insights: isAnonymous
, isAnonymousVpn
,
isHostingProvider
, isPublicProxy
, and isTorExitNode
.
2.6.0
- Code clean-up and tidying.
- Set minimum required PHP version to 5.4 in
composer.json
. Previously,
5.3 would work but was not tested. Now 5.4 is hard minimum version.
2.5.0
- Added support for GeoLite2 ASN database.
2.4.5
- Additional error checking on the data returned from
MaxMind\Db\Reader
was added to help detect corrupt databases. GitHub #83.
2.4.4: Fix isset on mostSpecificSubdivision
isset()
on mostSpecificSubdivision
attribute now returns the
correct value. Reported by Juan Francisco Giordana. GitHub #81.
2.4.3: Fix broken isset on name attribute
isset()
on name
attribute now returns the correct value. Fixes #79.
2.4.2
- Updated documentation to clarify what the accuracy radius refers to.
- Upgraded
maxmind/web-service-common
to 0.3.0. This version uses
composer/ca-bundle
rather than our own CA bundle. Fixes #75.
- Improved PHP documentation generation.
2.4.1: Proxy Support. Improved Type Annocations.
- Corrected type annotations in documentation. GitHub #66.
- Updated documentation to reflect that the accuracy radius is now included
in City.
- Upgraded web service client, which supports setting a proxy. GitHub #59.
2.4.0: Support for the GeoIP2 Enterprise database
Added support for the GeoIP2 Enterprise database.
2.3.3
- Corrected case on
JsonSerializable
interface. Reported by Axel Etcheverry.
Fixes #56.