-
Notifications
You must be signed in to change notification settings - Fork 52
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
Drop 2.319.x #1543
Drop 2.319.x #1543
Conversation
Hmm, looks like 2.332.x is not in great shape! |
Mean anything to anyone? cc @dwnusbaum ? |
#1507 pinned |
Yeah probably, I will take a look. Why would it not have failed in #1507 though? |
Actually no, |
I think #1512 is the problem (A GitHub action specifically filed a PR to update the 332.x line). I do not understand how that passed CI though. EDIT: I think the issue is that only the newest and oldest lines are tested in the CI build, and both With this PR, the CI build starts testing 2.332.x, so things fail. #1512 needs to be reverted. IDK if there is some way to configure updatecli to have it ignore everything besides |
So updatecli is being used for two things: core and plugins. In the case of core, it updates the weekly version, which Dependabot cannot do. That gets tested, so fine. In the case of plugins, Dependabot handles We could run updatecli only on the oldest line, though it is actually the newer lines where it is more useful. Not sure what to do besides just removing the updatecli plugin code. It does not work as nicely as Dependabot anyway. We do not really need this functionality. |
…_b_7c8fd5fde in /bom-2.332.x (jenkinsci#1512)" This reverts commit 41c4799.
Some sort of jakarta-mail problem
|
diff --git pom.xml pom.xml
index 34f706b..bdfdd67 100644
--- pom.xml
+++ pom.xml
@@ -103,6 +103,10 @@
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>mailer</artifactId>
</exclusion>
+ <exclusion>
+ <groupId>com.sun.mail</groupId>
+ <artifactId>javax.mail</artifactId>
+ </exclusion>
</exclusions>
</dependency>
<dependency> in |
And it is not until jenkinsci/mailer-plugin#183 (as yet unreleased) that |
|
That plugin is JEP-305 (in fact JEP-229) enabled, so I am not sure why it is not looking in |
This is becoming a large maintenance burden.
So many pinned plugins on this line and lots are failing due to it.
Let's drop it.
See also #1063 (comment)