Skip to content

Releases: Icaruk/up-npm

4.7.0

13 Dec 01:02
Compare
Choose a tag to compare

2024-12-12

New

  • A warning is displayed when a version is locked (e.g., no ^1.2.3 or ~1.2.3).
    image

4.6.7

13 Dec 00:32
Compare
Choose a tag to compare

2024-12-13

Fixes

  • Current update count was missing [current/total]
    image

4.6.6

27 Sep 17:01
Compare
Choose a tag to compare

2024-09-27

Fixes

  • Crash while handling high concurrent load while fetching npm packages.

4.6.5

08 Aug 19:25
Compare
Choose a tag to compare

2024-08-08

Fixes

  • Incorrectly parsed version package like 12.3.4 as 1.2.3.

4.6.4

02 Aug 21:58
Compare
Choose a tag to compare

2024-08-02

Fixes

  • Incomplete package versions like 1, ^1, 1.2 or ^1.2 were crashing the program. Now missing versions are assumed to be 0.
    • 1 --> 1.0.0
    • 1.3 --> 1.3.0

4.6.3

26 Jul 22:55
Compare
Choose a tag to compare

2024-07-27

Fixes

  • The installation command was always incorrectly set to npm install.

4.6.2

06 Jul 10:09
Compare
Choose a tag to compare

2024-07-06

New

  • Package manager detection (npm, pnpm, yarn, bun) to show proper installation command final message.
  • Prompt if you want to execute installation command.
    image

4.5.0

30 Jun 16:44
Compare
Choose a tag to compare

2024-06-30

New

  • Added .npmrc _authToken support. This feature allows to fetch private packages.
    image
    At the moment there are 2 files supported:

    • (✅ supported) per-project config file (/path/to/my/project/.npmrc)
    • (✅ supported) per-user config file (~/.npmrc)
    • (❌ unsupported) global config file ($PREFIX/etc/npmrc)
    • (❌ unsupported) npm builtin config file (/path/to/npm/npmrc)

4.4.0

07 Jun 19:23
Compare
Choose a tag to compare

2024-06-07

New

  • Added new flag --update-patches which automatically updates patch versions without confirming.

4.3.1

29 Feb 19:39
Compare
Choose a tag to compare

2024-02-29

Fixes

  • Repositories without repository.url in package.json no longer crashes when selecting "Show changes".