Skip to content

Conversation

@dependabot-preview
Copy link

Bumps dependency-check-maven from 4.0.2 to 5.0.0.

Changelog

Sourced from dependency-check-maven's changelog.

Version 5.0.0 (2019-06-09)

Changes

  • Add caching of OSS-Index, Central Analyzer, and Node Audit analysis results.
  • General bug fixes identified in the previous milestone releases; see 5.0.0 resolved issues and pull requests.

Version 5.0.0-M3 (2019-05-06)

Breaking Changes

  • OWASP dependency-check now uses the NVD Meta files in addition to the *.json.gz files. If you have a local mirror of the NVD you must now mirror the meta data files. The nist-data-mirror has been updated to include these files.

Changes

  • Several bug fixes and minor enhancements have been made; see the related issues and pull requests.
  • Multiple report formats can be specified; if you wanted just two of the reports you no longer need to use ALL.
  • A new JUNIT formatted report has been added; this provides a different way to integrate with Jenkins builds; the following example creates a JUNIT report with failures for any CVE with a CVSS score greater than or equal to 7.0 the Jenkins pipeline script shows how to publish the report:
    pom.xml
    <plugin>
      <groupId>org.owasp</groupId>
      <artifactId>dependency-check-maven</artifactId>
      <version>5.0.0-M3</version>
      <configuration>
        <formats>
            <format>HTML</format>
            <format>JUNIT</format>
        </formats>
        <junitFailOnCVSS>7.0</junitFailOnCVSS>
      </configuration>
      <executions>
        <execution>
          <goals>
            <goal>verify</goal>
          </goals>
        </execution>
      </executions>
    </plugin>
    Jenkinsfile
    stage ('Build') {
      steps {
        sh 'mvn verify'
      }
      post {
        success {
          junit 'target/dependency-check-junit.xml'
        }
... (truncated)
Commits
  • ae5beff release 5.0.0
  • da32be2 add suppression rule per #1975
  • 04517fb updated javadoc per #1928
  • cdce29d updated test case
  • 55d8f66 general bug fixes
  • 91597ba general bug fixes
  • f959ea5 general code cleanup
  • e5f9a3d general code cleanup and centralized purge to ensure all local data is cleane...
  • f10a64f resolve additional false negatives for some redhat projects
  • 3e51fcd Merge branch 'master' of github.com:jeremylong/DependencyCheck
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot ignore this [patch|minor|major] version will close this PR and stop Dependabot creating any more for this minor/major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
  • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
  • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
  • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
  • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language
  • @dependabot badge me will comment on this PR with code to add a "Dependabot enabled" badge to your readme

Additionally, you can set the following in your Dependabot dashboard:

  • Update frequency (including time of day and day of week)
  • Automerge options (never/patch/minor, and dev/runtime dependencies)
  • Pull request limits (per update run and/or open at any time)
  • Out-of-range updates (receive only lockfile updates, if desired)
  • Security updates (receive only security updates, if desired)

Finally, you can contact us by mentioning @dependabot.

@dependabot-preview dependabot-preview bot added the dependencies Pull requests that update a dependency file label Jun 10, 2019
@dependabot-preview
Copy link
Author

Superseded by #14.

@dependabot-preview dependabot-preview bot deleted the dependabot/maven/org.owasp-dependency-check-maven-5.0.0 branch July 1, 2019 06:29
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant