Skip to content

Releases: jorgebucaran/nvm.fish

2.2.14

28 Apr 13:17
2.2.14
b8edb1e
Compare
Choose a tag to compare
  • Invoke curl without using user's ~/.curlrc config (#223, #224) by @bcspragu.
    • The idea is that a ~/.curlrc can contain options that change the output, like -w, which can cause downstream tooling (like tar) to fail. In this case, we want curl to behave consistently regardless of how the user has configured curl.

2.2.13

30 Apr 07:33
2.2.13
c69e5d1
Compare
Choose a tag to compare
  • Spice up docs with sass & tweaks.
  • Replace $HOME with ~ via Fish for compatibility (avoids errors when activating older Node versions).
  • Update nvm --help messages and autocomplete help.

2.2.12

30 Apr 07:31
2.2.12
8e3bc05
Compare
Choose a tag to compare
  • Change $nvm_data scope back to global (#190).
  • Refactor $nvm_mirror outside event handlers.

2.2.11

22 Jun 16:27
2.2.11
9db8eaf
Compare
Choose a tag to compare
  • Faster _nvm_find_up via string builtin by (#188).
  • Introduce nvm_default_packages by @kallja (#179). ❤️

2.2.10

05 Jun 16:34
2.2.10
99ba58b
Compare
Choose a tag to compare
  • Use --silent (#186) to nvm use nvm_default_version.

2.2.9

31 May 21:09
2.2.9
5b63e05
Compare
Choose a tag to compare
  • Create $nvm_data if nonexistent on index update (#185).

2.2.8

31 May 17:04
2.2.8
74c2201
Compare
Choose a tag to compare
  • Don't complete files, so that nvm may not be followed by a filename.
  • Add new --silent option flag to suppress standard output (#186).

Thank you @lydell and @edouard-lopez for their feedback.

2.2.7

16 Mar 19:31
2.2.7
e4e603a
Compare
Choose a tag to compare
  • Correctly print version in nvm install or nvm use error (#176).
  • Fix "unvailable" typo in _nvm_index_update by @eugenetriguba (#172).

2.2.6

18 Sep 06:20
2.2.6
e844ef5
Compare
Choose a tag to compare
  • Download Node distribution index before processing it (#154).
    • Should fix curl's failed to write body error before it's finished writing the whole page into the processing step.

2.2.5

03 May 04:31
2.2.5
e944905
Compare
Choose a tag to compare
  • Introduce new nvm_arch variable (#156).
    • This lets you override the binary architecture when downloading unofficially binaries for systems compiled with certain libraries, e.g., musl instead of libc on Alpine.
  • Use darwin-arm64 binary for Node >= 16 (#158, #159).
    • Node.js 16 is the first release to ship prebuilt binaries for Apple Silicon.
  • Document $nvm_mirror (#157).