From 7c62513cabd222750fd1788a9b6aed47ecace23f Mon Sep 17 00:00:00 2001 From: jpawlowski Date: Sun, 24 Feb 2019 23:48:41 +0000 Subject: [PATCH] 42_npmjs: more consistant upgrade behaviour git-svn-id: https://svn.fhem.de/fhem/trunk@18726 2b470e98-0d58-463d-a4d8-8e2adae1ed80 --- fhem/FHEM/42_npmjs.pm | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/fhem/FHEM/42_npmjs.pm b/fhem/FHEM/42_npmjs.pm index ebf7ffb7b..4c5f0fef7 100644 --- a/fhem/FHEM/42_npmjs.pm +++ b/fhem/FHEM/42_npmjs.pm @@ -298,9 +298,8 @@ sub Set($$@) { } } - # use 'install' as default update method for global installations - # or when explicit upgrade command was given - my $installcmd = $npmglobal || $cmd eq 'upgrade' ? 'install' : 'update'; + # use 'install' as default update method + my $installcmd = 'install'; foreach my $pkgfull (@args) { next @@ -442,7 +441,7 @@ sub Set($$@) { defined( $hash->{".fhem"}{npm}{listedpackages}{dependencies} ) and scalar keys %{ $hash->{".fhem"}{npm}{listedpackages}{dependencies} } > - 1 ) + 0 ) { my $uninstall; foreach ( @@ -457,7 +456,7 @@ sub Set($$@) { unless ($uninstall); $uninstall .= $_; } - $list .= " $uninstall"; + $list .= " $uninstall" if ($uninstall); } if ( defined( $hash->{".fhem"}{npm}{outdatedpackages} ) @@ -1485,7 +1484,7 @@ sub CreateOutdatedList($$) { $l .= $colOpen . ( defined( $packages->{$package}{wanted} ) ? ( - $fhemPkg && $npmglobal + $fhemPkg ? $packages->{$package}{latest} : ( defined( $packages->{$package}{current} ) @@ -1600,7 +1599,7 @@ sub ToDay() {
  • outdated - fetch information about update state
  • -
  • update - trigger complete or selected update process (using 'npm update' command). For NPM global installations, FHEM related packages will always be upgraded to the latest major version (using 'npm install' instead of 'npm update'). Other packages will repsect semver and major upgrades will not be performed. For non-global NPM installations, FHEM packages will follow the regular NPM update behaviour. +
  • update - trigger complete or selected update process (using 'npm update' command). FHEM related packages will always be upgraded to the latest major version (using 'npm install' instead of 'npm update'). Other packages will repsect semantic versioning and major upgrades will not be performed.
  • upgrade - trigger complete or selected upgrade process (using 'npm install' command). ATTENTION! Every package will be upgraded to the latest and greatest version (using 'npm install' command instead of 'npm update'), no matter if the package maintainer has defined some incompatiblities between the current installed and latest version. If in doubt, consider to only use the update set command instead.
  • @@ -1692,7 +1691,7 @@ sub ToDay() {