From 2204dd25db9a176596e35c5125330bbd6e03a788 Mon Sep 17 00:00:00 2001 From: Pavel Podkorytov Date: Sun, 5 May 2024 18:33:51 +0500 Subject: [PATCH 1/3] Close 53: add link to docker-compose repo by @nielsbom --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.md b/README.md index a4a2874..ca9c86a 100644 --- a/README.md +++ b/README.md @@ -83,6 +83,12 @@ Installation and go to the http://your-web-server/dmarc +### docker compose + +There is a Docker Compose wrapper created by @nielsbom (thank!): + +https://github.com/nielsbom/dmarc_report_viewer + Configuration ------------- @@ -220,3 +226,6 @@ Thanks * [jquery](http://jquery.com/) * [ChartJS](http://chartjs.org/) * [golang emersion packages](https://github.com/emersion) (go-imap, go-message, go-sasl, go-textwrapper) + +And we have a lot of [contributors](https://github.com/tierpod/dmarc-report-converter/graphs/contributors)! + From 1bfbbac881915b187796d70f37d80b389e608166 Mon Sep 17 00:00:00 2001 From: Pavel Podkorytov Date: Sun, 5 May 2024 18:34:16 +0500 Subject: [PATCH 2/3] Add info about breaking changes for v0.8.0 release --- UPGRADING.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/UPGRADING.md b/UPGRADING.md index b14e14d..fee29a4 100644 --- a/UPGRADING.md +++ b/UPGRADING.md @@ -1,6 +1,18 @@ UPGRADING instructions ====================== +Migration to 0.8 +---------------- + +There are some breaking changes in 0.8: + +* *external_template* now uses the same template context as other kind of templates. It makes all + templates consistent. If you use external_template, just replace `.` with `.Report`. See const.go + for example, more details in PR #47, thanks to @moorereason) + +* json output format changed, because `feedback>record>auth_results` dkim and spf can have + multiple results (list of results). More details in PR #51, thanks to @moorereason) + Migration to 0.6 ---------------- From 96bf46c7daaa4634f08077466c78d42a96089fdd Mon Sep 17 00:00:00 2001 From: Pavel Podkorytov Date: Sun, 5 May 2024 18:44:10 +0500 Subject: [PATCH 3/3] Fix links in UPGRADING --- README.md | 2 +- UPGRADING.md | 9 ++++++--- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index ca9c86a..c8ae779 100644 --- a/README.md +++ b/README.md @@ -85,7 +85,7 @@ Installation ### docker compose -There is a Docker Compose wrapper created by @nielsbom (thank!): +There is a Docker Compose wrapper created by @nielsbom (thanks!): https://github.com/nielsbom/dmarc_report_viewer diff --git a/UPGRADING.md b/UPGRADING.md index fee29a4..a06e8a9 100644 --- a/UPGRADING.md +++ b/UPGRADING.md @@ -8,10 +8,13 @@ There are some breaking changes in 0.8: * *external_template* now uses the same template context as other kind of templates. It makes all templates consistent. If you use external_template, just replace `.` with `.Report`. See const.go - for example, more details in PR #47, thanks to @moorereason) + for example, more details in PR [#47](https://github.com/tierpod/dmarc-report-converter/pull/47), + thanks to @moorereason) -* json output format changed, because `feedback>record>auth_results` dkim and spf can have - multiple results (list of results). More details in PR #51, thanks to @moorereason) +* json output format changed, because `feedback>record>auth_results` dkim and + spf can have multiple results (list of results). More details in PR + [#51](https://github.com/tierpod/dmarc-report-converter/pull/51), thanks to + @moorereason) Migration to 0.6 ----------------