From 9c75ff13dff8ec6056bffe3818e108084cf56596 Mon Sep 17 00:00:00 2001 From: Erik De Bonte Date: Wed, 16 Jul 2025 08:27:33 -0700 Subject: [PATCH 1/3] Prepare release 3.0.5 --- CHANGELOG.md | 5 +++++ pyproject.toml | 2 +- sarif/__init__.py | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1d7a960..d6ef7d8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [3.0.5] - 2025-07-16 + +- #76 Support in HTML display rules as links, when help Uri provided +- #82 `trend` and `csv` output csv files have `\r\n` line terminators when generated on Linux machine + ## [3.0.4] - 2024-11-15 - #73 Crash when using `--check`. diff --git a/pyproject.toml b/pyproject.toml index 69b7b6f..0ea6ece 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "sarif-tools" -version = "3.0.4" +version = "3.0.5" description = "SARIF tools" authors = ["Microsoft"] readme = "README.md" diff --git a/sarif/__init__.py b/sarif/__init__.py index 16baab1..936a4b2 100644 --- a/sarif/__init__.py +++ b/sarif/__init__.py @@ -2,4 +2,4 @@ Top-level version information for sarif-tools. """ -__version__ = "3.0.4" +__version__ = "3.0.5" From 42481816c44b88730205d23ffa28657cb3c26362 Mon Sep 17 00:00:00 2001 From: Erik De Bonte Date: Thu, 17 Jul 2025 10:12:45 -0700 Subject: [PATCH 2/3] Add #97 to changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index d6ef7d8..e24e214 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - #76 Support in HTML display rules as links, when help Uri provided - #82 `trend` and `csv` output csv files have `\r\n` line terminators when generated on Linux machine +- #97 sarif blame crashes with UnicodeDecodeError when it encounters invalid UTF-8 ## [3.0.4] - 2024-11-15 From 393f7a96b0e4bdea65a2f203213fecaf4fa6a65b Mon Sep 17 00:00:00 2001 From: Erik De Bonte Date: Thu, 17 Jul 2025 10:13:48 -0700 Subject: [PATCH 3/3] Update changelog date --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e24e214..1d9909c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [3.0.5] - 2025-07-16 +## [3.0.5] - 2025-07-17 - #76 Support in HTML display rules as links, when help Uri provided - #82 `trend` and `csv` output csv files have `\r\n` line terminators when generated on Linux machine