Releases: alirezanet/Husky.Net
Releases · alirezanet/Husky.Net
v0.7.2
v0.7.1
What's Changed
- Bugfix: hidden path issue on Mac by @deler-aziz in #118
New Contributors
- @deler-aziz made their first contribution in #118
Full Changelog: v0.7.0...v0.7.1
v0.7.0
What's Changed
- Introduced
FilteringRule
, allowing you to use Include and Exclude filters without relying on variables like $staged. - Add task-runner.json schema to enable IDE integration while working with and editing tasks.
Make sure to add this line to your task-runner.json
file if you already have one:
"$schema": "https://alirezanet.github.io/Husky.Net/schema.json",
Full Changelog: v0.6.5...v0.7.0
v0.6.5
v0.6.4
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
- 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
v0.6.1
What's Changed
Full Changelog: v0.6.0...v0.6.1
v0.6.0
What's Changed
- Add net8.0 target by @WeihanLi in #65
- Aliasadidev add support for custom args by @aliasadidev in #70
- docs: Fix for task-runner.md by @Abdulrhman5 in #74
- build(deps): bump vite from 2.9.15 to 2.9.16 by @dependabot in #76
- Auto dependencies upgrade by bot. by @NugetNinja in #78
- feat(install): git submodule handling by @Tychus in #81
- docs: add git submodule handling documentation by @Tychus in #82
New Contributors
- @WeihanLi made their first contribution in #65
- @aliasadidev made their first contribution in #70
- @Abdulrhman5 made their first contribution in #74
- @NugetNinja made their first contribution in #78
- @Tychus made their first contribution in #81
Full Changelog: v0.5.4...v0.6.0
v0.6.0-Preview4
- Add more verbose logs in install and run commands