Branch: refs/heads/pipeline-support
  Home:   https://github.com/jenkinsci/codedx-plugin
  Commit: 61e8edc4d26688ea5f98203ccf4902eabcb12b8a
      
https://github.com/jenkinsci/codedx-plugin/commit/61e8edc4d26688ea5f98203ccf4902eabcb12b8a
  Author: Tyler Camp <tylermatthewc...@gmail.com>
  Date:   2020-04-02 (Thu, 02 Apr 2020)

  Changed paths:
    M pom.xml
    M src/main/java/org/jenkinsci/plugins/codedx/CodeDxBuildAction.java
    M src/main/java/org/jenkinsci/plugins/codedx/CodeDxChartBuilder.java
    M src/main/java/org/jenkinsci/plugins/codedx/CodeDxPublisher.java
    M src/main/java/org/jenkinsci/plugins/codedx/CodeDxResult.java

  Log Message:
  -----------
  WIP changes for pipelines compatibility

Basic implementation of `SimpleBuildStep` on `CodeDxPublisher` for 
compatibility with pipelines, update dependencies appropriately


  Commit: 78a2ee8679378aaac5f8ec12fcc1b155cda9de41
      
https://github.com/jenkinsci/codedx-plugin/commit/78a2ee8679378aaac5f8ec12fcc1b155cda9de41
  Author: Tyler Camp <tylermatthewc...@gmail.com>
  Date:   2020-04-03 (Fri, 03 Apr 2020)

  Changed paths:
    M src/main/java/org/jenkinsci/plugins/codedx/CodeDxPublisher.java

  Log Message:
  -----------
  Fix form validation errors

Validation was referencing data (project workspace) that's not always 
available. For pipeline templates, it attempts to test input paths using some 
previous sample workspace but pipelines won't always just have one workspace.

Rather than attempt to test against all workspaces, allow validation to pass 
when no `project` has been provided.


  Commit: 942ebbb98f53dd9c26acf5e03d5557ba93d64f84
      
https://github.com/jenkinsci/codedx-plugin/commit/942ebbb98f53dd9c26acf5e03d5557ba93d64f84
  Author: Tyler Camp <tylermatthewc...@gmail.com>
  Date:   2020-04-06 (Mon, 06 Apr 2020)

  Changed paths:
    M src/main/java/org/jenkinsci/plugins/codedx/CodeDxBuildAction.java
    M src/main/java/org/jenkinsci/plugins/codedx/CodeDxProjectAction.java
    M src/main/java/org/jenkinsci/plugins/codedx/CodeDxPublisher.java

  Log Message:
  -----------
  Support project actions in pipelines, so analysis summary shows


  Commit: b861407b6dbae2163fcde15c83cf955f997e9ab6
      
https://github.com/jenkinsci/codedx-plugin/commit/b861407b6dbae2163fcde15c83cf955f997e9ab6
  Author: Tyler Camp <tylermatthewc...@gmail.com>
  Date:   2020-04-06 (Mon, 06 Apr 2020)

  Changed paths:
    M src/main/java/org/jenkinsci/plugins/codedx/CodeDxPublisher.java
    M src/main/java/org/jenkinsci/plugins/codedx/Util.java

  Log Message:
  -----------
  Throw exceptions to fail build when an error occurs

New `perform` API has `void` return, so we need to throw an exception to 
indicate failure instead of using the return value.


  Commit: 546b2754a89e370372f2d725bb76f6959a1d8754
      
https://github.com/jenkinsci/codedx-plugin/commit/546b2754a89e370372f2d725bb76f6959a1d8754
  Author: Tyler Camp <tylermatthewc...@gmail.com>
  Date:   2020-04-06 (Mon, 06 Apr 2020)

  Changed paths:
    M src/main/java/org/jenkinsci/plugins/codedx/CodeDxPublisher.java

  Log Message:
  -----------
  Remove unnecessary properties from ctor and move to setters

