Skip to content

v0.6.0

Latest
Compare
Choose a tag to compare
@DavidGamba DavidGamba released this 22 Feb 18:14
· 1 commit to master since this release

Breaking Changes:

  • Stop using global properties to configure the plugin and fully use the
    veracodeSetup extension instead.

Other Changes:

  • Retrieve flaw report summary in workflow tasks and add option to fail
    the build if there are new flaws introduced.

How to keep old behaviour:

The old behaviour was making use of global properties, e.g. app_id,
sandbox_id, build_version, etc. to configure the plugin tasks.
The setup has fully moved to veracodeSetup now. To use global properties
define the veracodeSetup property to get its input from a global one:

veracodeSetup {
  app_id = project.findProperty("app_id")
}

With each of the properties that you were previously using.

See README for more details.

Thanks @tonytvo for his code reviews 👍