Skip to content

Releases: alirezanet/Husky.Net

v0.6.5

13 May 15:53
3fe3449
Compare
Choose a tag to compare

What's Changed

  • Bugfix: fatal: pathspec for paths that contain space

Full Changelog: v0.6.4...v0.6.5

v0.6.4

17 Dec 21:13
Compare
Choose a tag to compare

What's Changed

To support tools like JetBrains Clean Code, the ${staged} variable can now accept a separator character. For example, to separate the staged files with a semicolon (;), you can use the variable like ${staged:;}, and any other separator after : is valid. Additionally, it can be used along with any static arguments, such as "--include=${staged:;}".

Here's an example in task-runner.json configuration:

{
   "name": "jb cleanup",
   "group": "pre-commit",
   "command": "dotnet",
   "pathMode": "relative",
   "include": ["**/*.cs", "**/*.vb", "*.cs"],
   "args": [
      "jb",
      "cleanupcode",
      "--include=${staged:;}", 
      "solutionFile.sln"
   ]
}

Full Changelog: v0.6.3...v0.6.4

v0.6.3

16 Nov 20:52
Compare
Choose a tag to compare
  • Bugfix Sourcetree compatibility when in very specific scenarios on Windows if there were two global environment variables with the same name but different casing #96

Full Changelog: v0.6.2...v0.6.3

v0.6.2

19 Sep 18:59
Compare
Choose a tag to compare

Bugfix: Chunks tasks can't load csx files in parallel. #93

v0.6.1

02 Sep 17:02
Compare
Choose a tag to compare

What's Changed

  • handle paths to directories with whitespaces by @Tychus in #90

Full Changelog: v0.6.0...v0.6.1

v0.6.0

29 Aug 15:48
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.5.4...v0.6.0

v0.6.0-Preview4

08 Jun 04:42
Compare
Choose a tag to compare
v0.6.0-Preview4 Pre-release
Pre-release
  • Add more verbose logs in install and run commands

0.6.0-Preview1

26 Feb 21:04
Compare
Choose a tag to compare
0.6.0-Preview1 Pre-release
Pre-release

What's Changed

  • Drop .dotnet 5.0 support
  • Add dotnet 8.0 preview support

New Contributors

v0.5.4

07 Jan 13:51
Compare
Choose a tag to compare

What's Changed

  • Add .Net 7 Support

New Contributors

Full Changelog: v0.5.2...v0.5.4

v0.5.4-preview1

11 Dec 15:44
Compare
Choose a tag to compare
v0.5.4-preview1 Pre-release
Pre-release
  • Net 7.0 support