From 5b7d83e6c7c7e7908e18e72a155cba80063befca Mon Sep 17 00:00:00 2001 From: Gabe Stocco <98900+gfs@users.noreply.github.com> Date: Mon, 8 Jan 2024 14:57:40 -0800 Subject: [PATCH] Remove trailing period after generic guidance uri. (#599) * Remove trailing period after generic guidance uri. * Update Changelog.md * Update dependencies. --- Changelog.md | 7 +++++++ .../Microsoft.DevSkim.CLI/Microsoft.DevSkim.CLI.csproj | 4 ++-- .../Microsoft.DevSkim.CLI/Writers/SimpleTextWriter.cs | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/Changelog.md b/Changelog.md index 87fe21dd..b40de30d 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](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.0.28] - 2024-1-4 +### Fix +Remove trailing period after general guidance URI in output to make it clickable when automatically converted to uri by terminal + +### Dependencies +Update dependencies + ## [1.0.27] - 2023-12-12 ### Pipelines Move GitHub Release task to last task in publish pipeline. diff --git a/DevSkim-DotNet/Microsoft.DevSkim.CLI/Microsoft.DevSkim.CLI.csproj b/DevSkim-DotNet/Microsoft.DevSkim.CLI/Microsoft.DevSkim.CLI.csproj index d1da9a61..ecdb1e2c 100644 --- a/DevSkim-DotNet/Microsoft.DevSkim.CLI/Microsoft.DevSkim.CLI.csproj +++ b/DevSkim-DotNet/Microsoft.DevSkim.CLI/Microsoft.DevSkim.CLI.csproj @@ -37,9 +37,9 @@ <ItemGroup> <PackageReference Include="CommandLineParser" Version="2.9.1" /> <PackageReference Include="LibGit2Sharp" Version="0.29.0" /> - <PackageReference Include="Microsoft.CST.ApplicationInspector.Logging" Version="1.9.16" /> + <PackageReference Include="Microsoft.CST.ApplicationInspector.Logging" Version="1.9.17" /> <PackageReference Include="Microsoft.Extensions.CommandLineUtils" Version="1.1.1" /> - <PackageReference Include="Sarif.Sdk" Version="4.3.7" /> + <PackageReference Include="Sarif.Sdk" Version="4.4.0" /> </ItemGroup> </Project> diff --git a/DevSkim-DotNet/Microsoft.DevSkim.CLI/Writers/SimpleTextWriter.cs b/DevSkim-DotNet/Microsoft.DevSkim.CLI/Writers/SimpleTextWriter.cs index 48e60e2c..7bab62ff 100644 --- a/DevSkim-DotNet/Microsoft.DevSkim.CLI/Writers/SimpleTextWriter.cs +++ b/DevSkim-DotNet/Microsoft.DevSkim.CLI/Writers/SimpleTextWriter.cs @@ -42,7 +42,7 @@ public override void FlushAndClose() { if (anyIssues) { - TextWriter.WriteLine("For guidance on reported issues visit the relevant page here: https://github.com/microsoft/DevSkim/tree/main/guidance."); + TextWriter.WriteLine("For guidance on reported issues visit the relevant page here: https://github.com/microsoft/DevSkim/tree/main/guidance"); } TextWriter.Flush();