Skip to content

Commit

Permalink
Exclude version 2.7.18 when getting metadata (#27)
Browse files Browse the repository at this point in the history
  • Loading branch information
Netyyyy authored Feb 19, 2024
1 parent dc30ed9 commit 8cb9078
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ public void run(String... args) throws Exception {
.stream()
.map(CONVERTER::convert)
.filter(Objects::nonNull)
.filter(s -> s.getSpringBootVersion().matches("3\\.\\d\\.\\d+")) // Only consider 3.x.x versions
.peek(s -> s.setSpringCloudVersion(findCompatibleSpringCloudVersion(s.getSpringBootVersion())))
.peek(s -> s.setSupportStatus(findSupportStatus(s.getSpringBootVersion())))
.peek(s -> activeSpringBootVersions.add(s.getSpringBootVersion()))
Expand Down

0 comments on commit 8cb9078

Please sign in to comment.