Skip to content

Commit a6929a2

Browse files
chore(deps): bump the dependencies group with 7 updates (#314)
Bumps the dependencies group with 7 updates: | Package | From | To | | --- | --- | --- | | [com.fasterxml.jackson:jackson-bom](https://github.com/FasterXML/jackson-bom) | `2.21.1` | `2.21.2` | | [org.openapitools:jackson-databind-nullable](https://github.com/OpenAPITools/jackson-databind-nullable) | `0.2.9` | `0.2.10` | | [io.opentelemetry:opentelemetry-bom](https://github.com/open-telemetry/opentelemetry-java) | `1.59.0` | `1.60.1` | | [org.mockito:mockito-core](https://github.com/mockito/mockito) | `5.22.0` | `5.23.0` | | [org.testcontainers:testcontainers-junit-jupiter](https://github.com/testcontainers/testcontainers-java) | `2.0.3` | `2.0.4` | | [org.testcontainers:testcontainers-openfga](https://github.com/testcontainers/testcontainers-java) | `2.0.3` | `2.0.4` | | [gradle-wrapper](https://github.com/gradle/gradle) | `9.3.1` | `9.4.1` | Updates `com.fasterxml.jackson:jackson-bom` from 2.21.1 to 2.21.2 - [Commits](FasterXML/jackson-bom@jackson-bom-2.21.1...jackson-bom-2.21.2) Updates `org.openapitools:jackson-databind-nullable` from 0.2.9 to 0.2.10 - [Release notes](https://github.com/OpenAPITools/jackson-databind-nullable/releases) - [Commits](OpenAPITools/jackson-databind-nullable@v0.2.9...v0.2.10) Updates `io.opentelemetry:opentelemetry-bom` from 1.59.0 to 1.60.1 - [Release notes](https://github.com/open-telemetry/opentelemetry-java/releases) - [Changelog](https://github.com/open-telemetry/opentelemetry-java/blob/main/CHANGELOG.md) - [Commits](open-telemetry/opentelemetry-java@v1.59.0...v1.60.1) Updates `org.mockito:mockito-core` from 5.22.0 to 5.23.0 - [Release notes](https://github.com/mockito/mockito/releases) - [Commits](mockito/mockito@v5.22.0...v5.23.0) Updates `org.testcontainers:testcontainers-junit-jupiter` from 2.0.3 to 2.0.4 - [Release notes](https://github.com/testcontainers/testcontainers-java/releases) - [Changelog](https://github.com/testcontainers/testcontainers-java/blob/main/CHANGELOG.md) - [Commits](testcontainers/testcontainers-java@2.0.3...2.0.4) Updates `org.testcontainers:testcontainers-openfga` from 2.0.3 to 2.0.4 - [Release notes](https://github.com/testcontainers/testcontainers-java/releases) - [Changelog](https://github.com/testcontainers/testcontainers-java/blob/main/CHANGELOG.md) - [Commits](testcontainers/testcontainers-java@2.0.3...2.0.4) Updates `gradle-wrapper` from 9.3.1 to 9.4.1 - [Release notes](https://github.com/gradle/gradle/releases) - [Commits](gradle/gradle@v9.3.1...v9.4.1) --- updated-dependencies: - dependency-name: com.fasterxml.jackson:jackson-bom dependency-version: 2.21.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: org.openapitools:jackson-databind-nullable dependency-version: 0.2.10 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: io.opentelemetry:opentelemetry-bom dependency-version: 1.60.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: org.mockito:mockito-core dependency-version: 5.23.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: org.testcontainers:testcontainers-junit-jupiter dependency-version: 2.0.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: org.testcontainers:testcontainers-openfga dependency-version: 2.0.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: gradle-wrapper dependency-version: 9.4.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent cc3a5f2 commit a6929a2

4 files changed

Lines changed: 8 additions & 8 deletions

File tree

build.gradle

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jacocoTestReport {
5555
}
5656

5757
ext {
58-
jackson_version = "2.21.1"
58+
jackson_version = "2.21.2"
5959
}
6060

6161
dependencies {
@@ -67,10 +67,10 @@ dependencies {
6767
implementation "com.fasterxml.jackson.core:jackson-annotations"
6868
implementation "com.fasterxml.jackson.core:jackson-databind"
6969
implementation "com.fasterxml.jackson.datatype:jackson-datatype-jsr310"
70-
implementation "org.openapitools:jackson-databind-nullable:0.2.9"
70+
implementation "org.openapitools:jackson-databind-nullable:0.2.10"
7171

7272
// ---- OpenTelemetry ----
73-
implementation platform("io.opentelemetry:opentelemetry-bom:1.59.0")
73+
implementation platform("io.opentelemetry:opentelemetry-bom:1.60.1")
7474
implementation "io.opentelemetry:opentelemetry-api"
7575
}
7676

@@ -80,7 +80,7 @@ testing {
8080
useJUnitJupiter()
8181
dependencies {
8282
implementation 'org.assertj:assertj-core:3.27.7'
83-
implementation 'org.mockito:mockito-core:5.22.0'
83+
implementation 'org.mockito:mockito-core:5.23.0'
8484
implementation 'org.junit.jupiter:junit-jupiter:5.14.3'
8585
implementation 'org.wiremock:wiremock:3.13.2'
8686

@@ -113,8 +113,8 @@ testing {
113113
implementation "com.fasterxml.jackson.core:jackson-core"
114114
implementation "com.fasterxml.jackson.core:jackson-databind"
115115

116-
implementation "org.testcontainers:testcontainers-junit-jupiter:2.0.3"
117-
implementation "org.testcontainers:testcontainers-openfga:2.0.3"
116+
implementation "org.testcontainers:testcontainers-junit-jupiter:2.0.4"
117+
implementation "org.testcontainers:testcontainers-openfga:2.0.4"
118118
implementation project()
119119
}
120120

gradle/wrapper/gradle-wrapper.jar

2.73 KB
Binary file not shown.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-9.3.1-all.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.4.1-all.zip
44
networkTimeout=10000
55
zipStoreBase=GRADLE_USER_HOME
66
zipStorePath=wrapper/dists

gradlew

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)