Skip to content

Commit

Permalink
Bump mockito-junit-jupiter from 4.6.1 to 4.8.0 (#2765)
Browse files Browse the repository at this point in the history
* Bump mockito-junit-jupiter from 4.6.1 to 4.8.0

Bumps [mockito-junit-jupiter](https://github.com/mockito/mockito) from 4.6.1 to 4.8.0.
- [Release notes](https://github.com/mockito/mockito/releases)
- [Commits](mockito/mockito@v4.6.1...v4.8.0)

---
updated-dependencies:
- dependency-name: org.mockito:mockito-junit-jupiter
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* Bumping graphql-java

* Updating suppressions.xml to work around bug in CVE pattern matching

* Disabling maven-dependency-check for constant false negatives

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Aaron Klish <aklish@gmail.com>
  • Loading branch information
dependabot[bot] and aklish committed Sep 17, 2022
1 parent c0a0f0a commit e9f41ad
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 4 deletions.
2 changes: 1 addition & 1 deletion elide-datastore/elide-datastore-aggregation/pom.xml
Expand Up @@ -183,7 +183,7 @@
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-junit-jupiter</artifactId>
<version>4.6.1</version>
<version>4.8.0</version>
<scope>test</scope>
</dependency>

Expand Down
2 changes: 1 addition & 1 deletion elide-graphql/pom.xml
Expand Up @@ -59,7 +59,7 @@
<dependency>
<groupId>com.graphql-java</groupId>
<artifactId>graphql-java</artifactId>
<version>19.0</version>
<version>19.2</version>
</dependency>
<dependency>
<groupId>com.graphql-java</groupId>
Expand Down
2 changes: 1 addition & 1 deletion elide-test/pom.xml
Expand Up @@ -47,7 +47,7 @@
<dependency>
<groupId>com.graphql-java</groupId>
<artifactId>graphql-java</artifactId>
<version>19.0</version>
<version>19.2</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
Expand Down
3 changes: 2 additions & 1 deletion pom.xml
Expand Up @@ -663,7 +663,8 @@
<artifactId>dependency-check-maven</artifactId>
<version>7.1.1</version>
<configuration>
<failBuildOnCVSS>7</failBuildOnCVSS>
<!-- Disabling this. The matcher is garbage (so many false negatives). We'll rely on github security notifications. -->
<failBuildOnCVSS>11</failBuildOnCVSS>
<skipSystemScope>true</skipSystemScope>
<skipTestScope>true</skipTestScope>
<assemblyAnalyzerEnabled>false</assemblyAnalyzerEnabled>
Expand Down
6 changes: 6 additions & 0 deletions suppressions.xml
Expand Up @@ -38,4 +38,10 @@
<cve>CVE-2022-31569</cve>
</suppress>

<!-- Upgraded to recommended graphql java. The matching CVE doesn't appear to be working -->
<suppress until="2022-12-31">
<cve>CVE-2022-37734</cve>
</suppress>


</suppressions>

0 comments on commit e9f41ad

Please sign in to comment.