diff --git a/CHANGELOG.md b/CHANGELOG.md index 3170c0f..808999d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](https://semver.org/) +## [6.3.1] 2024-06-03 + +### Security + +- ignore dev dependency security issue 70612 for jinja2 + + ## [6.3.0] 2024-05-22 ### Changed diff --git a/src/Taskfile.yaml b/src/Taskfile.yaml index 2296959..c565507 100644 --- a/src/Taskfile.yaml +++ b/src/Taskfile.yaml @@ -148,7 +148,8 @@ tasks: cmds: # ignore 51358 safety - dev dependency only # ignore 67599 pip - dev dependency only - - poetry run safety check -i 51358 -i 67599 + # ignore 70612 jinja2 - dev dependency only + - poetry run safety check -i 51358 -i 67599 -i 70612 check:ruff: desc: Complain about everything else