All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.
- Misc doc changes (kianmeng)
- Add excoveralls for test coverage reporting (sbothma)
- Add @type annotations (s3cur3)
- Parsing of invalid MAC Addresses will no longer raise ArgumentError #19 (sneako)
- Parsing of INET addresses without a netmask no longer raise ArgumentError (#20) (mikl)
- Ecto 3.2 support (halostatue)
- Test database configurable through
DATABASE_URL
environment variable
- POSSIBLY BREAKING CHANGE: Ensure inet records returned from database have a default netmask instead of nil (#13)
- Update dependencies to Ecto >= 3.0 and Postgrex >= 0.14
- Update to work with Ecto 3.0-rc.0 and Postgrex 0.14-rc.1.
- Use
extra_applications
when defining application list.
- Update mix dependencies
- Fix tests from capitalization changes
- Fix compiler warnings (van-mronov)
- Add support for casting tuples (bcardarella)
- Improve ExDoc configuration for better HexDocs integration
- Better module documentation
- Pad MAC addresses with zeros (darkbushido)
-
Moved parsing and decoding to
cast
functions. If you were using inserts directly without casting (ie. inside a changeset), functionality may be broken. -
Switch to :inet for parsing network portion of CIDR. IPv6 should be supported for both types now.
- IPv6 Support (@webzepter)
- Initial functionality implemented