Skip to content

Latest commit

 

History

History
1420 lines (1196 loc) · 57 KB

File metadata and controls

1420 lines (1196 loc) · 57 KB

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

[Unreleased]

Security

Added

Fixed

  • Release dates are now computed via an injectable time source (deterministic and testable) rather than the system clock directly, and ChangeLogChecker/FileSystemChangeLogStorage are now public types rather than internal (issue #364). BREAKING: ChangeLogUpdater's constructor now requires a TimeProvider argument, and the static ChangeLogUpdater.CreateRelease now takes a plain date string (validated non-empty) instead of a pending flag plus language - pass the new public ChangeLogRelease.PendingDate constant to request a pending release

Changed

Deprecated

Removed

Deployment Changes

[1.10.202] - 2026-08-27

Fixed

  • BuildReleaseSections now excludes whitespace-only unreleased lines the same way it already excludes blank ones, so CreateRelease correctly throws EmptyChangeLogException instead of producing a release with only whitespace content
  • ChangeLogLinter/ChangeLogFixer now enforce exactly one blank line before the [Unreleased] trailer comment (previously unchecked, so a freshly generated changelog and one built purely via add/remove entries could permanently disagree on this whitespace); dotnet changelog --lint --fix now corrects it (issue #376). BREAKING for --lint-only consumers: a pre-existing changelog missing this blank line will now fail dotnet changelog --lint until --fix is run once against it

[1.10.201] - 2026-08-25

Fixed

  • ChangeLogSerialiser/ChangeLogParser - the changelog write path inconsistently inserted or omitted the blank line before the following release heading; every release heading (including the first one after Unreleased) is now normalised to exactly one blank line before it, and lint/lint-fix detect and correct violations

[1.10.200] - 2026-08-23

Fixed

  • ChangeLogChecker - Fixed off-by-one boundary check that flagged edits to the line immediately before a release header as modifying the released section
  • Program - --additional-sections now applies to --add, --remove, and --create-release, not just --lint
  • ChangeLogChecker - Fixed check-insert false positive ('Changelog modified in released section') when origin/main advances (e.g. cuts a release) after the branch diverged; the diff is now taken against the merge base instead of origin's tip
  • Fixed build break from FunFair.Test 6.4.0.2617 update by switching xunit.v3.mtp-v2 package reference to xunit.v3.aot.mtp-v2 (FunFair.Test.Common now depends on the AOT xunit variants)
  • Fixed CA1822 build errors introduced by FunFair.Test.Common 6.4.0.2617 by marking theory test methods that do not access instance data as static

Changed

  • Dependencies - Updated xunit.analyzers to 2.0.0
  • Dependencies - Updated xunit.v3 to 4.0.0
  • ChangeLogUpdater - Hoisted the loop-invariant requested-version parse out of ValidateVersionNotExists so it is parsed once per --create-release invocation instead of once per existing release
  • Dependencies - Updated FunFair.CodeAnalysis to 7.2.13.2323
  • Dependencies - Updated FunFair.Test to 6.3.9.2602
  • Dependencies - Updated FunFair.Test.Source.Generator to 6.3.9.2602
  • Dependencies - Updated Credfeto.Enumeration to 1.2.152.2216
  • Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.136.1515
  • Dependencies - Updated CSharpIsNullAnalyzer to 0.2.19
  • Dependencies - Updated Meziantou.Analyzer to 3.0.177
  • Dependencies - Updated Roslynator.Analyzers to 5.0.0
  • Dependencies - Updated SonarAnalyzer.CSharp to 10.33.0.1635
  • Dependencies - Updated FunFair.Test.Source.Generator to 6.4.0.2617
  • Dependencies - Updated FunFair.Test to 6.4.0.2617

[1.10.199] - 2026-08-14

Changed

  • Dependencies - Updated FunFair.Test to 6.3.7.2568
  • Dependencies - Updated FunFair.Test.Source.Generator to 6.3.7.2568
  • Dependencies - Updated Microsoft.Extensions to 10.0.11
  • Dependencies - Updated NSubstitute to 6.2.0

[1.10.198] - 2026-08-12

Changed

  • Dependencies - Updated Roslynator.Analyzers to 4.16.0
  • Dependencies - Updated NSubstitute to 6.1.0
  • SDK - Updated DotNet SDK to 10.0.400
  • Dependencies - Updated Meziantou.Analyzer to 3.0.147
  • Dependencies - Updated SonarAnalyzer.CSharp to 10.32.0.713

[1.10.197] - 2026-08-04

Changed

  • Dependencies - Updated SonarAnalyzer.CSharp to 10.31.0.145097
  • Dependencies - Updated LibGit2Sharp to 0.32.0
  • Dependencies - Updated Meziantou.Analyzer to 3.0.138

[1.10.196] - 2026-07-31

Fixed

  • Changelog linter now rejects release dates that don't match the configured language format, including previously-accepted garbage values
  • Correct repository URL references to the canonical credfeto-changelog-manager repo name

Changed

  • Dependencies - Updated AsyncFixer to 2.1.0
  • Dependencies - Updated Credfeto.Enumeration to 1.2.151.2192
  • Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.135.1491
  • Dependencies - Updated Microsoft.Sbom.Targets to 4.1.5
  • Dependencies - Updated Microsoft.VisualStudio.Threading.Analyzers to 18.7.23
  • Dependencies - Updated Philips.CodeAnalysis.DuplicateCodeAnalyzer to 2.0.0
  • Dependencies - Updated Philips.CodeAnalysis.MaintainabilityAnalyzers to 2.0.0
  • Dependencies - Updated Roslynator.Analyzers to 4.15.0
  • Dependencies - Updated SonarAnalyzer.CSharp to 10.29.0.143774
  • Dependencies - Updated ZLinq to 1.5.6
  • Dependencies - Updated FunFair.Test.Source.Generator to 6.3.6.2484
  • Dependencies - Updated Microsoft.Extensions to 10.0.10
  • Dependencies - Updated NSubstitute to 6.0.0
  • Dependencies - Updated FunFair.CodeAnalysis to 7.2.11.2216
  • Exposed changelog parser, serialiser, reader, linter, fixer, updater and detector services (previously internal) as public API, along with related helper types, so tests exercise them directly instead of via InternalsVisibleTo
  • Dependencies - Updated FunFair.Test to 6.3.6.2484
  • Dependencies - Updated Meziantou.Analyzer to 3.0.124
  • Dropped net9.0 support - now targets net10.0 only
  • Reduce allocations in TextBlockToLines.SplitToLines by using a single multi-separator split (#329)

Removed

  • Dead code left behind by the ChangeLogDocument refactor (unused Throws helpers, regexes, extensions, net7 conditional)

[1.10.195] - 2026-07-19

Added

  • add DI registration extension AddChangeLog to configure IChangeLogLoader
  • add service interfaces IChangeLogReader, IChangeLogLinter, IChangeLogFixer, IChangeLogUpdater with file-backed implementations injectable via DI
  • Mock-based unit tests for ChangeLogReader, ChangeLogFixer, ChangeLogLinter, ChangeLogUpdater services using NSubstitute
  • DI registration tests in ChangeLogSetupTests verifying all services are resolvable via AddChangeLog
  • Ensure preamble is inserted on every changelog edit operation (AddEntry, RemoveEntry, CreateRelease, EnsureUnreleasedSections), not only during Fix
  • Support yanked releases (## [version] - date [YANKED]) per Keep a Changelog 1.1.0 spec
  • Support comparison links in version footers - parse and round-trip reference-style links at the bottom of CHANGELOG files
  • Added date format validation to changelog linter to detect incorrectly formatted release dates (#296)
  • Add support for all language versions of Keep a Changelog listed on keepachangelog.com (cs, da, de, es, fr, it, nl, pl, pt-BR, ru, tr, uk, zh-CN, zh-TW)
  • Tests for Credfeto.ChangeLog.Cmd
  • Increase code coverage to 100% for Credfeto.ChangeLog
  • Added a regression-guard benchmark with a committed allocation baseline for ChangeLogParser.MoveTrailingBlanks (issue #254)

Fixed

  • Fixed Pull Request workflow failing when pull_request_target jobs used local composite actions without a prior workspace checkout
  • Provide properly translated section names and unreleased section labels for Czech, Danish, German, Spanish, French, Italian, Dutch, Chinese Simplified, and Chinese Traditional — these were incorrectly using English section order
  • ChangeLogDetector no longer reports 'changelog not found' due to access errors in nested directories; checks root CHANGELOG.md first without a full directory scan
  • CLI no longer silently exits 0 when required option combinations are incomplete (--add/--remove without --message, --extract without --version, --version without --extract, or no recognised command) — it now throws InvalidOptionsException and exits with a non-zero code.
  • Fix ChangeLogParser crash (ArgumentOutOfRangeException) on version headers with a missing closing bracket or malformed date separator
  • CreateEmptyAsync now writes the full initial changelog template (#334)
  • Fixed --lint --fix not converging in a single pass when a changelog section heading was followed by two or more blank lines

Changed

  • ChangeLogSections: added static FrozenSet KnownSections pre-built from Order, replacing per-call HashSet allocation in BuildNewUnreleasedContent
  • Refined changelog section linting and related updater/fixer command behaviour.
  • Extracted shared changelog heading extension methods and reused them in reader/linter.
  • Dependencies - Updated Meziantou.Analyzer to 2.0.219
  • Dotnet 10
  • Reduced heap allocations in EnsureUnreleasedSections by pre-computing section heading strings in ChangeLogSections rather than concatenating them on every call
  • Refined changelog section linting and related updater/fixer command behaviour.
  • Extracted shared changelog heading extension methods and reused them in reader/linter.
  • Centralised changelog file loading behind a shared loader abstraction and added file-operation coverage tests.
  • remove IsSubHeading wrapper and inline IsChangeTypeHeading extension calls
  • remove IsChangeTypeHeadingOrVersionHeading wrapper and inline extension calls
  • replace string.Join with LinesToText extension and Split with SplitToLines
  • update CLI and tests to resolve changelog operations through DI
  • Reorganised Credfeto.ChangeLog into Extensions, Models, and Services sub-folders with matching namespaces
  • Renamed IChangeLogLoader to IChangeLogStorage and FileSystemChangeLogLoader to FileSystemChangeLogStorage to reflect load and save responsibilities
  • Extracted common string comparison, HTML comment detection, and unreleased-section helpers into ChangeLogHeadingExtensions
  • Split ChangeLogUpdater and ChangeLogLinter into focused partial class files by responsibility
  • Extracted FindUnreleasedStart as a shared extension method; replaced duplicated IsRelease private method with IsVersionHeader extension
  • ChangeLogLanguageFactory is now a non-static class implementing IChangeLogLanguageFactory; language code changed from 'keep-a-changelog' to 'en'
  • Refactored service layer: IChangeLogStorage reduced to LoadAsync/SaveAsync; ChangeLogLanguage moved to method parameters; ChangeLogLanguageFactory made non-static implementing IChangeLogLanguageFactory with English constant renamed from KeepAChangelog to English
  • Maintain the keepachangelog.com and semver.org preamble URLs in changelog headers when fixing
  • replace CountOccurrences helper with source-generated regex in ChangeLogFixerTests
  • Replaced System.Linq LINQ .Where() with ZLinq .AsValueEnumerable().Where() to eliminate heap allocation of enumerators
  • Replaced System.Linq .Where() with ZLinq .AsValueEnumerable().Where() to eliminate per-call heap allocations in enumeration hot paths
  • Exceptions now use Credfeto.Exceptions.SourceGenerator source generator to reduce boilerplate
  • ChangeLogDetector now skips the .git directory and uses IgnoreInaccessible enumeration when scanning for changelogs in subdirectories
  • Improved performance when checking changelog modifications by limiting git diff to the changelog file only
  • Refactored MoveTrailingBlanks in ChangeLogParser to avoid repeated O(n) element shifting when moving trailing blank lines into the trailer
  • SDK - Updated DotNet SDK to 10.0.302

Removed

  • Removed ChangeLogSections helper class; each language now specifies its own section order inline, accessed only through the language object

[1.10.194] - 2026-05-05

Added

  • Automatically fixes changelogs that have missing or out-of-order sections in [Unreleased], ensuring all standard sections are present and in the correct order
  • Benchmarks for EnsureUnreleasedSections to measure allocations per operation and enforce regression baselines
  • Add lint command to validate changelog format (--lint, --additional-sections, --fix)

Changed

  • Dependencies - Updated Meziantou.Analyzer to 2.0.219
  • Dotnet 10
  • SDK - Updated DotNet SDK to 10.0.200
  • Reduced heap allocations in EnsureUnreleasedSections by pre-computing section heading strings in ChangeLogSections rather than concatenating them on every call

[1.10.193] - 2025-09-12

Changed

  • Dependencies - Updated Meziantou.Analyzer to 2.0.218
  • Dependencies - Updated Credfeto.Enumeration to 1.2.129.1430
  • Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.115.836
  • Dependencies - Updated FunFair.CodeAnalysis to 7.1.24.1452
  • Dependencies - Updated FunFair.Test.Common to 6.1.286.1682

[1.10.192] - 2025-09-11

Changed

  • Dependencies - Updated xunit.analyzers to 1.24.0
  • Dependencies - Updated xunit.v3 to 3.0.1
  • Dependencies - Updated Meziantou.Analyzer to 2.0.213
  • Dependencies - Updated Philips.CodeAnalysis.MaintainabilityAnalyzers to 1.9.1
  • Dependencies - Updated FunFair.CodeAnalysis to 7.1.23.1420
  • Dependencies - Updated Microsoft.Sbom.Targets to 4.1.2
  • SDK - Updated DotNet SDK to 9.0.305

[1.10.191] - 2025-08-15

Changed

  • Dependencies - Updated FunFair.CodeAnalysis to 7.1.22.1366
  • Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.114.790
  • Dependencies - Updated Philips.CodeAnalysis.MaintainabilityAnalyzers to 1.8.0

[1.10.190] - 2025-08-12

Changed

  • Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.113.784
  • Dependencies - Updated FunFair.CodeAnalysis to 7.1.21.1364
  • Dependencies - Updated FunFair.Test.Common to 6.1.285.1620

[1.10.189] - 2025-08-11

Changed

  • Dependencies - Updated Credfeto.Enumeration to 1.2.127.1366

[1.10.188] - 2025-08-11

Changed

  • Dependencies - Updated FunFair.Test.Common to 6.1.284.1617
  • Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.112.779
  • Dependencies - Updated FunFair.CodeAnalysis to 7.1.20.1362

[1.10.187] - 2025-08-10

Changed

  • Dependencies - Updated FunFair.Test.Common to 6.1.283.1612
  • Dependencies - Updated FunFair.CodeAnalysis to 7.1.19.1359
  • Dependencies - Updated Credfeto.Enumeration to 1.2.126.1361

[1.10.186] - 2025-08-10

Changed

  • Dependencies - Updated Credfeto.Enumeration to 1.2.125.1355
  • Dependencies - Updated FunFair.CodeAnalysis to 7.1.18.1350
  • Dependencies - Updated Philips.CodeAnalysis.MaintainabilityAnalyzers to 1.7.0
  • Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.111.775

[1.10.185] - 2025-08-09

Changed

  • Dependencies - Updated Credfeto.Enumeration to 1.2.124.1351
  • SDK - Updated DotNet SDK to 9.0.304
  • Dependencies - Updated FunFair.CodeAnalysis to 7.1.17.1347
  • Dependencies - Updated FunFair.Test.Common to 6.1.282.1603

[1.10.184] - 2025-08-08

Changed

  • Dependencies - Updated Credfeto.Enumeration to 1.2.123.1345
  • Dependencies - Updated FunFair.CodeAnalysis to 7.1.16.1341
  • Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.110.765
  • Dependencies - Updated Meziantou.Analyzer to 2.0.212

[1.10.183] - 2025-08-07

Changed

  • Dependencies - Updated FunFair.CodeAnalysis to 7.1.15.1339
  • Dependencies - Updated FunFair.Test.Common to 6.1.281.1593
  • Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.109.760

[1.10.182] - 2025-08-07

Changed

  • Dependencies - Updated Credfeto.Enumeration to 1.2.122.1340
  • Dependencies - Updated Meziantou.Analyzer to 2.0.211

[1.10.181] - 2025-08-06

Changed

  • Dependencies - Updated Credfeto.Enumeration to 1.2.121.1337
  • Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.108.756
  • Dependencies - Updated FunFair.CodeAnalysis to 7.1.14.1336

[1.10.180] - 2025-08-06

Changed

  • SDK - Updated DotNet SDK to 9.0.303
  • Dependencies - Updated FunFair.CodeAnalysis to 7.1.13.1330
  • Dependencies - Updated Meziantou.Analyzer to 2.0.210
  • Dependencies - Updated Microsoft.Sbom.Targets to 4.1.0
  • Dependencies - Updated Philips.CodeAnalysis.DuplicateCodeAnalyzer to 1.6.4
  • Dependencies - Updated Philips.CodeAnalysis.MaintainabilityAnalyzers to 1.6.4
  • Dependencies - Updated Roslynator.Analyzers to 4.14.0
  • Dependencies - Updated SonarAnalyzer.CSharp to 10.15.0.120848
  • Dependencies - Updated xunit.analyzers to 1.23.0
  • Dependencies - Updated xunit.v3 to 3.0.0
  • Dependencies - Updated FunFair.Test.Common to 6.1.280.1580

[1.10.179] - 2025-06-24

Changed

  • Dependencies - Updated FunFair.CodeAnalysis to 7.1.6.1242
  • Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.107.685
  • Dependencies - Updated FunFair.Test.Common to 6.1.274.1486

[1.10.178] - 2025-06-23

Changed

  • Dependencies - Updated Credfeto.Enumeration to 1.2.119.1263

[1.10.177] - 2025-06-22

Changed

  • Dependencies - Updated FunFair.CodeAnalysis to 7.1.5.1240
  • Dependencies - Updated FunFair.Test.Common to 6.1.273.1481
  • Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.106.680

[1.10.176] - 2025-06-22

Changed

  • Dependencies - Updated Credfeto.Enumeration to 1.2.118.1259

[1.10.175] - 2025-06-21

Changed

  • Dependencies - Updated FunFair.CodeAnalysis to 7.1.4.1237
  • Dependencies - Updated FunFair.Test.Common to 6.1.272.1478
  • Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.105.676

[1.10.174] - 2025-06-21

Changed

  • Dependencies - Updated Credfeto.Enumeration to 1.2.117.1255

[1.10.173] - 2025-06-21

Changed

  • Dependencies - Updated FunFair.CodeAnalysis to 7.1.3.1234
  • Dependencies - Updated FunFair.Test.Common to 6.1.271.1475
  • Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.104.674

[1.10.172] - 2025-06-20

Changed

  • Dependencies - Updated FunFair.Test.Common to 6.1.270.1471
  • Dependencies - Updated Credfeto.Enumeration to 1.2.116.1247

[1.10.171] - 2025-06-19

Changed

  • Dependencies - Updated FunFair.CodeAnalysis to 7.1.2.1228
  • Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.103.663

[1.10.170] - 2025-06-19

Changed

  • Dependencies - Updated Credfeto.Enumeration to 1.2.115.1242

[1.10.169] - 2025-06-18

Changed

  • Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.102.657
  • Dependencies - Updated FunFair.CodeAnalysis to 7.1.1.1215
  • Dependencies - Updated SonarAnalyzer.CSharp to 10.12.0.118525
  • Dependencies - Updated FunFair.Test.Common to 6.1.269.1462

[1.10.168] - 2025-06-17

Changed

  • Dependencies - Updated Credfeto.Enumeration to 1.2.114.1235

[1.10.167] - 2025-06-16

Changed

  • Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.101.652
  • Dependencies - Updated Meziantou.Analyzer to 2.0.202

[1.10.166] - 2025-06-13

Changed

  • Dependencies - Updated Credfeto.Enumeration to 1.2.113.1231

[1.10.165] - 2025-06-13

Changed

  • Dependencies - Updated Credfeto.Enumeration to 1.2.112.1229
  • Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.100.650

[1.10.164] - 2025-06-12

Changed

  • Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.99.647
  • SDK - Updated DotNet SDK to 9.0.301

[1.10.163] - 2025-06-12

Changed

  • Dependencies - Updated Credfeto.Enumeration to 1.2.111.1223

[1.10.162] - 2025-06-11

Changed

  • Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.98.642

[1.10.161] - 2025-06-11

Changed

  • Dependencies - Updated Credfeto.Enumeration to 1.2.110.1215

[1.10.160] - 2025-06-10

Changed

  • Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.97.634

[1.10.159] - 2025-06-10

Changed

  • Dependencies - Updated Credfeto.Enumeration to 1.2.109.1213

[1.10.158] - 2025-06-09

Changed

  • Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.96.632

[1.10.157] - 2025-06-09

Changed

  • Dependencies - Updated Credfeto.Enumeration to 1.2.108.1210

[1.10.156] - 2025-06-09

Changed

  • Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.95.630

[1.10.155] - 2025-06-08

Changed

  • Dependencies - Updated Credfeto.Enumeration to 1.2.107.1208

[1.10.154] - 2025-06-08

Changed

  • Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.94.628

[1.10.153] - 2025-06-08

Changed

  • Dependencies - Updated Credfeto.Enumeration to 1.2.106.1206

[1.10.152] - 2025-06-07

Changed

  • Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.93.624
  • Dependencies - Updated xunit.analyzers to 1.22.0
  • Dependencies - Updated xunit.v3 to 2.0.3

[1.10.151] - 2025-06-07

Changed

  • Dependencies - Updated Credfeto.Enumeration to 1.2.105.1202

[1.10.150] - 2025-06-06

Changed

  • Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.92.617
  • Dependencies - Updated SonarAnalyzer.CSharp to 10.11.0.117924

[1.10.149] - 2025-06-05

Changed

  • Dependencies - Updated Credfeto.Enumeration to 1.2.104.1195

[1.10.148] - 2025-06-05

Changed

  • Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.91.615

[1.10.147] - 2025-06-04

Changed

  • Dependencies - Updated Credfeto.Enumeration to 1.2.103.1193

[1.10.146] - 2025-06-04

Changed

  • Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.90.612

[1.10.145] - 2025-06-03

Changed

  • Dependencies - Updated Credfeto.Enumeration to 1.2.102.1190

[1.10.144] - 2025-06-03

Changed

  • Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.89.610

[1.10.143] - 2025-06-03

Changed

  • Dependencies - Updated Credfeto.Enumeration to 1.2.101.1187

[1.10.142] - 2025-06-02

Changed

  • Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.88.603

[1.10.141] - 2025-06-01

Changed

  • Dependencies - Updated Credfeto.Enumeration to 1.2.100.1181

[1.10.140] - 2025-06-01

Changed

  • Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.87.601

[1.10.139] - 2025-05-31

Changed

  • Dependencies - Updated Credfeto.Enumeration to 1.2.99.1179

[1.10.138] - 2025-05-31

Changed

  • Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.86.599

[1.10.137] - 2025-05-31

Changed

  • Dependencies - Updated Credfeto.Enumeration to 1.2.98.1177

[1.10.136] - 2025-05-30

Changed

  • Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.85.597

[1.10.135] - 2025-05-30

Changed

  • Dependencies - Updated Credfeto.Enumeration to 1.2.97.1173

[1.10.134] - 2025-05-29

Changed

  • Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.84.593

[1.10.133] - 2025-05-29

Changed

  • Dependencies - Updated Credfeto.Enumeration to 1.2.96.1171

[1.10.132] - 2025-05-28

Changed

  • Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.83.591

[1.10.131] - 2025-05-28

Changed

  • Dependencies - Updated Credfeto.Enumeration to 1.2.95.1168

[1.10.130] - 2025-05-27

Changed

  • Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.82.588

[1.10.129] - 2025-05-27

Changed

  • Dependencies - Updated Credfeto.Enumeration to 1.2.94.1165

[1.10.128] - 2025-05-26

Changed

  • Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.81.585

[1.10.127] - 2025-05-26

Changed

  • Dependencies - Updated Credfeto.Enumeration to 1.2.93.1163

[1.10.126] - 2025-05-26

Changed

  • Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.80.583

[1.10.125] - 2025-05-25

Changed

  • Dependencies - Updated Credfeto.Enumeration to 1.2.92.1161

[1.10.124] - 2025-05-25

Changed

  • Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.79.581

[1.10.123] - 2025-05-24

Changed

  • Dependencies - Updated Credfeto.Enumeration to 1.2.91.1159

[1.10.122] - 2025-05-24

Changed

  • Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.78.579

[1.10.121] - 2025-05-23

Changed

  • Dependencies - Updated Credfeto.Enumeration to 1.2.90.1157

[1.10.120] - 2025-05-23

Changed

  • Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.77.577

[1.10.119] - 2025-05-23

Changed

  • Dependencies - Updated Credfeto.Enumeration to 1.2.89.1151

[1.10.118] - 2025-05-22

Changed

  • Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.76.571

[1.10.117] - 2025-05-21

Changed

  • Dependencies - Updated Credfeto.Enumeration to 1.2.88.1149

[1.10.116] - 2025-05-21

Changed

  • Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.75.564

[1.10.115] - 2025-05-20

Changed

  • Dependencies - Updated Credfeto.Enumeration to 1.2.87.1134
  • Dependencies - Updated SonarAnalyzer.CSharp to 10.10.0.116381

[1.10.114] - 2025-05-19

Changed

  • Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.74.557

[1.10.113] - 2025-05-18

Changed

  • Dependencies - Updated Credfeto.Enumeration to 1.2.86.1132

[1.10.112] - 2025-05-18

Changed

  • Dependencies - Updated Credfeto.Enumeration to 1.2.85.1130
  • Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.73.555

[1.10.111] - 2025-05-17

Changed

  • Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.72.553

[1.10.110] - 2025-05-17

Changed

  • Dependencies - Updated Credfeto.Enumeration to 1.2.84.1127
  • Dependencies - Updated Microsoft.Sbom.Targets to 4.0.3

[1.10.109] - 2025-05-16

Changed

  • Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.71.550

[1.10.108] - 2025-05-15

Changed

  • Dependencies - Updated Credfeto.Enumeration to 1.2.83.1123

[1.10.107] - 2025-05-15

Changed

  • Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.70.545

[1.10.106] - 2025-05-14

Changed

  • Dependencies - Updated Nullable.Extended.Analyzer to 1.15.6581
  • Dependencies - Updated SonarAnalyzer.CSharp to 10.9.0.115408
  • Dependencies - Updated Meziantou.Analyzer to 2.0.201
  • Dependencies - Updated xunit.v3 to 2.0.2
  • Dependencies - Updated FunFair.CodeAnalysis to 7.1.0.1124
  • Dependencies - Updated Microsoft.Sbom.Targets to 4.0.2
  • SDK - Updated DotNet SDK to 9.0.300
  • Dependencies - Updated Microsoft.VisualStudio.Threading.Analyzers to 17.14.15
  • Dependencies - Updated Credfeto.Enumeration to 1.2.82.1120

[1.10.105] - 2025-04-28

Changed

  • Dependencies - Updated Credfeto.Enumeration to 1.2.81.1087

[1.10.103] - 2025-04-28

Changed

  • Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.68.513

[1.10.102] - 2025-04-27

Changed

  • Dependencies - Updated Credfeto.Enumeration to 1.2.80.1084

[1.10.101] - 2025-04-27

Changed

  • Dependencies - Updated Meziantou.Analyzer to 2.0.199
  • Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.67.507

[1.10.100] - 2025-04-25

Changed

  • Dependencies - Updated Meziantou.Analyzer to 2.0.198
  • Dependencies - Updated Credfeto.Enumeration to 1.2.79.1071
  • Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.66.501

[1.10.99] - 2025-04-25

Changed

  • Dependencies - Updated Credfeto.Enumeration to 1.2.78.1065
  • Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.65.495

[1.10.98] - 2025-04-24

Changed

  • Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.64.491
  • Dependencies - Updated CSharpier.MSBuild to 1.0.0

[1.10.97] - 2025-04-22

Changed

  • Dependencies - Updated Credfeto.Enumeration to 1.2.77.1054
  • Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.63.485

[1.10.96] - 2025-04-21

Changed

  • Dependencies - Updated Credfeto.Enumeration to 1.2.76.1049
  • Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.62.480

[1.10.95] - 2025-04-20

Changed

  • Dependencies - Updated Credfeto.Enumeration to 1.2.75.1045
  • Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.61.476
  • Dependencies - Updated FunFair.CodeAnalysis to 7.0.79.1041
  • Dependencies - Updated FunFair.Test.Common to 6.1.268.1269
  • Dependencies - Updated Meziantou.Analyzer to 2.0.197

[1.10.94] - 2025-04-16

Changed

  • Dependencies - Updated FunFair.CodeAnalysis to 7.0.78.1039
  • Dependencies - Updated Credfeto.Enumeration to 1.2.74.1041
  • Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.60.472

[1.10.93] - 2025-04-14

Changed

  • Dependencies - Updated FunFair.Test.Common to 6.1.267.1259
  • Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.59.468
  • Dependencies - Updated FunFair.CodeAnalysis to 7.0.77.1037
  • Dependencies - Updated Credfeto.Enumeration to 1.2.73.1040

[1.10.92] - 2025-04-12

Changed

  • Dependencies - Updated Credfeto.Enumeration to 1.2.72.1035
  • Dependencies - Updated Meziantou.Analyzer to 2.0.196

[1.10.91] - 2025-04-10

Changed

  • Dependencies - Updated FunFair.Test.Common to 6.1.266.1250
  • Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.58.459

[1.10.90] - 2025-04-09

Changed

  • Dependencies - Updated xunit.analyzers to 1.21.0
  • Dependencies - Updated xunit.v3 to 2.0.1
  • Dependencies - Updated SonarAnalyzer.CSharp to 10.8.0.113526
  • SDK - Updated DotNet SDK to 9.0.203
  • Dependencies - Updated Meziantou.Analyzer to 2.0.195

[1.10.89] - 2025-03-25

Changed

  • Dependencies - Updated Credfeto.Enumeration to 1.2.71.984
  • Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.57.416
  • Dependencies - Updated FunFair.CodeAnalysis to 7.0.74.984
  • Dependencies - Updated FunFair.Test.Common to 6.1.265.1215

[1.10.88] - 2025-03-23

Changed

  • Dependencies - Updated Microsoft.Sbom.Targets to 3.1.0
  • Dependencies - Updated xunit.analyzers to 1.20.0
  • Dependencies - Updated xunit.runner.visualstudio to 3.0.2
  • Dependencies - Updated Microsoft.NET.Test.Sdk to 17.13.0
  • Dependencies - Updated Roslynator.Analyzers to 4.13.1
  • Dependencies - Updated SonarAnalyzer.CSharp to 10.7.0.110445
  • Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.56.380
  • Dependencies - Updated Microsoft.VisualStudio.Threading.Analyzers to 17.13.61
  • Dependencies - Updated Credfeto.Enumeration to 1.2.70.976
  • Dependencies - Updated Meziantou.Analyzer to 2.0.189
  • SDK - Updated DotNet SDK to 9.0.202
  • Dependencies - Updated FunFair.CodeAnalysis to 7.0.73.978
  • Dependencies - Updated FunFair.Test.Common to 6.1.264.1201

[1.10.87] - 2025-02-03

Changed

  • Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.52.332

[1.10.86] - 2025-02-03

Changed

  • Dependencies - Updated Credfeto.Enumeration to 1.2.65.902
  • Dependencies - Updated FunFair.CodeAnalysis to 7.0.66.900
  • Dependencies - Updated FunFair.Test.Common to 6.1.255.1124

[1.10.85] - 2025-02-01

Changed

  • Dependencies - Updated Roslynator.Analyzers to 4.12.11
  • Dependencies - Updated SonarAnalyzer.CSharp to 10.6.0.109712
  • Dependencies - Updated FunFair.Test.Common to 6.1.254.1118
  • Dependencies - Updated FunFair.CodeAnalysis to 7.0.65.898
  • Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.51.325

[1.10.84] - 2025-01-28

Changed

  • Dependencies - Updated Credfeto.Enumeration to 1.2.64.889

[1.10.83] - 2025-01-27

Changed

  • Dependencies - Updated Credfeto.Enumeration to 1.2.63.887
  • Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.50.312

[1.10.82] - 2025-01-26

Changed

  • Dependencies - Updated Credfeto.Enumeration to 1.2.62.883
  • Dependencies - Updated FunFair.CodeAnalysis to 7.0.64.879
  • Dependencies - Updated FunFair.Test.Common to 6.1.253.1102
  • Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.49.309

[1.10.81] - 2025-01-26

Changed

  • Dependencies - Updated Credfeto.Enumeration to 1.2.61.881
  • Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.48.307

[1.10.80] - 2025-01-25

Changed

  • Dependencies - Updated Credfeto.Enumeration to 1.2.60.877
  • Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.47.303
  • Dependencies - Updated FunFair.CodeAnalysis to 7.0.63.876
  • Dependencies - Updated FunFair.Test.Common to 6.1.252.1099

[1.10.79] - 2025-01-24

Changed

  • Dependencies - Updated FunFair.Test.Common to 6.1.250.1092
  • Dependencies - Updated FunFair.CodeAnalysis to 7.0.61.870
  • Dependencies - Updated Credfeto.Enumeration to 1.2.59.872
  • Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.46.298

[1.10.78] - 2025-01-23

Changed

  • Dependencies - Updated FunFair.CodeAnalysis to 7.0.59.864
  • Dependencies - Updated FunFair.Test.Common to 6.1.249.1087
  • Dependencies - Updated Credfeto.Enumeration to 1.2.58.866
  • Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.45.292

[1.10.77] - 2025-01-22

Changed

  • Dependencies - Updated Credfeto.Enumeration to 1.2.57.857
  • Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.44.283
  • Dependencies - Updated FunFair.CodeAnalysis to 7.0.58.861
  • Dependencies - Updated FunFair.Test.Common to 6.1.248.1085

[1.10.76] - 2025-01-20

Changed

  • Dependencies - Updated Credfeto.Enumeration to 1.2.55.854
  • Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.43.281

[1.10.75] - 2025-01-20

Changed

  • Dependencies - Updated Credfeto.Enumeration to 1.2.54.847
  • Dependencies - Updated FunFair.CodeAnalysis to 7.0.57.858
  • Dependencies - Updated FunFair.Test.Common to 6.1.247.1082
  • Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.42.276

[1.10.74] - 2025-01-18

Changed

  • Dependencies - Updated SonarAnalyzer.CSharp to 10.5.0.109200
  • SDK - Updated DotNet SDK to 9.0.102
  • Dependencies - Updated FunFair.Test.Common to 6.1.245.1069
  • Dependencies - Updated FunFair.CodeAnalysis to 7.0.56.855

[1.10.73] - 2025-01-10

Changed

  • Dependencies - Updated Credfeto.Enumeration to 1.2.53.824
  • Dependencies - Updated xunit.analyzers to 1.19.0
  • Dependencies - Updated xunit.runner.visualstudio to 3.0.1

[1.10.72] - 2025-01-09

Changed

  • Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.41.250

[1.10.71] - 2025-01-09

Changed

  • Dependencies - Updated Credfeto.Enumeration to 1.2.52.820
  • Dependencies - Updated Meziantou.Analyzer to 2.0.185
  • Dependencies - Updated xunit to 2.9.3

[1.10.70] - 2025-01-08

Changed

  • Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.40.246

[1.10.69] - 2025-01-08

Changed

  • Dependencies - Updated Credfeto.Enumeration to 1.2.51.818

[1.10.68] - 2025-01-07

Changed

  • Dependencies - Updated Microsoft.Sbom.Targets to 3.0.1
  • Dependencies - Updated FunFair.CodeAnalysis to 7.0.53.833
  • Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.39.244

[1.10.67] - 2025-01-06

Changed

  • Dependencies - Updated Credfeto.Enumeration to 1.2.50.814

[1.10.66] - 2025-01-05

Changed

  • Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.38.239

[1.10.65] - 2025-01-05

Changed

  • Dependencies - Updated Credfeto.Enumeration to 1.2.49.812

[1.10.64] - 2025-01-05

Changed

  • Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.37.237

[1.10.63] - 2025-01-04

Changed

  • Dependencies - Updated Credfeto.Enumeration to 1.2.48.810

[1.10.62] - 2025-01-04

Changed

  • Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.36.235

[1.10.61] - 2025-01-04

Changed

  • Dependencies - Updated Credfeto.Enumeration to 1.2.47.806

[1.10.60] - 2025-01-03

Changed

  • Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.35.231

[1.10.59] - 2025-01-03

Changed

  • Dependencies - Updated Credfeto.Enumeration to 1.2.46.804

[1.10.58] - 2025-01-02

Changed

  • Dependencies - Updated Credfeto.Enumeration to 1.2.45.800
  • Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.34.227
  • Dependencies - Updated FunFair.CodeAnalysis to 7.0.52.823
  • Dependencies - Updated Meziantou.Analyzer to 2.0.184
  • Dependencies - Updated Nullable.Extended.Analyzer to 1.15.6495
  • Dependencies - Updated FunFair.Test.Common to 6.1.242.1044

[1.10.57] - 2024-12-18

Changed

  • Dependencies - Updated Credfeto.Enumeration to 1.2.43.772
  • Dependencies - Updated xunit.analyzers to 1.18.0
  • Dependencies - Updated xunit.runner.visualstudio to 3.0.0
  • Dependencies - Updated Roslynator.Analyzers to 4.12.10
  • Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.32.207
  • Dependencies - Updated FunFair.Test.Common to 6.1.241.1032
  • Dependencies - Updated SonarAnalyzer.CSharp to 10.4.0.108396

[1.10.56] - 2024-12-16

Changed

  • Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.31.198

[1.10.55] - 2024-12-16

Changed

  • Dependencies - Updated Credfeto.Enumeration to 1.2.42.770

[1.10.54] - 2024-12-15

Changed

  • Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.30.194

[1.10.53] - 2024-12-15

Changed

  • Dependencies - Updated Credfeto.Enumeration to 1.2.41.765
  • Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.29.192

[1.10.52] - 2024-12-15

Changed

  • Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.28.176
  • SDK - Updated DotNet SDK to 9.0.101

[1.10.51] - 2024-12-04

Changed

  • Dependencies - Updated Credfeto.Enumeration to 1.2.40.746

[1.10.50] - 2024-12-03

Changed

  • Dependencies - Updated Credfeto.Enumeration to 1.2.39.744
  • Dependencies - Updated LibGit2Sharp to 0.31.0
  • Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.27.174

[1.10.49] - 2024-12-02

Changed

  • Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.26.172

[1.10.48] - 2024-12-02

Changed

  • Dependencies - Updated Credfeto.Enumeration to 1.2.38.742

[1.10.47] - 2024-12-02

Changed

  • Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.25.170

[1.10.46] - 2024-12-01

Changed

  • Dependencies - Updated Credfeto.Enumeration to 1.2.37.740

[1.10.45] - 2024-12-01

Changed

  • Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.24.168

[1.10.44] - 2024-11-30

Changed

  • Dependencies - Updated Credfeto.Enumeration to 1.2.36.738

[1.10.43] - 2024-11-30

Changed

  • Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.23.166

[1.10.42] - 2024-11-29

Changed

  • Dependencies - Updated Credfeto.Enumeration to 1.2.35.736

[1.10.41] - 2024-11-29

Changed

  • Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.22.164

[1.10.40] - 2024-11-29

Changed

  • Dependencies - Updated Credfeto.Enumeration to 1.2.34.734

[1.10.39] - 2024-11-28

Changed

  • Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.21.162

[1.10.38] - 2024-11-28

Changed

  • Dependencies - Updated Credfeto.Enumeration to 1.2.33.729
  • Dependencies - Updated Meziantou.Analyzer to 2.0.182

[1.10.37] - 2024-11-27

Changed

  • Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.20.155
  • Dependencies - Updated SonarAnalyzer.CSharp to 10.3.0.106239

[1.10.36] - 2024-11-26

Changed

  • Dependencies - Updated Credfeto.Enumeration to 1.2.32.723
  • Dependencies - Updated Meziantou.Analyzer to 2.0.181

[1.10.35] - 2024-11-25

Changed

  • Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.19.151

[1.10.34] - 2024-11-25

Changed

  • Dependencies - Updated Credfeto.Enumeration to 1.2.31.720

[1.10.33] - 2024-11-24

Changed

  • Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.18.148

[1.10.32] - 2024-11-24

Changed

  • Dependencies - Updated Credfeto.Enumeration to 1.2.30.718

[1.10.31] - 2024-11-24

Changed

  • Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.17.146

[1.10.30] - 2024-11-23

Changed

  • Dependencies - Updated Credfeto.Enumeration to 1.2.29.716

[1.10.29] - 2024-11-23

Changed

  • Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.16.144

[1.10.28] - 2024-11-22

Changed

  • Dependencies - Updated Credfeto.Enumeration to 1.2.28.714

[1.10.27] - 2024-11-22

Changed

  • Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.15.141

[1.10.26] - 2024-11-21

Changed

  • Dependencies - Updated Credfeto.Enumeration to 1.1.26.710

[1.10.25] - 2024-11-21

Changed

  • Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.14.137

[1.10.24] - 2024-11-20

Changed

  • Dependencies - Updated Credfeto.Enumeration to 1.1.25.705
  • Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.13.135

[1.10.23] - 2024-11-20

Changed

  • Dependencies - Updated FunFair.CodeAnalysis to 7.0.32.711
  • SDK - Updated DotNet SDK to 9.0.100
  • Dependencies - Updated Microsoft.VisualStudio.Threading.Analyzers to 17.12.19
  • Dependencies - Updated FunFair.Test.Common to 6.1.239.979
  • Dependencies - Updated Credfeto.Enumeration to 1.1.24.699
  • Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.12.127
  • Dependencies - Updated Meziantou.Analyzer to 2.0.180
  • Dependencies - Updated Microsoft.NET.Test.Sdk to 17.12.0

[1.10.22] - 2024-11-12

Changed

  • Dependencies - Updated xunit.analyzers to 1.17.0
  • Dependencies - Updated Credfeto.Enumeration to 1.1.22.677
  • Dependencies - Updated Meziantou.Analyzer to 2.0.178

[1.10.21] - 2024-11-02

Changed

  • Dependencies - Updated FunFair.CodeAnalysis to 7.0.31.691
  • Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.10.91
  • Dependencies - Updated FunFair.Test.Common to 6.1.237.951

[1.10.20] - 2024-11-01

Changed

  • Dependencies - Updated Nullable.Extended.Analyzer to 1.15.6169
  • Dependencies - Updated NSubstitute.Analyzers.CSharp to 1.0.17
  • Dependencies - Updated TeamCity.VSTest.TestAdapter to 1.0.40
  • Dependencies - Updated coverlet to 6.0.2
  • Dependencies - Updated LibGit2Sharp to 0.30.0
  • Dependencies - Updated Credfeto.Enumeration.Source.Generation to 1.1.5.315
  • Dependencies - Updated SmartAnalyzers.CSharpExtensions.Annotations to 4.2.11
  • Dependencies - Updated CSharpIsNullAnalyzer to 0.1.593
  • Dependencies - Updated xunit.runner.visualstudio to 2.8.2
  • Dependencies - Updated ThisAssembly.AssemblyInfo to 1.5.0
  • Dependencies - Updated Microsoft.VisualStudio.Threading.Analyzers to 17.11.20
  • Dependencies - Updated SonarAnalyzer.CSharp to 9.32.0.97167
  • Dependencies - Updated xunit.analyzers to 1.16.0
  • Dependencies - Updated Microsoft.NET.Test.Sdk to 17.11.1
  • SDK - Updated to Dotnet 9.0 RC1
  • SDK - Updated DotNet SDK to 9.0.100-rc.2.24474.11
  • Dependencies - Updated xunit to 2.9.2
  • Dependencies - Updated Roslynator.Analyzers to 4.12.9
  • Dependencies - Updated NSubstitute to 5.3.0
  • Dependencies - Updated Meziantou.Analyzer to 2.0.177
  • Dependencies - Updated FunFair.CodeAnalysis to 7.0.30.688
  • Dependencies - Updated FunFair.Test.Common to 6.1.236.948
  • Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.9.87
  • Dependencies - Updated Credfeto.Enumeration to 1.1.21.661

[1.10.19] - 2023-12-24

Changed

  • Dependencies - Updated xunit.analyzers to 1.8.0
  • Dependencies - Updated xunit to 2.6.4
  • Dependencies - Updated xunit.runner.visualstudio to 2.5.6

[1.10.18] - 2023-12-22

Changed

  • Dependencies - Updated Nullable.Extended.Analyzer to 1.14.6129
  • Dependencies - Updated xunit.analyzers to 1.7.0
  • Dependencies - Updated xunit to 2.6.3
  • Dependencies - Updated xunit.runner.visualstudio to 2.5.5
  • Dependencies - Updated FunFair.Test.Common to 6.1.23.276
  • Dependencies - Updated SmartAnalyzers.CSharpExtensions.Annotations to 4.2.9
  • Dependencies - Updated TeamCity.VSTest.TestAdapter to 1.0.39
  • Dependencies - Updated Philips.CodeAnalysis.MaintainabilityAnalyzers to 1.5.0
  • Dependencies - Updated Meziantou.Analyzer to 2.0.127
  • Dependencies - Updated SonarAnalyzer.CSharp to 9.16.0.82469

[1.10.17] - 2023-12-04

Changed

  • Dependencies - Updated xunit.analyzers to 1.6.0
  • Dependencies - Updated xunit to 2.6.2
  • Dependencies - Updated xunit.runner.visualstudio to 2.5.4
  • Dependencies - Updated FunFair.Test.Common to 6.1.21.247
  • Dependencies - Updated SonarAnalyzer.CSharp to 9.14.0.81108
  • Dependencies - Updated Meziantou.Analyzer to 2.0.118
  • Dependencies - Updated Roslynator.Analyzers to 4.7.0
  • Dependencies - Updated LibGit2Sharp to 0.29.0

[1.10.16] - 2023-11-16

Changed

  • Dependencies - Updated Roslynator.Analyzers to 4.6.2
  • Dependencies - Updated xunit.analyzers to 1.5.0
  • SDK - Updated DotNet SDK to 8.0.100
  • Dependencies - Updated FunFair.CodeAnalysis to 7.0.4.198
  • Dependencies - Updated Meziantou.Analyzer to 2.0.110
  • Dependencies - Updated Microsoft.VisualStudio.Threading.Analyzers to 17.8.14
  • Dependencies - Updated FunFair.Test.Common to 6.1.18.233
  • Dependencies - Updated Philips.CodeAnalysis.MaintainabilityAnalyzers to 1.4.0
  • Dependencies - Updated Credfeto.Enumeration.Source.Generation to 1.1.1.168

[1.10.15] - 2023-11-09

Changed

  • Dependencies - Updated Microsoft.NET.Test.Sdk to 17.8.0
  • Dependencies - Updated Meziantou.Analyzer to 2.0.106
  • Dependencies - Updated FunFair.Test.Common to 6.1.15.215

[1.10.14] - 2023-11-05

Changed

  • Dependencies - Updated TeamCity.VSTest.TestAdapter to 1.0.38
  • Dependencies - Updated FunFair.Test.Common to 6.1.14.194
  • Dependencies - Updated Roslynator.Analyzers to 4.6.1
  • Dependencies - Updated Philips.CodeAnalysis.MaintainabilityAnalyzers to 1.3.1
  • Dependencies - Updated Meziantou.Analyzer to 2.0.103
  • Dependencies - Updated xunit to 2.6.1
  • Dependencies - Updated LibGit2Sharp to 0.28.0

[1.10.13] - 2023-10-13

Changed

  • SDK - Updated DotNet SDK to 8.0.100-rc.2.23502.2
  • Dependencies - Updated Meziantou.Analyzer to 2.0.93
  • Dependencies - Updated FunFair.Test.Common to 6.1.12.182
  • Dependencies - Updated SonarAnalyzer.CSharp to 9.12.0.78982
  • Dependencies - Updated xunit.analyzers to 1.4.0
  • Dependencies - Updated xunit to 2.5.2
  • Dependencies - Updated xunit.runner.visualstudio to 2.5.3

[1.10.12] - 2023-09-20

Changed

  • SDK - Updated DotNet SDK to 8.0.100-rc.1.23455.8
  • Dependencies - Updated Credfeto.Enumeration.Source.Generation to 1.1.0.138
  • Dependencies - Updated FunFair.CodeAnalysis to 7.0.3.138
  • Dependencies - Updated Meziantou.Analyzer to 2.0.85
  • Dependencies - Updated Microsoft.VisualStudio.Threading.Analyzers to 17.7.30
  • Dependencies - Updated Roslynator.Analyzers to 4.5.0
  • Dependencies - Updated SonarAnalyzer.CSharp to 9.10.0.77988
  • Dependencies - Updated xunit.analyzers to 1.3.0
  • Dependencies - Updated Microsoft.NET.Test.Sdk to 17.7.2
  • Dependencies - Updated NSubstitute to 5.1.0
  • Dependencies - Updated TeamCity.VSTest.TestAdapter to 1.0.37
  • Dependencies - Updated xunit to 2.5.1
  • Dependencies - Updated xunit.runner.visualstudio to 2.5.1
  • Used ThisAssembly.AssemblyInfo to generate static version information
  • Dependencies - Updated FunFair.Test.Common to 6.1.10.156

[1.10.11] - 2023-08-08

Changed

  • SDK Updated DotNet SDK to 7.0.400

[1.10.10] - 2023-06-20

Changed

  • Dependencies - Updated SonarAnalyzer.CSharp to 9.4.0.72892

[1.10.9] - 2023-06-15

Changed

  • Dependencies - Updated Meziantou.Analyzer to 2.0.61
  • SDK - Updated DotNet SDK to 8.0.100-preview.5.23303.2

[1.10.8] - 2023-06-07

Changed

  • Dependencies - Updated SonarAnalyzer.CSharp to 9.3.0.71466
  • Dependencies - Updated Microsoft.NET.Test.Sdk to 17.6.2
  • Dependencies - Updated Meziantou.Analyzer to 2.0.60

[1.10.7] - 2023-06-02

Changed

  • Dependencies - Updated coverlet to 6.0.0
  • Dependencies - Updated Meziantou.Analyzer to 2.0.56
  • Dependencies - Updated SonarAnalyzer.CSharp to 9.2.0.71021
  • Dependencies - Updated FunFair.Test.Common to 6.1.1.49
  • Dependencies - Updated Microsoft.NET.Test.Sdk to 17.6.1

[1.10.6] - 2023-05-19

Changed

  • Dependencies - Updated SonarAnalyzer.CSharp to 9.0.0.68202
  • Dependencies - Updated FunFair.Test.Common to 6.1.0.8
  • Dependencies - Updated FunFair.CodeAnalysis to 7.0.0.18
  • Dependencies - .NET 8 Preview 3
  • SDK - Updated DotNet SDK to 8.0.100-preview.4.23260.5
  • Dependencies - Updated Meziantou.Analyzer to 2.0.52
  • Dependencies - Updated Microsoft.VisualStudio.Threading.Analyzers to 17.6.40
  • Dependencies - Updated Microsoft.NET.Test.Sdk to 17.6.0

[1.10.5] - 2023-04-25

Changed

  • Dependencies - Updated SonarAnalyzer.CSharp to 8.56.0.67649
  • Dependencies - Updated Credfeto.Enumeration.Source.Generation to 1.0.9.588
  • Dependencies - Updated FunFair.Test.Common to 6.0.30.633
  • Dependencies - Updated Roslynator.Analyzers to 4.3.0
  • Dependencies - Updated Meziantou.Analyzer to 2.0.37

[1.10.4] - 2023-04-18

Changed

  • Dependencies - Updated Meziantou.Analyzer to 2.0.34
  • SDK - Updated DotNet SDK to 7.0.203

[1.10.3] - 2023-04-13

Changed

  • Dependencies - Updated LibGit2Sharp to 0.27.2
  • Dependencies - Updated Meziantou.Analyzer to 2.0.33

[1.10.2] - 2023-04-12

Changed

  • Dependencies - Updated LibGit2Sharp to 0.27.1

[1.10.1] - 2023-04-10

Changed

  • FF-3881 - Updated DotNet SDK to 7.0.200
  • SDK - Updated DotNet SDK to 7.0.202
  • Dependencies - Updated AsyncFixer to 1.6.0
  • Dependencies - Updated Credfeto.Enumeration.Source.Generation to 1.0.7.19
  • Dependencies - Updated FunFair.CodeAnalysis to 5.9.0.1493
  • Dependencies - Updated Microsoft.VisualStudio.Threading.Analyzers to 17.5.22
  • Dependencies - Updated NSubstitute.Analyzers.CSharp to 1.0.16
  • Dependencies - Updated Philips.CodeAnalysis.DuplicateCodeAnalyzer to 1.1.7
  • Dependencies - Updated Philips.CodeAnalysis.MaintainabilityAnalyzers to 1.2.32
  • Dependencies - Updated Roslynator.Analyzers to 4.2.0
  • Dependencies - Updated SecurityCodeScan.VS2019 to 5.6.7
  • Dependencies - Updated SmartAnalyzers.CSharpExtensions.Annotations to 4.2.8
  • Dependencies - Updated SonarAnalyzer.CSharp to 8.55.0.65544
  • Dependencies - Updated xunit.analyzers to 1.1.0
  • Dependencies - Updated Microsoft.NET.Test.Sdk to 17.5.0
  • Dependencies - Updated NSubstitute to 5.0.0
  • Dependencies - Updated xunit to 2.4.2
  • Dependencies - Updated xunit.runner.visualstudio to 2.4.5
  • Dependencies - Updated FunFair.Test.Common to 6.0.26.2754
  • Dependencies - Updated Meziantou.Analyzer to 2.0.32

[1.10.0] - 2022-09-29

Added

.NET RC1 build

Changed

  • FF-3881 - Updated DotNet SDK to 6.0.401
  • Source generated Regex when building with .net 7

[1.9.1] - 2022-09-03

Added

  • All matching items in unreleased section are removed

Fixed

  • Items being removed from released if not present in unreleased

[1.9.0] - 2022-08-29

Added

  • Adding support for removing items

Changed

  • FF-1429 - Updated Meziantou.Analyzer to 1.0.698
  • FF-3881 - Updated DotNet SDK to 6.0.400

Removed

  • Removed support for running under dotnet 5.0

[1.8.3] - 2022-03-10

Changed

  • FF-1429 - Updated Microsoft.VisualStudio.Threading.Analyzers to 17.1.46
  • FF-1429 - Updated FunFair.Test.Common to 5.9.2.1676
  • FF-1429 - Updated SonarAnalyzer.CSharp to 8.36.0.43782
  • FF-1429 - Updated TeamCity.VSTest.TestAdapter to 1.0.35
  • FF-1429 - Updated SecurityCodeScan.VS2019 to 5.6.1
  • FF-1429 - Updated TeamCity.VSTest.TestAdapter to 1.0.36
  • FF-1429 - Updated SecurityCodeScan.VS2019 to 5.6.2
  • FF-1429 - Updated SmartAnalyzers.CSharpExtensions.Annotations to 4.2.2
  • FF-1429 - Updated Meziantou.Analyzer to 1.0.696
  • FF-1429 - Updated SonarAnalyzer.CSharp to 8.36.1.44192
  • FF-1429 - Updated Meziantou.Analyzer to 1.0.697
  • FF-1429 - Updated FunFair.Test.Common to 5.9.3.1695
  • FF-1429 - Updated FunFair.Test.Common to 5.9.3.1699
  • FF-3881 - Updated DotNet SDK to 6.0.201

[1.8.2] - 2022-02-17

Changed

  • FF-1429 - Updated FunFair.Test.Common to 5.9.1.1665
  • FF-1429 - Updated FunFair.CodeAnalysis to 5.8.1.1203
  • FF-1429 - Updated Microsoft.NET.Test.Sdk to 17.1.0
  • FF-1429 - Updated Meziantou.Analyzer to 1.0.695

[1.8.1] - 2022-02-09

Added

  • Additional code analysis fixes

Changed

  • FF-1429 - Updated FunFair.Test.Common to 5.7.0.1478
  • FF-1429 - Updated TeamCity.VSTest.TestAdapter to 1.0.29
  • FF-1429 - Updated FunFair.CodeAnalysis to 5.7.3.1052
  • FF-1429 - Updated SmartAnalyzers.CSharpExtensions.Annotations to 4.2.1
  • FF-1429 - Updated SonarAnalyzer.CSharp to 8.33.0.40503
  • FF-1429 - Updated TeamCity.VSTest.TestAdapter to 1.0.30
  • FF-1429 - Updated Meziantou.Analyzer to 1.0.680
  • FF-1429 - Updated SecurityCodeScan.VS2019 to 5.6.0
  • FF-1429 - Updated FunFair.Test.Common to 5.7.2.1514
  • FF-1429 - Updated Meziantou.Analyzer to 1.0.681
  • FF-3881 - Updated DotNet SDK to 6.0.101
  • FF-1429 - Updated TeamCity.VSTest.TestAdapter to 1.0.31
  • FF-1429 - Updated TeamCity.VSTest.TestAdapter to 1.0.32
  • FF-1429 - Updated Meziantou.Analyzer to 1.0.682
  • FF-1429 - Updated Meziantou.Analyzer to 1.0.683
  • FF-1429 - Updated Meziantou.Analyzer to 1.0.684
  • FF-1429 - Updated Meziantou.Analyzer to 1.0.685
  • FF-1429 - Updated Meziantou.Analyzer to 1.0.686
  • FF-1429 - Updated Meziantou.Analyzer to 1.0.687
  • FF-1429 - Updated Philips.CodeAnalysis.MaintainabilityAnalyzers to 1.2.27
  • FF-1429 - Updated Meziantou.Analyzer to 1.0.688
  • FF-1429 - Updated Philips.CodeAnalysis.DuplicateCodeAnalyzer to 1.1.5
  • FF-1429 - Updated Philips.CodeAnalysis.DuplicateCodeAnalyzer to 1.1.6
  • FF-1429 - Updated FunFair.Test.Common to 5.8.0.1567
  • FF-1429 - Updated SonarAnalyzer.CSharp to 8.34.0.42011
  • FF-1429 - Updated FunFair.Test.Common to 5.8.1.1595
  • FF-1429 - Updated NSubstitute to 4.3.0
  • FF-1429 - Updated Roslynator.Analyzers to 4.0.0
  • FF-1429 - Updated FunFair.Test.Common to 5.8.2.1611
  • FF-1429 - Updated FunFair.Test.Common to 5.8.2.1613
  • FF-1429 - Updated Roslynator.Analyzers to 4.0.2
  • FF-1429 - Updated SonarAnalyzer.CSharp to 8.35.0.42613
  • FF-1429 - Updated FunFair.Test.Common to 5.8.3.1625
  • FF-1429 - Updated TeamCity.VSTest.TestAdapter to 1.0.33
  • FF-1429 - Updated Meziantou.Analyzer to 1.0.689
  • FF-1429 - Updated Meziantou.Analyzer to 1.0.690
  • FF-1429 - Updated Meziantou.Analyzer to 1.0.692
  • FF-1429 - Updated TeamCity.VSTest.TestAdapter to 1.0.34
  • FF-1429 - Updated Meziantou.Analyzer to 1.0.693
  • FF-1429 - Updated Meziantou.Analyzer to 1.0.694
  • FF-1429 - Updated FunFair.Test.Common to 5.8.4.1638
  • FF-1429 - Updated FunFair.Test.Common to 5.8.5.1649
  • FF-1429 - Updated FunFair.CodeAnalysis to 5.8.0.1196
  • FF-1429 - Updated FunFair.Test.Common to 5.9.0.1658
  • FF-3881 - Updated DotNet SDK to 6.0.102

[1.8.0] - 2021-11-17

Changed

  • FF-1429 - Updated Microsoft.VisualStudio.Threading.Analyzers to 17.0.64
  • Initial support for dotnet 6.0

[1.7.0] - 2021-11-05

Added

  • Added ability to extract the unreleased section to the console

Removed

  • Unused packages

[1.6.1] - 2021-11-05

Changed

  • FF-1429 - Updated SonarAnalyzer.CSharp to 8.24.0.32949
  • FF-1429 - Updated Roslynator.Analyzers to 3.2.0
  • FF-1429 - Updated NuGet to 5.10.0
  • FF-1429 - Updated SonarAnalyzer.CSharp to 8.25.0.33663
  • FF-1429 - Updated SonarAnalyzer.CSharp to 8.26.0.34506
  • FF-1429 - Updated TeamCity.VSTest.TestAdapter to 1.0.26
  • FF-1429 - Updated coverlet to 3.1.0
  • FF-1429 - Updated SonarAnalyzer.CSharp to 8.27.0.35380
  • FF-1429 - Updated NuGet to 5.11.0
  • FF-1429 - Updated SonarAnalyzer.CSharp to 8.28.0.36354
  • FF-1429 - Updated Microsoft.NET.Test.Sdk to 16.11.0
  • FF-1429 - Updated Roslynator.Analyzers to 3.2.2
  • FF-1429 - Updated SonarAnalyzer.CSharp to 8.29.0.36737
  • FF-1429 - Updated TeamCity.VSTest.TestAdapter to 1.0.27
  • FF-1429 - Updated Microsoft.VisualStudio.Threading.Analyzers to 17.0.63
  • FF-1429 - Updated SonarAnalyzer.CSharp to 8.30.0.37606
  • FF-1429 - Updated Microsoft.NET.Test.Sdk to 17.0.0
  • FF-1429 - -

Removed

[1.6.0] - 2021-06-03

Fixed

  • Supporting other versions of linux with libgit2sharp

Changed

  • FF-1429 - Updated TeamCity.VSTest.TestAdapter to 1.0.25
  • FF-1429 - Updated coverlet to 3.0.3
  • FF-1429 - Updated NuGet to 5.9.1
  • FF-1429 - Updated SonarAnalyzer.CSharp to 8.23.0.32424
  • FF-1429 - Updated Microsoft.NET.Test.Sdk to 16.10.0
  • FF-1429 - Updated Microsoft.VisualStudio.Threading.Analyzers to 16.10.56

[1.5.0] - 2021-01-31

Added

  • Added ability to set date on release or to have it marked as TBD\pending

Fixed

  • Fixed bug where an entry would be added to an existing release if the heading did not exist in the [unreleased] section
  • Fixing changelog manager erroring on latest ubuntu on github actions

Changed

  • FF-1429 - Updated AsyncFixer to 1.4.0
  • FF-1429 - Updated AsyncFixer to 1.5.1
  • FF-1429 - Updated SonarAnalyzer.CSharp to 8.17.0.26580
  • FF-1429 - Updated Roslynator.Analyzers to 3.1.0

[1.4.0] - 2020-12-28

Changed

  • FF-1429 - Updated SonarAnalyzer.CSharp to 8.16.0.25740
  • Changed to use CommandLineParser library to parse command line

[1.3.2] - 2020-12-08

Fixed

  • Index of release in difference is +1 from the zero based index when comparing diffs

Changed

  • FF-1429 - Updated SonarAnalyzer.CSharp to 8.15.0.24505
  • FF-1429 - Updated Microsoft.NET.Test.Sdk to 16.8.3

[1.3.1] - 2020-11-30

Fixed

  • Fixed changelog reading/writing so it supports different line endings

[1.3.0] - 2020-11-26

Added

  • Command to create a new release from unreleased content
  • Detection of changelog if it is in the git repo

Fixed

  • Diff of whitespace at EOF is reported as error

[1.2.0] - 2020-11-21

Changed

  • Updated to .NET 5.0

[1.1.0] - 2020-10-25

Added

  • Added support for checking where changelog entries were entered

[1.0.0] - 2020-10-25

Added

  • Unit tests
  • Support for adding new entries
  • Support for extracting the changelog for a specific release
  • Support for extracting the changelog for a unreleased content

[0.0.0] - Project created