Skip to content
Snippets Groups Projects
Unverified Commit 4ccbc20b authored by Rhys Arkins's avatar Rhys Arkins Committed by GitHub
Browse files

fix: match current version (#2135)

fix: match current version
parent fbb5b3fe
No related branches found
No related tags found
No related merge requests found
...@@ -9,7 +9,14 @@ module.exports = { ...@@ -9,7 +9,14 @@ module.exports = {
function applyPackageRules(inputConfig) { function applyPackageRules(inputConfig) {
let config = { ...inputConfig }; let config = { ...inputConfig };
const { versionScheme, packageFile, depType, depName, fromVersion } = config; const {
versionScheme,
packageFile,
depType,
depName,
currentValue,
fromVersion,
} = config;
const packageRules = config.packageRules || []; const packageRules = config.packageRules || [];
logger.trace( logger.trace(
{ depName, packageRules }, { depName, packageRules },
...@@ -94,9 +101,12 @@ function applyPackageRules(inputConfig) { ...@@ -94,9 +101,12 @@ function applyPackageRules(inputConfig) {
positiveMatch = positiveMatch || !isMatch; positiveMatch = positiveMatch || !isMatch;
} }
if (matchCurrentVersion) { if (matchCurrentVersion) {
if (fromVersion) { const { matches, isVersion } = versioning(versionScheme);
const { matches } = versioning(versionScheme); const compareVersion = isVersion(currentValue)
const isMatch = matches(fromVersion, matchCurrentVersion); ? currentValue // it's a version so we can match against it
: fromVersion; // need to match against this fromVersion, if available
if (compareVersion) {
const isMatch = matches(compareVersion, matchCurrentVersion);
positiveMatch = positiveMatch || isMatch; positiveMatch = positiveMatch || isMatch;
negativeMatch = negativeMatch || !isMatch; negativeMatch = negativeMatch || !isMatch;
} else { } else {
......
...@@ -18,12 +18,12 @@ function flattenUpdates(config, packageFiles) { ...@@ -18,12 +18,12 @@ function flattenUpdates(config, packageFiles) {
const packageFileConfig = mergeChildConfig(managerConfig, packageFile); const packageFileConfig = mergeChildConfig(managerConfig, packageFile);
for (const dep of packageFile.deps) { for (const dep of packageFile.deps) {
if (dep.updates.length) { if (dep.updates.length) {
let depConfig = mergeChildConfig(packageFileConfig, dep); const depConfig = mergeChildConfig(packageFileConfig, dep);
delete depConfig.deps; delete depConfig.deps;
depConfig = applyPackageRules(depConfig);
for (const update of dep.updates) { for (const update of dep.updates) {
let updateConfig = mergeChildConfig(depConfig, update); let updateConfig = mergeChildConfig(depConfig, update);
delete updateConfig.updates; delete updateConfig.updates;
updateConfig = applyPackageRules(updateConfig);
// apply major/minor/patch/pin/digest // apply major/minor/patch/pin/digest
updateConfig = mergeChildConfig( updateConfig = mergeChildConfig(
updateConfig, updateConfig,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment