Releases: Bas-Man/rust-decon-spf
v0.2.7
This release fixes the follwing:
-
Increase limit
MAX_SPF_STRING_LENGTH
to512
see issue #2. This wil require some more thought on how to address as I work through adding testing. -
Address case where ip4 and ip6 address incorrect append CIDR information for a single host address
ip4:xxx.xxx.xxx.xxx
is returned asip4:xxx.xxx.xxx.xxx/32
in ip4 case.
Version 0.2.6
This release adds serde support. Serialization and Deserialization
Full Changelog: v0.2.5...v0.2.6
Release 0.2.5
What's Changed
- allow for macros (%{}) at the start of exists by @22ca54d00f05391d6ffee4bc23a5ba60 in #1
New Contributors
- @22ca54d00f05391d6ffee4bc23a5ba60 made their first contribution in #1
Full Changelog: v0.2.4...v0.2.5
Version 0.2.4
- Add
strict-dns
feature- With this feature enabled. DNS strings are checked using the
addr
crate. By default this feature is disabled.
- With this feature enabled. DNS strings are checked using the
- Code which was deprecated as of 0.2.0 has been removed.
- Mechanism::new_* functions have been marked as deprecated. New functions which support the
strict-dns
feature have been added. These old functions will be fully deprecated with version 0.3.0 and then removed in a further future update.
Full Changelog: v0.2.3...v0.2.4
Version 0.2.2
Add feature: warn-dns
This feature enables syntactical testing of DNS Host and Domain names.
If any host/domain is not valid. Then has_warnings()
will be set to true
and a vec of invalid records can be accessed using warnings()
Full Changelog: v0.2.0...v0.2.2
Version 0.2.0
This is a significant update.
- Improved parsing ability. Implementation of
Display
andFromStr
traits. - Error Messages
- *Note: There are a number of breaking changes. See the CHANGELOG
Full Changelog: v0.1.0...v0.2.0