-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop/maintenance' into develop/Gendarme
- Loading branch information
Showing
3 changed files
with
47 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,20 @@ | ||
# 5.23.0.39 | ||
* Support for .net7.0 | ||
* Support only Fake ≥ 5.23.0 | ||
|
||
# 5.19.1.28 | ||
* [Dependency change] Uses Fake >= 5.19.1 rather than >= 5.18.1 | ||
* [Dependency change] Uses Fake ≥ 5.19.1 rather than ≥ 5.18.1 | ||
* [API change] The Fake`ToolType` of the `Params` object defaults to `GlobalTool` with tool name `gendarme` : see https://www.nuget.org/packages/altcode.gendarme-tool for your global tool. | ||
|
||
# 5.18.1.24 | ||
* [Dependency change] Uses Fake >= 5.18.1 rather than >= 5.9.3 | ||
* [Dependency change] Uses Fake ≥ 5.18.1 rather than ≥ 5.9.3 | ||
* [API change] Update to add a Fake `ToolType` to the `Params` object. If you use the `Create` method, this should be transparent to you, as it defaults to `FullFramework`. | ||
* [API change] In `Params.Create`, use the updated Fake Process APIs to look for Gendarme, which means it will look in PATH first, then locally, and default the `ToolPath` to just plain `gendarme` if nothing is found. | ||
|
||
# 5.9.3.10 | ||
* [BUGFIX] As "--limit 0" means "report nothing" not "report all", make zero limit emit nothing to the command line | ||
* [Enhancement] `FailBuildOnDefect` parameter, default `true`, to determine if defect detection will fail the build. | ||
* **NOTE** whether --limit is set > 0 or omitted, if there are > 0 defects reported Gendarme exits with return code 1. It limit is set zero, or there are no defects against the rules engaged, then it returns 0. Failing the build on >= N defects for N > 0 does not come for free, but would require parsing one form of output or another, and no form of output is guaranteed -- they can all be switched off. | ||
* **NOTE** whether --limit is set > 0 or omitted, if there are > 0 defects reported Gendarme exits with return code 1. It limit is set zero, or there are no defects against the rules engaged, then it returns 0. Failing the build on ≥ N defects for N > 0 does not come for free, but would require parsing one form of output or another, and no form of output is guaranteed -- they can all be switched off. | ||
|
||
# 5.9.3.7 | ||
* [NEW PACKAGE] `AltCode.Fake.DotNet.Gendarme` containing Gendarme task helper types for FAKE scripts (v5.9.3 or later) : see Wiki entry [The `AltCode.Fake.DotNet.Gendarme` package](https://github.com/SteveGilham/altcode.Fake/wiki/The-AltCode.Fake.DotNet.Gendarme-package) | ||
* [NEW PACKAGE] `AltCode.Fake.DotNet.Gendarme` containing Gendarme task helper types for FAKE scripts (v ≥ 5.9.3) : see Wiki entry [The `AltCode.Fake.DotNet.Gendarme` package](https://github.com/SteveGilham/altcode.Fake/wiki/The-AltCode.Fake.DotNet.Gendarme-package) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters