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

fix(poetry): improve versioning resilience (#9911)

parent 8445c425
No related branches found
No related tags found
No related merge requests found
...@@ -59,7 +59,7 @@ export function getNewValue({ ...@@ -59,7 +59,7 @@ export function getNewValue({
logger.warn('Empty currentValue: ' + currentValue); logger.warn('Empty currentValue: ' + currentValue);
return currentValue; return currentValue;
} }
if (rangeStrategy === 'replace') { if (rangeStrategy === 'auto' || rangeStrategy === 'replace') {
if (satisfies(newVersion, currentValue)) { if (satisfies(newVersion, currentValue)) {
return currentValue; return currentValue;
} }
......
...@@ -80,18 +80,18 @@ const isGreaterThan = (a: string, b: string): boolean => ...@@ -80,18 +80,18 @@ const isGreaterThan = (a: string, b: string): boolean =>
pep440.isGreaterThan(a, b); pep440.isGreaterThan(a, b);
const isLessThanRange = (version: string, range: string): boolean => const isLessThanRange = (version: string, range: string): boolean =>
npm.isVersion(padZeroes(version)) &&
npm.isLessThanRange(padZeroes(version), poetry2npm(range)); npm.isLessThanRange(padZeroes(version), poetry2npm(range));
export const isValid = (input: string): string | boolean => export const isValid = (input: string): string | boolean =>
npm.isValid(poetry2npm(input)); npm.isValid(poetry2npm(input));
const isStable = (version: string): boolean => const isStable = (version: string): boolean => pep440.isStable(version);
version && npm.isStable(padZeroes(version));
const isVersion = (input: string): string | boolean => const isVersion = (input: string): string | boolean => pep440.isVersion(input);
npm.isVersion(padZeroes(input));
const matches = (version: string, range: string): boolean => const matches = (version: string, range: string): boolean =>
npm.isVersion(padZeroes(version)) &&
npm.matches(padZeroes(version), poetry2npm(range)); npm.matches(padZeroes(version), poetry2npm(range));
const getSatisfyingVersion = (versions: string[], range: string): string => const getSatisfyingVersion = (versions: string[], range: string): string =>
......
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