Releases: maxmind/GeoIP2-java
Releases · maxmind/GeoIP2-java
2.13.1
2.13.0
- IMPORTANT: Java 8 is now required. If you need Java 7 support, please
continue using 2.12.0. DatabaseReadernow provides the methods that return anOptionalrather
than throwing an exception when the record is not found in the database. These
methods are prefixed with "try". Closes #28. Pull request by Luke Butters.
GitHub #147.getNetwork()methods have been added to the various response models. These
return acom.maxmind.db.Networkobject representing the largest network
where all the fields besides the IP address are the same.- Updated documentation of anonymizer methods
isAnonymousVpn()and
isHostingProvider()to be more descriptive. - The
DatabaseReadermethodscity()andcountry()can now be called on
the Enterprise database and thecountry()method can be called on City
databases. Request by Gergely Boromissza. GitHub #132. - New
getStaticIpScore()andgetUserCount()methods were added to
com.maxmind.geoip2.record.Traitsfor use with GeoIP2 Precision Insights.
They represent a measure of how static or dynamic an IP address is, and an
estimate of the number of users sharing a given address or network,
respectively.
2.12.0
2.11.0
2.10.0
2.9.0
2.8.1
2.8.0: Remove Google HTTP Client Dep. Require Java 7.
- All changes included in 2.8.0-rc1.
- Updated documentation to clarify what the accuracy radius refers to.
2.8.0-rc1: Use Apache HttpClient directly
- IMPORTANT: Java 7 is now required. If you need Java 6 support, please
continue using 2.7.0 or earlier. - This library no longer uses Google HTTP Client. It now directly uses
Apache HttpClient. Closes #40, #66. WebServiceClientnow implementsCloseable. A pool of connections will be
kept alive to be used across requests. To ensure all connections are closed
when the object goes out of scope, callclose()or use the
try-with-resource statement as appropriate.- Setting of a proxy for the
WebServiceClientis now supported by the
proxy(Proxy)builder method. - Updated documentation to reflect that the accuracy radius is now included
in City. - Updated dependencies.
2.7.0: GeoIP2 Enterprise Support
- Added support for the GeoIP2 Enterprise database.