Uploaded image for project: 'Jenkins'
  1. Jenkins
  2. JENKINS-69925

No more trend chart since 5.2.0

XMLWordPrintable

      After upgrading from 5.1.2 to 5.2.0, jobs no longer show dependency check trends.

      From a quick glance an the code, [JENKINS-67870] Add project action Latest Dependency-Check might be the culprit:

          @Override
          public Collection<? extends Action> getProjectActions() {
              if (!run.getActions(ResultProjectAction.class).isEmpty()) {
                  // someone already added one
                  return Collections.emptySet();
              }
              return Collections.singleton(new ResultProjectAction(run.getParent()));
          }
      

      This probably should return JobAction + ResultProjectAction (the former was removed by JENKINS-67870).

            nfalco Nikolas Falco
            jkreileder Jürgen Kreileder
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

              Created:
              Updated:
              Resolved: