Skip to content

Commit

Permalink
Bump the dependencies group with 2 updates (#101)
Browse files Browse the repository at this point in the history
* Bump the dependencies group with 2 updates

Bumps the dependencies group with 2 updates: [org.wiremock:wiremock](https://github.com/wiremock/wiremock) and [org.testcontainers:testcontainers-bom](https://github.com/testcontainers/testcontainers-java).


Updates `org.wiremock:wiremock` from 3.9.1 to 3.9.2
- [Release notes](https://github.com/wiremock/wiremock/releases)
- [Commits](wiremock/wiremock@3.9.1...3.9.2)

Updates `org.testcontainers:testcontainers-bom` from 1.20.2 to 1.20.3
- [Release notes](https://github.com/testcontainers/testcontainers-java/releases)
- [Changelog](https://github.com/testcontainers/testcontainers-java/blob/main/CHANGELOG.md)
- [Commits](testcontainers/testcontainers-java@1.20.2...1.20.3)

---
updated-dependencies:
- dependency-name: org.wiremock:wiremock
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: org.testcontainers:testcontainers-bom
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>

* Update README.md

* Update docker-compose.yml

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Roger Viñas Alcon <[email protected]>
  • Loading branch information
dependabot[bot] and rogervinas authored Oct 29, 2024
1 parent e1605f1 commit 5fe7ef7
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[![CI](https://github.com/rogervinas/wiremock-testing/actions/workflows/ci.yml/badge.svg?branch=master)](https://github.com/rogervinas/wiremock-testing/actions/workflows/ci.yml)
![Java](https://img.shields.io/badge/Java-21-blue?labelColor=black)
![Kotlin](https://img.shields.io/badge/Kotlin-2.x-blue?labelColor=black)
![WireMock](https://img.shields.io/badge/WireMock-3.9.1-blue?labelColor=black)
![WireMock](https://img.shields.io/badge/WireMock-3.9.2-blue?labelColor=black)

# WireMock Testing

Expand Down
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ dependencies {
testImplementation("org.junit.jupiter:junit-jupiter:5.11.3")
testImplementation("io.mockk:mockk:1.13.13")
testImplementation("org.assertj:assertj-core:3.26.3")
testImplementation("org.wiremock:wiremock:3.9.1")
testImplementation("org.wiremock:wiremock:3.9.2")
testImplementation("org.wiremock.integrations.testcontainers:wiremock-testcontainers-module:1.0-alpha-14")
testImplementation(platform("org.testcontainers:testcontainers-bom:1.20.2"))
testImplementation(platform("org.testcontainers:testcontainers-bom:1.20.3"))
testImplementation("org.testcontainers:testcontainers")
testImplementation("org.testcontainers:junit-jupiter")
}
Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
services:

foo-api:
image: wiremock/wiremock:3.7.0
image: wiremock/wiremock:3.9.2
ports:
- "8080"
command:
Expand All @@ -10,7 +10,7 @@ services:
- ./wiremock/foo-api:/home/wiremock

bar-api:
image: wiremock/wiremock:3.7.0
image: wiremock/wiremock:3.9.2
ports:
- "8080"
command:
Expand Down

0 comments on commit 5fe7ef7

Please sign in to comment.