Best practice dictates that only properties that are truly required should be 
in the constructor parameters. Anything else should be moved to 
@DataBoundSetters.


  Commit: 231a0fec2209fa7a4464dd5032969bbfa0901832
      
https://github.com/jenkinsci/codedx-plugin/commit/231a0fec2209fa7a4464dd5032969bbfa0901832
  Author: Tyler Camp <tylermatthewc...@gmail.com>
  Date:   2020-04-15 (Wed, 15 Apr 2020)

  Changed paths:
    M src/main/java/com/secdec/codedx/api/client/Filter.java
    M src/main/java/com/secdec/codedx/util/CodeDxVersion.java
    M src/main/java/org/jenkinsci/plugins/codedx/CodeDxProjectAction.java
    M src/main/java/org/jenkinsci/plugins/codedx/CodeDxPublisher.java
    M src/main/java/org/jenkinsci/plugins/codedx/model/StatisticGroup.java

  Log Message:
  -----------
  Add support for "Reopened" finding status


  Commit: cce6ae799e5dd0cd60fbd50f9771350d92c01a2e
      
https://github.com/jenkinsci/codedx-plugin/commit/cce6ae799e5dd0cd60fbd50f9771350d92c01a2e
  Author: Tyler Camp <tylermatthewc...@gmail.com>
  Date:   2020-04-16 (Thu, 16 Apr 2020)

  Changed paths:
    M src/main/java/org/jenkinsci/plugins/codedx/CodeDxChartBuilder.java
    M src/main/java/org/jenkinsci/plugins/codedx/CodeDxProjectAction.java
    M src/main/java/org/jenkinsci/plugins/codedx/CodeDxPublisher.java
    M src/main/java/org/jenkinsci/plugins/codedx/model/StatisticGroup.java

  Log Message:
  -----------
  Change StatisticGroup to be static Strings for dynamic status support

Upcoming changes will support arbitrary finding statuses; the original `enum` 
approach wouldn't work for an unrecognized finding status.


  Commit: 700375b93d1aca76b40088b150b3a74b5474e317
      
https://github.com/jenkinsci/codedx-plugin/commit/700375b93d1aca76b40088b150b3a74b5474e317
  Author: Tyler Camp <tylermatthewc...@gmail.com>
  Date:   2020-04-16 (Thu, 16 Apr 2020)

  Changed paths:
    M src/main/java/org/jenkinsci/plugins/codedx/CodeDxChartBuilder.java

  Log Message:
  -----------
  Automatically track and generate graph colors for unknown stats


  Commit: 83de8d4bae2de03f596480eaea0af083e994242b
      
https://github.com/jenkinsci/codedx-plugin/commit/83de8d4bae2de03f596480eaea0af083e994242b
  Author: Tyler Camp <tylermatthewc...@gmail.com>
  Date:   2020-05-04 (Mon, 04 May 2020)

  Changed paths:
    M src/main/java/org/jenkinsci/plugins/codedx/CodeDxProjectAction.java

  Log Message:
  -----------
  Bugfix - latest build was not shown in graphs


  Commit: 2a2530d55ca4bc1630cb92be415b773e9bf4e88b
      
https://github.com/jenkinsci/codedx-plugin/commit/2a2530d55ca4bc1630cb92be415b773e9bf4e88b
  Author: Tyler Camp <tylermatthewc...@gmail.com>
  Date:   2020-05-11 (Mon, 11 May 2020)

  Changed paths:
    M src/main/java/org/jenkinsci/plugins/codedx/CodeDxBuildAction.java

  Log Message:
  -----------
  Add explicit ordering for `Reopened` status in status diff table


Compare: 
https://github.com/jenkinsci/codedx-plugin/compare/61e8edc4d266%5E...2a2530d55ca4

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Commits" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-commits+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-commits/jenkinsci/codedx-plugin/push/refs/heads/pipeline-support/000000-2a2530%40github.com.

Reply via email to