-
Notifications
You must be signed in to change notification settings - Fork 54
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Dropping 2.332.x & 2.346.x #1668
Conversation
@@ -7,9 +7,6 @@ updates: | |||
- "jglick" | |||
schedule: | |||
interval: "daily" | |||
ignore: | |||
# TODO until 2.332.x & 2.346.x dropped |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Was obsolete as of #1642 anyway.
@@ -7,8 +7,7 @@ assert artifactMap['junit:junit'] == project.artifactMap['junit:junit'] | |||
def managedPluginDeps = managedDeps.collect {stripAllButGA(it)}.grep { ga -> | |||
def art = artifactMap[ga] | |||
if (art == null) { | |||
if (ga.contains('.plugins') // TODO without an Artifact, we have no reliable way of checking whether it is actually a plugin | |||
&& !(ga == 'io.jenkins.plugins:ionicons-api' && settings.activeProfiles.any {it ==~ /^2[.](332)[.]x$/})) { // TODO: Remove once 2.332.x is no longer part of the BOM (or if MNG-5600 is fixed and we can exclude this dependency in the BOM for old LTS lines) | |||
if (ga.contains('.plugins')) { // TODO without an Artifact, we have no reliable way of checking whether it is actually a plugin |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks very good to me
#1667 (comment) and in many other cases plugins will be 2.361.x+, so it is cumbersome to update them past that switch (jenkinsci/plugin-pom#478), and older BOM releases will become increasingly quiescent anyway. Will probably also unblock #1647 though I am not attempting that here.