Skip to content

Releases: Icaruk/up-npm

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".

4.3.0

21 Feb 21:26
Compare
Choose a tag to compare

2024-02-21

New

  • Show count of locked dependencies.
    image
  • From 4.3.0, a message will be shown when a new version is available.
    image

Fixes

  • Locked dependencies now are pre-filtered and won't show on summary table.

4.2.1

18 Feb 23:25
Compare
Choose a tag to compare

2024-02-19

Fixes

  • devDependencies were not being properly counted.
    • Projects with zero dependencies but one or more devDependencies could not detect updates.
  • Summary table now aligns version text to right
    • Before
      image
    • After
      image

4.2.0

17 Feb 23:58
Compare
Choose a tag to compare

2024-02-18

New

  • "Show changes" action now tries to get the /releases page from github.
    • If not found, tries to get CHANGELOG.md.
    • If not found, fallbacks to homepage.