Skip to content

Releases: natesilva/is-in-subnet

v4.0.1

10 Dec 20:43
Compare
Choose a tag to compare
  • fix: switch rollup from uglify to terser e2ea1e6
  • fix vulnerabilities in some dependency packages
    • these are only dev dependencies; is-in-subnet has zero runtime dependencies.

v4.0.0...v4.0.1

v4.0.0

10 Dec 20:23
Compare
Choose a tag to compare
  • BREAKING: requires Node 10 or higher
  • doc: update README to reference latest version 0199041

republish with major version bump to reflect breaking change

v3.2.0...v4.0.0

v3.2.0

10 Dec 20:16
Compare
Choose a tag to compare
  • chore: update dependencies 6cb1d4d
  • chore: update minimum Node.js version to 10 (BREAKING CHANGE) 50004fd

v3.1.0...v3.2.0

v3.1.0

22 Jan 17:32
v3.1.0
efe9e3b
Compare
Choose a tag to compare
  • Add functional checker 87c57c0 — with the new createChecker(subnetOrSubnets) function you can create an IP range checker that is pre-bound to a specific set of subnets. This can greatly improve performance if you know in advance which subnets you are testing for. See the documentation. Thanks to @thechriswalker.

v3.0.1...v3.1.0

v3.0.1

15 Jan 20:04
v3.0.1
2afd5ef
Compare
Choose a tag to compare
  • update browser/CDN link in README.md

v3.0.0...v3.0.1

v3.0.0

15 Jan 19:58
v3.0.0
174a42f
Compare
Choose a tag to compare
  • Breaking: minimum supported Node version raised from 6.0.0 to 8.10.0
    • It might work on 6.0.0, but our unit tests no longer run on earlier versions of Node
  • Bugfix: Always throw an Error on an invalid IP address or invalid subnet IP. Previously there were some cases where an Error was not thrown. Thanks to @spencerwilson-optimizely.
  • updated dev dependencies

v2.1.0...v3.0.0

v2.1.0

15 Sep 18:10
v2.1.0
903dcdd
Compare
Choose a tag to compare
  • add complete reference documentation 4ed253e
  • export isIPv4, isIPv6 and isIP 84225c4
  • add isIP 004a98d
  • move IP range definitions into their own file eb5efeb

v2.0.1...v2.1.0

v2.0.0

15 Sep 06:58
v2.0.0
e7b2774
Compare
Choose a tag to compare
  • BREAKING CHANGE: Minimum Node version is now 6.0.0 1d8d27c

v1.14.0...v2.0.0

v1.12.0

15 Sep 06:06
v1.12.0
2d6c644
Compare
Choose a tag to compare

v1.11.0...v1.12.0

v1.11.0

15 Sep 01:10
v1.11.0
15affe4
Compare
Choose a tag to compare
  • Better support for use within browsers.
    • No longer depends on the Node.js built-in module net, simplifying use with Browserify. Thanks to @laduke (#4)
    • A pre-built bundled version is available on the jsDelivr CDN. See README.md for the URL.
  • Updated dev dependencies and unit tests.
  • The check(…) function is now available as an alias for isInSubnet(…).