Skip to content

Commit

Permalink
4.5.0
Browse files Browse the repository at this point in the history
- Detect non-trivial loops (PR [#88](#88))
- Raise a `SPFSyntaxError` exception when an IP address and IP version do not match (PR [#87](#87))
- Fix raising the `DMARCRecordNotFound` exception when a DMARC record does not exist (PR [#86](#86) closes issue [#72](#72))
- Add void lookup limit (PR [#85](#85))
- Add Support for User Defined DNS Resolver Object (PR [#83](#83))
  • Loading branch information
seanthegeek committed Dec 20, 2022
1 parent b57fb8f commit 19a5c17
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
Changelog
=========

4.5.0
-----

- Detect non-trivial loops (PR [#88](https://github.com/domainaware/checkdmarc/pull/88))
- Raise a `SPFSyntaxError` exception when an IP address and IP version do not match (PR [#87](https://github.com/domainaware/checkdmarc/pull/87))
- Fix raising the `DMARCRecordNotFound` exception when a DMARC record does not exist (PR [#86](https://github.com/domainaware/checkdmarc/pull/86) closes issue [#72](https://github.com/domainaware/checkdmarc/issues/72))
- Add void lookup limit (PR [#85](https://github.com/domainaware/checkdmarc/pull/85))
- Add Support for User Defined DNS Resolver Object (PR [#83](https://github.com/domainaware/checkdmarc/pull/83))


4.4.4
-----

Expand Down
2 changes: 1 addition & 1 deletion checkdmarc.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
See the License for the specific language governing permissions and
limitations under the License."""

__version__ = "4.4.4"
__version__ = "4.5.0"

DMARC_VERSION_REGEX_STRING = r"v=DMARC1;"
BIMI_VERSION_REGEX_STRING = r"v=BIMI1;"
Expand Down

0 comments on commit 19a5c17

Please sign in to comment.