Branch: refs/heads/master
  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


  Commit: cadd5f0ef732e74728d57ef93507f5f129e7895e
      
https://github.com/jenkinsci/codedx-plugin/commit/cadd5f0ef732e74728d57ef93507f5f129e7895e
  Author: Tyler Camp <tylermatthewc...@gmail.com>
  Date:   2020-05-12 (Tue, 12 May 2020)

  Changed paths:
    M src/main/java/com/secdec/codedx/util/CodeDxVersion.java

  Log Message:
  -----------
  Remove Code Dx version logic for Reopened status

Code Dx version check for "Reopened" status removed since it was unused; "New" 
status check is used when we need to explicitly request certain statuses, 
"Reopened" isn't used this way so the check is unnecessary.


  Commit: e8e33bdcb5f3bb8776f646469128277c15b591a4
      
https://github.com/jenkinsci/codedx-plugin/commit/e8e33bdcb5f3bb8776f646469128277c15b591a4
  Author: Tyler Camp <tylermatthewc...@gmail.com>
  Date:   2020-05-12 (Tue, 12 May 2020)

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

  Log Message:
  -----------
  Minor logging improvements


  Commit: bff2d5644349da2b4fbe76687921e56dac6debce
      
https://github.com/jenkinsci/codedx-plugin/commit/bff2d5644349da2b4fbe76687921e56dac6debce
  Author: Tyler Camp <tylermatthewc...@gmail.com>
  Date:   2020-05-12 (Tue, 12 May 2020)

  Changed paths:
    M pom.xml

  Log Message:
  -----------
  Improvements to pom.xml

Use more recent parent POM, older jenkins/java min version, and remove explicit 
dependencies on workflow-step/structs


  Commit: 2979c3f612288c080dd7d071130024c9a0ee5649
      
https://github.com/jenkinsci/codedx-plugin/commit/2979c3f612288c080dd7d071130024c9a0ee5649
  Author: Tyler Camp <tylermatthewc...@gmail.com>
  Date:   2020-05-12 (Tue, 12 May 2020)

  Changed paths:
    A src/findbugs/excludesFilter.xml
    M src/main/java/com/secdec/codedx/api/client/CodeDxClient.java
    M src/main/java/com/secdec/codedx/api/client/CodeDxClientException.java
    M src/main/java/com/secdec/codedx/security/SingleCertManager.java
    M src/main/java/com/secdec/codedx/util/CodeDxVersion.java
    M src/main/java/org/jenkinsci/plugins/codedx/Archiver.java
    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
    M src/main/java/org/jenkinsci/plugins/codedx/CodeDxResult.java

  Log Message:
  -----------
  Various minor changes to satisfy findbugs maven plugin


  Commit: 8eed7208a18e401994aa6c22363d21bc6415f15c
      
https://github.com/jenkinsci/codedx-plugin/commit/8eed7208a18e401994aa6c22363d21bc6415f15c
  Author: Tyler Camp <tylermatthewc...@gmail.com>
  Date:   2020-05-13 (Wed, 13 May 2020)

  Changed paths:
    M pom.xml
    A src/findbugs/excludesFilter.xml
    M src/main/java/com/secdec/codedx/api/client/CodeDxClient.java
    M src/main/java/com/secdec/codedx/api/client/CodeDxClientException.java
    M src/main/java/com/secdec/codedx/api/client/Filter.java
    M src/main/java/com/secdec/codedx/security/SingleCertManager.java
    M src/main/java/com/secdec/codedx/util/CodeDxVersion.java
    M src/main/java/org/jenkinsci/plugins/codedx/Archiver.java
    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/CodeDxProjectAction.java
    M src/main/java/org/jenkinsci/plugins/codedx/CodeDxPublisher.java
    M src/main/java/org/jenkinsci/plugins/codedx/CodeDxResult.java
    M src/main/java/org/jenkinsci/plugins/codedx/Util.java
    M src/main/java/org/jenkinsci/plugins/codedx/model/StatisticGroup.java

  Log Message:
  -----------
  Merge pull request #2 from jenkinsci/pipeline-support

Pipeline support


Compare: 
https://github.com/jenkinsci/codedx-plugin/compare/e03d02723bc6...8eed7208a18e

-- 
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/master/e03d02-8eed72%40github.com.

Reply via email to