Merge pull request #9868 from backstage/jhaals/scriptz

scripts: Update list-deprecations script to use new release tags
This commit is contained in:
Johan Haals
2022-03-01 10:21:35 +01:00
committed by GitHub
+1 -3
View File
@@ -57,9 +57,7 @@ class ReleaseProvider {
);
// Filter out just the releases
const releases = tagOutput
.split('\n')
.filter(l => l.startsWith('release-'));
const releases = tagOutput.split('\n').filter(l => l.startsWith('v'));
// Then find the earliest release that affected our package
for (const release of releases) {