Skip to content

0.8.0

Choose a tag to compare

@dankang dankang released this 12 Oct 08:42
· 77 commits to master since this release

Change log

Breaking Changes

  • Change geoip to geoip-lite

    • Change returning values of geographic information.
    • Before:
      {
        country: {
          country_name: 'United States',
          country_code: 'US',
          country_code3: 'USA',
          continent_code: 'NA'
        }
      }
    • After:
      {
        range: [ 3479299040, 3479299071 ],
        country: 'US',
        region: 'CA',
        city: 'San Francisco',
        ll: [37.7484, -122.4156]
      }