57945f725ba6570ad7f46eb34a595dfee522b408cf1b8f40f108fcada52cab59040e8cd5ff4270962063d4562a86e694dcd3e56e7dc1fe571d828c0f810248 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. # CHANGELOG
  2. ## Unreleased
  3. * Support `sendemail-validate` hook [#173](https://github.com/typicode/husky/pull/173)
  4. * Support `HUSKY_SKIP_INSTALL` environment variable for skipping git hooks installation
  5. * Drop `nvm` installed with `brew` support as it's not supported by `nvm` itself (see [creationix/nvm#important-notes](https://github.com/creationix/nvm#important-notes)), `nvm` standard installation is still supported though
  6. ## 0.14.3
  7. * Fix handle space in `PATH` [#150](https://github.com/typicode/husky/pull/114)
  8. ## 0.14.2
  9. * Fix handle space in `HOME`
  10. ## 0.14.1
  11. * Fix Git hooks install on Windows
  12. * Fix hook script when `nvm` was installed with Brew
  13. ## 0.14.0
  14. * Fix `npm@5` `Error: Cannot find module` warning when uninstalling
  15. * Drop `Node 0.12` support
  16. * Don't reload `nvm` if it's already in `PATH`
  17. * Add Git worktree support [#114](https://github.com/typicode/husky/pull/114)
  18. * Hide irrelevant `--no-verify` message for `prepare-commit-msg` [#137](https://github.com/typicode/husky/issues/137)
  19. ## 0.13.4
  20. * Add Node version to husky output
  21. ## 0.13.3
  22. * Revert `Fixes issue with OS X + brew where nvm was loaded even when npm was already present` that was introduced in `v0.13.0` as it was preventing Husky to load `nvm` in some cases [#106](https://github.com/typicode/husky/issues/106)
  23. ## 0.13.2
  24. * Fixes issue [#103](https://github.com/typicode/husky/issues/103)
  25. ## 0.13.1
  26. * Makes it easier for projects to transition from [ghooks](https://github.com/gtramontina/ghooks) by detecting ghooks installed scripts and automatically migrating them
  27. ## 0.13.0
  28. * Makes `husky` a little less verbose by default
  29. * Fixes issue with `OS X + brew` where `nvm` was loaded even when `npm` was already present
  30. * Fixes issue with Git `v1.9` on Windows
  31. * Prevents Git hooks being installed when husky is in a sub `node_modules` directory (i.e. `./node_modules/A/node_modules/husky`)
  32. ## 0.12.0
  33. * Adds Git submodule support
  34. * Adds Cygwin support
  35. * Improves edge cases support (`.git` not found and `git` not in `PATH`)
  36. * If `npm` is already present in path, doesn't load `nvm` default or `.nvmrc` version, which makes things faster in terminal. In GUI apps, the behavior is unchanged.