Skip to content

Commit b209543

Browse files
authored
chore(deps): update dependency junit:junit to v4.13.2 (GoogleCloudPlatform#5954)
[![WhiteSource Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [junit:junit](http://junit.org) ([source](https://togithub.com/junit-team/junit4)) | `4.4` -> `4.13.2` | [![age](https://badges.renovateapi.com/packages/maven/junit:junit/4.13.2/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/junit:junit/4.13.2/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/junit:junit/4.13.2/compatibility-slim/4.4)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/junit:junit/4.13.2/confidence-slim/4.4)](https://docs.renovatebot.com/merge-confidence/) | | [junit:junit](http://junit.org) ([source](https://togithub.com/junit-team/junit4)) | `4.13` -> `4.13.2` | [![age](https://badges.renovateapi.com/packages/maven/junit:junit/4.13.2/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/junit:junit/4.13.2/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/junit:junit/4.13.2/compatibility-slim/4.13)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/junit:junit/4.13.2/confidence-slim/4.13)](https://docs.renovatebot.com/merge-confidence/) | | [junit:junit](http://junit.org) ([source](https://togithub.com/junit-team/junit4)) | `4.12` -> `4.13.2` | [![age](https://badges.renovateapi.com/packages/maven/junit:junit/4.13.2/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/junit:junit/4.13.2/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/junit:junit/4.13.2/compatibility-slim/4.12)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/junit:junit/4.13.2/confidence-slim/4.12)](https://docs.renovatebot.com/merge-confidence/) | --- ### Configuration 📅 **Schedule**: At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Never, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about these updates again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box. --- This PR has been generated by [WhiteSource Renovate](https://renovate.whitesourcesoftware.com). View repository job log [here](https://app.renovatebot.com/dashboard#github/GoogleCloudPlatform/java-docs-samples).
1 parent 4f89a0e commit b209543

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

appengine-java8/bigtable/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ dependencies {
5353
providedCompile group: 'javax.servlet', name: 'javax.servlet-api', version:'3.1.0'
5454

5555
testCompile group: 'com.google.truth', name: 'truth', version:'1.1.3'
56-
testCompile group: 'junit', name: 'junit', version:'4.13'
56+
testCompile group: 'junit', name: 'junit', version:'4.13.2'
5757
testCompile group: 'org.mockito', name: 'mockito-all', version:'1.10.19'
5858
}
5959

appengine-java8/helloworld/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ dependencies {
4343
// Add your dependencies here.
4444
// implementation 'com.google.cloud:google-cloud:+' // Latest Cloud API's http://googlecloudplatform.github.io/google-cloud-java
4545

46-
testImplementation 'junit:junit:4.12'
46+
testImplementation 'junit:junit:4.13.2'
4747
testImplementation 'com.google.truth:truth:1.1.3'
4848
testImplementation 'org.mockito:mockito-all:1.10.19'
4949

bigtable/beam/bulk-data-generator/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@
7777
<dependency>
7878
<groupId>junit</groupId>
7979
<artifactId>junit</artifactId>
80-
<version>4.4</version>
80+
<version>4.13.2</version>
8181
<scope>test</scope>
8282
</dependency>
8383
<dependency>

datacatalog/quickstart/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ dependencies {
2222
compile group: 'com.google.cloud', name: 'google-cloud-datacatalog-quickstart', version:'0.32.1'
2323

2424
testCompile group: 'com.google.truth', name: 'truth', version:'1.1.3'
25-
testCompile group: 'junit', name: 'junit', version:'4.13'
25+
testCompile group: 'junit', name: 'junit', version:'4.13.2'
2626
}
2727

2828
test {

functions/helloworld/hello-http-gradle/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ dependencies {
3030

3131
// These dependencies are only used by the tests.
3232
testImplementation 'com.google.cloud.functions:functions-framework-api:1.0.4'
33-
testImplementation 'junit:junit:4.12'
33+
testImplementation 'junit:junit:4.13.2'
3434
testImplementation 'com.google.truth:truth:1.1.3'
3535
testImplementation 'org.mockito:mockito-core:3.4.0'
3636
}

functions/helloworld/helloworld-gradle/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ dependencies {
3636

3737
// These dependencies are only used by the tests.
3838
testImplementation 'com.google.cloud.functions:functions-framework-api:1.0.4'
39-
testImplementation 'junit:junit:4.12'
39+
testImplementation 'junit:junit:4.13.2'
4040
testImplementation 'com.google.truth:truth:1.1.3'
4141
testImplementation 'org.mockito:mockito-core:3.4.0'
4242

0 commit comments

Comments
 (0)