1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253
|
2.006002 2019-06-18
- Added deprecation notice
- Updated documentation of anonymizer attributes - is_anonymous_vpn()
and is_hosting_provider() - to be more descriptive.
2.006001 2018-09-07
- Re-release to correct packaging issue. No code changes.
2.006000 2018-09-07
- Accept license keys longer than 12 characters.
2.005001 2018-04-11
- Rename user_id attribute to account_id while still supporting the old
constructor parameter.
2.005000 2018-01-17
- The is_in_european_union() attribute was added to GeoIP2::Record::Country
and GeoIP2::Record::RepresentedCountry. This attribute is true if the
country is a member state of the European Union.
2.004000 2017-10-27
- The following new anonymizer attributes were added to GeoIP2::Record::Traits
for use with GeoIP2 Precision Insights: is_anonymous(), is_anonymous_vpn(),
is_hosting_provider(), is_public_proxy(), and is_tor_exit_node().
- Documented $reader->enterprise()
- Updated usage of Data::Validate::IP so that we don't do separate IPv4 and
IPv6 checks. This provides a very small performance gain.
- Switched from List::MoreUtils to List::SomeUtils. Fixes #52.
2.003005 2017-05-08
- Added support for the GeoLite2 ASN database.
2.003004 2017-03-23
- Replace use of namespace::autoclean with namespace::clean.
namespace::autoclean appears to be causing occasional load-order compilation
failures when the GeoIP2 Moo classes are inflated into Moose classes.
2.003003 2017-01-04
[ ENHANCEMENTS ]
- The enterprise() method on GeoIP2::Database::Reader now supports GeoIP2
Precision Enterprise databases.
[ OTHER ]
- namespace::autoclean is now used to remove imported functions from class
namespaces.
2.003002 2016-11-21
[ BUGFIXES ]
- Exceptions are now correctly thrown for responses containing JSON but no code
or error keys.
[ OTHER ]
- Updated documentation to clarify what the accuracy radius is and that it
is now included in City.
2.003001 2016-04-25
- In 2.003000, Code::TidyAll::Plugin::SortLines::Naturally was mistakenly
included as a test dependency. It is now a develop dependency. GitHub #35.
- Fixed test failures due to comparison of floating point numbers. GitHub #34.
2.003000 2016-04-20
- Added support for the GeoIP2 Enterprise database.
2.002000 2015-06-29
- Added support for 'average_income' and 'population_density' in the
Insights location record
- Minor optimizations in the type checks
- The is_anonymous_proxy() and is_satellite_provider() attributes on
GeoIP2::Record::Traits have been deprecated. Please use our GeoIP2 Anonymous
IP database to determine whether an IP address is used by an anonymizing
service.
2.001003 2015-04-15
- Relaxed all database checks to accept more databases. This change has no
effect for customers using currently released MaxMind databases.
- Replaced use of say in synopsis code so as to make it clear that this module
works with Perl 5.8. Reported by Kevin Falcone. GitHub #12.
2.001002 2014-12-08
- Forgot to include Changes for 2.001001.
2.001001 2014-12-08
- Fixed a SYNOPSIS error in GeoIP2::Database::Reader. GitHub #11.
2.001000 2014-10-28
- Added support for the GeoIP2 Anonymous IP database. The
GeoIP2::Database::Reader class now has an anonymous_ip() method which
returns a GeoIP2::Model::AnonymousIP object.
2.000001 2014-09-22
- Removed beta notice from documentation.
2.000000 2014-09-22
- First production release.
0.050001 2014-09-17
- Relaxed city() database check to accept more databases. This change has no
effect for customers using currently released MaxMind databases.
0.050000 2014-09-15
[BACKWARDS INCOMPATIBILITIES]
- The deprecated city_isp_org() and omni() methods have been removed. Also,
the insights() on GeoIP2::Database::Reader has been removed.
- When looking up a private IP address in GeoIP2::Database::Reader, a
GeoIP2::Error::Generic exception is now thrown by that class rather than
relying on MaxMind::DB::Reader to throw an exception.
- The GeoIP2::Database::Reader lookup methods (e.g., city(), isp()) now throw
a GeoIP2::Error::Generic if they are used with a database that does not
match the method. In particular, doing a city() lookup on a GeoIP2 Country
database will result in an exception, and vice versa.
[FEATURES]
- A metadata() method has been added to the GeoIP2::Database::Reader class.
This returns a MaxMind::DB::Metadata object with information about the
database.
0.040005 2014-07-22
- No changes. Re-release to fix PAUSE permission issues.
0.040004 2014-07-22
- The web service client API has been updated for the v2.1 release of the web
service. In particular, the city_isp_org() and omni() methods on
GeoIP2::WebService::Client should be considered deprecated. The city()
method now provides all of the data formerly provided by city_isp_org(), and
the omni() method has been replaced by the insights method. Note that the
city_isp_org() and omni() methods may start warning when used in the future.
- Support was added for the GeoIP2 Connection Type, Domain, and ISP databases.
0.040003 2014-05-28
- Explicitly import the B module when we use it. This didn't break on our Perl
but broke elsewhere. Reported by Wes Young. GitHub PR #3.
0.040002 2014-02-03
- Any webservice response with boolean values in the response caused a type
error to be thrown.
0.040001 2014-01-14
- Updated the docs to mention the MaxMind::DB::Reader::XS module.
- Renamed the languages constructor parameter to locales for both the Client
and Reader classes.
0.040000 2013-07-16
- Added the GeoIP2::Database::Reader class. This provides an API for looking
up data in a GeoIP2 database, as opposed to making a web service call.
- Switched the version number scheme to X.YYYZZZ.
- If an IP address is not found, whether for a web service call or in a
downloaded database, the code always throws a
GeoIP2::Error::IPAddressNotFound exception.
0.0302 2013-06-20
- Make the license section of the docs match the LICENSE file in the repo. We
meant to use "same as Perl 5" everywhere.
0.0301 2013-06-10
- The first official beta release of this API.
0.0300 2013-05-23
- Allow IPv6 addresses to be passed to the GeoIP2::WebService::Client class's
methods.
- We now support more languages. The new languages are de, es, fr, and pt-BR.
- Postal code data is now returned as a separate top-level object. We now
provide a GeoIP2::Record::Postal class for this data.
- The REST API returns a record with data about your account. There is a new
GeoIP2::Record::MaxMind class for this data.
- Fixed bug in the City & CityISPOrg classes. Their subdivions() method was
not working.
- Type constraint errors are now thrown as GeoIP2::Type::Error objects.
0.0200 2013-05-13
- Replaced all uses of Webservice with WebService.
0.0100 2013-05-13
- First release upon an unsuspecting world.
|