Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
renovate
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
GitHub Mirror
Renovate Bot
renovate
Commits
d88f6a4b
Unverified
Commit
d88f6a4b
authored
8 months ago
by
Sergei Zharinov
Committed by
GitHub
8 months ago
Browse files
Options
Downloads
Patches
Plain Diff
refactor: Lookup filtering of unstable releases (#30054)
parent
3e3bb637
No related branches found
Branches containing commit
Tags
35.39.0
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
lib/workers/repository/process/lookup/filter.spec.ts
+51
-27
51 additions, 27 deletions
lib/workers/repository/process/lookup/filter.spec.ts
lib/workers/repository/process/lookup/filter.ts
+19
-11
19 additions, 11 deletions
lib/workers/repository/process/lookup/filter.ts
with
70 additions
and
38 deletions
lib/workers/repository/process/lookup/filter.spec.ts
+
51
−
27
View file @
d88f6a4b
import
{
partial
}
from
'
../../../../../test/util
'
;
import
type
{
Release
}
from
'
../../../../modules/datasource/types
'
;
import
*
as
allVersioning
from
'
../../../../modules/versioning
'
;
import
{
filterVersions
}
from
'
./filter
'
;
import
type
{
FilterConfig
}
from
'
./types
'
;
const
versioning
=
allVersioning
.
get
(
'
semver
'
);
const
releases
=
[
{
version
:
'
1.0.1
'
,
releaseTimestamp
:
'
2021-01-01T00:00:01.000Z
'
,
},
{
version
:
'
1.2.0
'
,
releaseTimestamp
:
'
2021-01-03T00:00:00.000Z
'
,
},
{
version
:
'
2.0.0
'
,
releaseTimestamp
:
'
2021-01-05T00:00:00.000Z
'
,
},
{
version
:
'
2.1.0
'
,
releaseTimestamp
:
'
2021-01-07T00:00:00.000Z
'
,
},
// for coverage
{
version
:
'
invalid.version
'
,
releaseTimestamp
:
'
2021-01-07T00:00:00.000Z
'
,
},
];
describe
(
'
workers/repository/process/lookup/filter
'
,
()
=>
{
describe
(
'
.filterVersions()
'
,
()
=>
{
it
(
'
should filter versions allowed by semver syntax when allowedVersions is not valid version, range or pypi syntax
'
,
()
=>
{
const
releases
=
[
{
version
:
'
1.0.1
'
,
releaseTimestamp
:
'
2021-01-01T00:00:01.000Z
'
,
},
{
version
:
'
1.2.0
'
,
releaseTimestamp
:
'
2021-01-03T00:00:00.000Z
'
,
},
{
version
:
'
2.0.0
'
,
releaseTimestamp
:
'
2021-01-05T00:00:00.000Z
'
,
},
{
version
:
'
2.1.0
'
,
releaseTimestamp
:
'
2021-01-07T00:00:00.000Z
'
,
},
// for coverage
{
version
:
'
invalid.version
'
,
releaseTimestamp
:
'
2021-01-07T00:00:00.000Z
'
,
},
]
satisfies
Release
[];
const
config
=
partial
<
FilterConfig
>
({
ignoreUnstable
:
false
,
ignoreDeprecated
:
false
,
...
...
@@ -41,9 +42,6 @@ describe('workers/repository/process/lookup/filter', () => {
const
currentVersion
=
'
1.0.0
'
;
const
latestVersion
=
'
2.0.0
'
;
jest
.
spyOn
(
versioning
,
'
isVersion
'
).
mockReturnValue
(
true
);
jest
.
spyOn
(
versioning
,
'
isGreaterThan
'
).
mockReturnValue
(
true
);
const
filteredVersions
=
filterVersions
(
config
,
currentVersion
,
...
...
@@ -57,5 +55,31 @@ describe('workers/repository/process/lookup/filter', () => {
{
version
:
'
2.1.0
'
,
releaseTimestamp
:
'
2021-01-07T00:00:00.000Z
'
},
]);
});
it
(
'
allows unstable major upgrades
'
,
()
=>
{
const
nodeVersioning
=
allVersioning
.
get
(
'
node
'
);
const
releases
=
[
{
version
:
'
1.0.0-alpha
'
},
{
version
:
'
1.2.3-beta
'
},
]
satisfies
Release
[];
const
config
=
partial
<
FilterConfig
>
({
ignoreUnstable
:
true
,
ignoreDeprecated
:
true
,
});
const
currentVersion
=
'
1.0.0-alpha
'
;
const
latestVersion
=
'
1.2.3-beta
'
;
const
filteredVersions
=
filterVersions
(
config
,
currentVersion
,
latestVersion
,
releases
,
nodeVersioning
,
);
expect
(
filteredVersions
).
toEqual
([{
version
:
'
1.2.3-beta
'
}]);
});
});
});
This diff is collapsed.
Click to expand it.
lib/workers/repository/process/lookup/filter.ts
+
19
−
11
View file @
d88f6a4b
...
...
@@ -78,7 +78,11 @@ export function filterVersions(
);
filteredReleases
=
filteredReleases
.
filter
((
r
)
=>
semver
.
satisfies
(
semver
.
valid
(
r
.
version
)
?
r
.
version
:
semver
.
coerce
(
r
.
version
)
!
,
semver
.
valid
(
r
.
version
)
?
r
.
version
:
/* istanbul ignore next: not reachable, but it's safer to preserve it */
semver
.
coerce
(
r
.
version
,
)
!
,
allowedVersions
,
),
);
...
...
@@ -126,24 +130,28 @@ export function filterVersions(
return
filteredReleases
.
filter
((
r
)
=>
isReleaseStable
(
r
,
versioning
));
}
// if current is unstable then allow unstable in the current major only
// Allow unstable only in current major
const
currentMajor
=
versioning
.
getMajor
(
currentVersion
);
const
currentMinor
=
versioning
.
getMinor
(
currentVersion
);
const
currentPatch
=
versioning
.
getPatch
(
currentVersion
);
return
filteredReleases
.
filter
((
r
)
=>
{
if
(
isReleaseStable
(
r
,
versioning
))
{
return
true
;
}
if
(
versioning
.
getMajor
(
r
.
version
)
!==
versioning
.
getMajor
(
currentVersion
)
)
{
const
major
=
versioning
.
getMajor
(
r
.
version
);
if
(
major
!==
currentMajor
)
{
return
false
;
}
// istanbul ignore if: test passes without touching this
if
(
versioning
.
allowUnstableMajorUpgrades
)
{
return
true
;
}
return
(
versioning
.
getMinor
(
r
.
version
)
===
versioning
.
getMinor
(
currentVersion
)
&&
versioning
.
getPatch
(
r
.
version
)
===
versioning
.
getPatch
(
currentVersion
)
);
const
minor
=
versioning
.
getMinor
(
r
.
version
);
const
patch
=
versioning
.
getPatch
(
r
.
version
);
return
minor
===
currentMinor
&&
patch
===
currentPatch
;
});
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment