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.
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- Dependencies - Updated SonarAnalyzer.CSharp to 10.31.0.145097
- Dependencies - Updated LibGit2Sharp to 0.32.0
- Dependencies - Updated Meziantou.Analyzer to 3.0.138
- 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
- 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)
- Dead code left behind by the ChangeLogDocument refactor (unused Throws helpers, regexes, extensions, net7 conditional)
- 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 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
- 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 ChangeLogSections helper class; each language now specifies its own section order inline, accessed only through the language object
- 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)
- 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
- 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
- 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
- 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
- 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
- Dependencies - Updated Credfeto.Enumeration to 1.2.127.1366
- 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
- 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
- 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
- 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
- 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
- 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
- Dependencies - Updated Credfeto.Enumeration to 1.2.122.1340
- Dependencies - Updated Meziantou.Analyzer to 2.0.211
- 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
- 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
- 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
- Dependencies - Updated Credfeto.Enumeration to 1.2.119.1263
- 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
- Dependencies - Updated Credfeto.Enumeration to 1.2.118.1259
- 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
- Dependencies - Updated Credfeto.Enumeration to 1.2.117.1255
- 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
- Dependencies - Updated FunFair.Test.Common to 6.1.270.1471
- Dependencies - Updated Credfeto.Enumeration to 1.2.116.1247
- Dependencies - Updated FunFair.CodeAnalysis to 7.1.2.1228
- Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.103.663
- Dependencies - Updated Credfeto.Enumeration to 1.2.115.1242
- 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
- Dependencies - Updated Credfeto.Enumeration to 1.2.114.1235
- Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.101.652
- Dependencies - Updated Meziantou.Analyzer to 2.0.202
- Dependencies - Updated Credfeto.Enumeration to 1.2.113.1231
- Dependencies - Updated Credfeto.Enumeration to 1.2.112.1229
- Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.100.650
- Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.99.647
- SDK - Updated DotNet SDK to 9.0.301
- Dependencies - Updated Credfeto.Enumeration to 1.2.111.1223
- Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.98.642
- Dependencies - Updated Credfeto.Enumeration to 1.2.110.1215
- Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.97.634
- Dependencies - Updated Credfeto.Enumeration to 1.2.109.1213
- Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.96.632
- Dependencies - Updated Credfeto.Enumeration to 1.2.108.1210
- Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.95.630
- Dependencies - Updated Credfeto.Enumeration to 1.2.107.1208
- Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.94.628
- Dependencies - Updated Credfeto.Enumeration to 1.2.106.1206
- 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
- Dependencies - Updated Credfeto.Enumeration to 1.2.105.1202
- Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.92.617
- Dependencies - Updated SonarAnalyzer.CSharp to 10.11.0.117924
- Dependencies - Updated Credfeto.Enumeration to 1.2.104.1195
- Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.91.615
- Dependencies - Updated Credfeto.Enumeration to 1.2.103.1193
- Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.90.612
- Dependencies - Updated Credfeto.Enumeration to 1.2.102.1190
- Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.89.610
- Dependencies - Updated Credfeto.Enumeration to 1.2.101.1187
- Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.88.603
- Dependencies - Updated Credfeto.Enumeration to 1.2.100.1181
- Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.87.601
- Dependencies - Updated Credfeto.Enumeration to 1.2.99.1179
- Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.86.599
- Dependencies - Updated Credfeto.Enumeration to 1.2.98.1177
- Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.85.597
- Dependencies - Updated Credfeto.Enumeration to 1.2.97.1173
- Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.84.593
- Dependencies - Updated Credfeto.Enumeration to 1.2.96.1171
- Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.83.591
- Dependencies - Updated Credfeto.Enumeration to 1.2.95.1168
- Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.82.588
- Dependencies - Updated Credfeto.Enumeration to 1.2.94.1165
- Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.81.585
- Dependencies - Updated Credfeto.Enumeration to 1.2.93.1163
- Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.80.583
- Dependencies - Updated Credfeto.Enumeration to 1.2.92.1161
- Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.79.581
- Dependencies - Updated Credfeto.Enumeration to 1.2.91.1159
- Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.78.579
- Dependencies - Updated Credfeto.Enumeration to 1.2.90.1157
- Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.77.577
- Dependencies - Updated Credfeto.Enumeration to 1.2.89.1151
- Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.76.571
- Dependencies - Updated Credfeto.Enumeration to 1.2.88.1149
- Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.75.564
- Dependencies - Updated Credfeto.Enumeration to 1.2.87.1134
- Dependencies - Updated SonarAnalyzer.CSharp to 10.10.0.116381
- Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.74.557
- Dependencies - Updated Credfeto.Enumeration to 1.2.86.1132
- Dependencies - Updated Credfeto.Enumeration to 1.2.85.1130
- Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.73.555
- Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.72.553
- Dependencies - Updated Credfeto.Enumeration to 1.2.84.1127
- Dependencies - Updated Microsoft.Sbom.Targets to 4.0.3
- Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.71.550
- Dependencies - Updated Credfeto.Enumeration to 1.2.83.1123
- Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.70.545
- 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
- Dependencies - Updated Credfeto.Enumeration to 1.2.81.1087
- Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.68.513
- Dependencies - Updated Credfeto.Enumeration to 1.2.80.1084
- Dependencies - Updated Meziantou.Analyzer to 2.0.199
- Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.67.507
- 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
- Dependencies - Updated Credfeto.Enumeration to 1.2.78.1065
- Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.65.495
- Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.64.491
- Dependencies - Updated CSharpier.MSBuild to 1.0.0
- Dependencies - Updated Credfeto.Enumeration to 1.2.77.1054
- Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.63.485
- Dependencies - Updated Credfeto.Enumeration to 1.2.76.1049
- Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.62.480
- 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
- 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
- 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
- Dependencies - Updated Credfeto.Enumeration to 1.2.72.1035
- Dependencies - Updated Meziantou.Analyzer to 2.0.196
- Dependencies - Updated FunFair.Test.Common to 6.1.266.1250
- Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.58.459
- 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
- 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
- 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
- Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.52.332
- 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
- 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
- Dependencies - Updated Credfeto.Enumeration to 1.2.64.889
- Dependencies - Updated Credfeto.Enumeration to 1.2.63.887
- Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.50.312
- 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
- Dependencies - Updated Credfeto.Enumeration to 1.2.61.881
- Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.48.307
- 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
- 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
- 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
- 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
- Dependencies - Updated Credfeto.Enumeration to 1.2.55.854
- Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.43.281
- 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
- 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
- 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
- Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.41.250
- Dependencies - Updated Credfeto.Enumeration to 1.2.52.820
- Dependencies - Updated Meziantou.Analyzer to 2.0.185
- Dependencies - Updated xunit to 2.9.3
- Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.40.246
- Dependencies - Updated Credfeto.Enumeration to 1.2.51.818
- 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
- Dependencies - Updated Credfeto.Enumeration to 1.2.50.814
- Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.38.239
- Dependencies - Updated Credfeto.Enumeration to 1.2.49.812
- Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.37.237
- Dependencies - Updated Credfeto.Enumeration to 1.2.48.810
- Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.36.235
- Dependencies - Updated Credfeto.Enumeration to 1.2.47.806
- Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.35.231
- Dependencies - Updated Credfeto.Enumeration to 1.2.46.804
- 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
- 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
- Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.31.198
- Dependencies - Updated Credfeto.Enumeration to 1.2.42.770
- Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.30.194
- Dependencies - Updated Credfeto.Enumeration to 1.2.41.765
- Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.29.192
- Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.28.176
- SDK - Updated DotNet SDK to 9.0.101
- Dependencies - Updated Credfeto.Enumeration to 1.2.40.746
- 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
- Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.26.172
- Dependencies - Updated Credfeto.Enumeration to 1.2.38.742
- Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.25.170
- Dependencies - Updated Credfeto.Enumeration to 1.2.37.740
- Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.24.168
- Dependencies - Updated Credfeto.Enumeration to 1.2.36.738
- Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.23.166
- Dependencies - Updated Credfeto.Enumeration to 1.2.35.736
- Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.22.164
- Dependencies - Updated Credfeto.Enumeration to 1.2.34.734
- Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.21.162
- Dependencies - Updated Credfeto.Enumeration to 1.2.33.729
- Dependencies - Updated Meziantou.Analyzer to 2.0.182
- Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.20.155
- Dependencies - Updated SonarAnalyzer.CSharp to 10.3.0.106239
- Dependencies - Updated Credfeto.Enumeration to 1.2.32.723
- Dependencies - Updated Meziantou.Analyzer to 2.0.181
- Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.19.151
- Dependencies - Updated Credfeto.Enumeration to 1.2.31.720
- Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.18.148
- Dependencies - Updated Credfeto.Enumeration to 1.2.30.718
- Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.17.146
- Dependencies - Updated Credfeto.Enumeration to 1.2.29.716
- Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.16.144
- Dependencies - Updated Credfeto.Enumeration to 1.2.28.714
- Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.15.141
- Dependencies - Updated Credfeto.Enumeration to 1.1.26.710
- Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.14.137
- Dependencies - Updated Credfeto.Enumeration to 1.1.25.705
- Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.13.135
- 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
- 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
- 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
- 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
- Dependencies - Updated xunit.analyzers to 1.8.0
- Dependencies - Updated xunit to 2.6.4
- Dependencies - Updated xunit.runner.visualstudio to 2.5.6
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- SDK Updated DotNet SDK to 7.0.400
- Dependencies - Updated SonarAnalyzer.CSharp to 9.4.0.72892
- Dependencies - Updated Meziantou.Analyzer to 2.0.61
- SDK - Updated DotNet SDK to 8.0.100-preview.5.23303.2
- 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
- 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
- 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
- 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
- Dependencies - Updated Meziantou.Analyzer to 2.0.34
- SDK - Updated DotNet SDK to 7.0.203
- Dependencies - Updated LibGit2Sharp to 0.27.2
- Dependencies - Updated Meziantou.Analyzer to 2.0.33
- Dependencies - Updated LibGit2Sharp to 0.27.1
- 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
.NET RC1 build
- FF-3881 - Updated DotNet SDK to 6.0.401
- Source generated Regex when building with .net 7
- All matching items in unreleased section are removed
- Items being removed from released if not present in unreleased
- Adding support for removing items
- FF-1429 - Updated Meziantou.Analyzer to 1.0.698
- FF-3881 - Updated DotNet SDK to 6.0.400
- Removed support for running under dotnet 5.0
- 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
- 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
- Additional code analysis fixes
- 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
- FF-1429 - Updated Microsoft.VisualStudio.Threading.Analyzers to 17.0.64
- Initial support for dotnet 6.0
- Added ability to extract the unreleased section to the console
- Unused packages
- 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 - -
- Supporting other versions of linux with libgit2sharp
- 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
- Added ability to set date on release or to have it marked as TBD\pending
- 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
- 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
- FF-1429 - Updated SonarAnalyzer.CSharp to 8.16.0.25740
- Changed to use CommandLineParser library to parse command line
- Index of release in difference is +1 from the zero based index when comparing diffs
- FF-1429 - Updated SonarAnalyzer.CSharp to 8.15.0.24505
- FF-1429 - Updated Microsoft.NET.Test.Sdk to 16.8.3
- Fixed changelog reading/writing so it supports different line endings
- Command to create a new release from unreleased content
- Detection of changelog if it is in the git repo
- Diff of whitespace at EOF is reported as error
- Updated to .NET 5.0
- Added support for checking where changelog entries were entered
- 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