Skip to content

Releases: maxmind/GeoIP2-dotnet

2.10.0

19 Jan 22:33
Compare
Choose a tag to compare
  • The IsInEuropeanUnion property was added to MaxMind.GeoIP2.Model.Country
    and MaxMind.GeoIP2.Model.RepresentedCountry. This property is true if the
    country is a member state of the European Union.

2.9.0

27 Oct 22:00
Compare
Choose a tag to compare
  • The following new anonymizer properties were added to
    MaxMind.GeoIP2.Model.Traits for use with GeoIP2 Precision Insights:
    IsAnonymous, IsAnonymousVpn, IsHostingProvider, IsPublicProxy,
    and IsTorExitNode.
  • Deserialization of the registered country when reading a GeoLite2 Country or
    GeoIP2 Country database now works. Previously, it was deserialized to the
    wrong name. Reported by oliverherdener.
  • A netstandard2.0 target was added to eliminate additional dependencies
    required by the netstandard1.4 target. Pull request by Adeel Mujahid.
    GitHub #81.
  • As part of the above work, the separate Mono build files were dropped. As
    of Mono 5.0.0, msbuild is supported.

2.8.0

28 Jul 17:59
Compare
Choose a tag to compare
  • Add support for GeoLite2 ASN.
  • Switch to the updated MSBuild .NET Core build system.
  • Move tests from NUnit to xUnit.net.
  • Upgrade to MaxMind.Db 2.2.0.

2.7.2

19 Dec 22:56
Compare
Choose a tag to compare

Update for .NET Core 1.1

2.7.1: Re-release of 2.7.0 to fix strong name issue. No code changes.

16 Sep 16:24
Compare
Choose a tag to compare

First Stable .NET Core release

01 Aug 14:55
Compare
Choose a tag to compare
  • First non-beta release with .NET Core support.
  • The tests now use the .NET Core NUnit runner. Pull request by Adeel Mujahid.
    GitHub #68.
  • Updated documentation to clarify what the accuracy radius refers to.

2.7.0-beta2

02 Jun 14:47
Compare
Choose a tag to compare
2.7.0-beta2 Pre-release
Pre-release
  • Added handling of additional error codes that the web service may return.
  • Update for .NET Core RC2. Pull request by Adeel Mujahid. GitHub #64.

2.7.0-beta1

02 Jun 14:48
Compare
Choose a tag to compare
2.7.0-beta1 Pre-release
Pre-release
  • .NET Core support. Switched to dotnet/cli for building. Pull request by
    Adeel Mujahid. GitHub #60.
  • Updated documentation to reflect that the accuracy radius is now included
    in City.

2.6.0

15 Apr 21:10
Compare
Choose a tag to compare
  • Added support for the GeoIP2 Enterprise database.
  • Plus all the changes in the beta releases.

2.6.0-beta3

10 Feb 19:24
Compare
Choose a tag to compare
2.6.0-beta3 Pre-release
Pre-release
  • Try-based lookup methods were added to DatabaseReader as an alternative to
    the existing methods. These methods return a boolean indicating whether the
    record was found rather than throwing an exception when it is not found.
    Pull request by Mani Gandham. GitHub #31, #50.