Skip to content

Commit

Permalink
5.7.7
Browse files Browse the repository at this point in the history
- Fix VMC validation errors not appearing (close #149)
  • Loading branch information
seanthegeek committed Nov 2, 2024
1 parent 6003713 commit 47940b0
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Changelog
=========

5.7.7
-----

- Fix VMC validation errors not appearing (close #149)

5.7.6
-----

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

__version__ = "5.7.6"
__version__ = "5.7.7"

OS = platform.system()
OS_RELEASE = platform.release()
Expand Down
1 change: 1 addition & 0 deletions checkdmarc/bimi.py
Original file line number Diff line number Diff line change
Expand Up @@ -309,6 +309,7 @@ def _decode_components(components: list[tuple[bytes, bytes]]):
metadata["valid"] = valid
except X509StoreContextError as e:
validation_errors.append(str(e))
metadata["validation_errors"] = validation_errors
metadata["valid"] = valid
except Exception as e:
validation_errors.append(str(e))
Expand Down

0 comments on commit 47940b0

Please sign in to comment.