Skip to content

Commit cd087c3

Browse files
dependabot[bot]marko-bekhta
authored andcommitted
Bump the build-dependencies group across 1 directory with 2 updates
Bumps the build-dependencies group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [org.assertj:assertj-core](https://github.com/assertj/assertj) | `3.26.3` | `3.27.1` | | [com.puppycrawl.tools:checkstyle](https://github.com/checkstyle/checkstyle) | `10.21.0` | `10.21.1` | Updates `org.assertj:assertj-core` from 3.26.3 to 3.27.1 - [Release notes](https://github.com/assertj/assertj/releases) - [Commits](assertj/assertj@assertj-build-3.26.3...assertj-build-3.27.1) Updates `com.puppycrawl.tools:checkstyle` from 10.21.0 to 10.21.1 - [Release notes](https://github.com/checkstyle/checkstyle/releases) - [Commits](checkstyle/checkstyle@checkstyle-10.21.0...checkstyle-10.21.1) --- updated-dependencies: - dependency-name: org.assertj:assertj-core dependency-type: direct:production update-type: version-update:semver-minor dependency-group: build-dependencies - dependency-name: com.puppycrawl.tools:checkstyle dependency-type: direct:production update-type: version-update:semver-patch dependency-group: build-dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 5e19a87 commit cd087c3

File tree

4 files changed

+8
-9
lines changed

4 files changed

+8
-9
lines changed

.github/dependabot.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,6 @@ updates:
9393
# We don't care that much about being on the very latest version of some integration test dependencies
9494
- dependency-name: "org.springframework.boot:*"
9595
update-types: [ "version-update:semver-patch" ]
96-
versions: ['3.4.0']
9796
# We strictly align these dependencies on the version used in Hibernate ORM.
9897
- dependency-name: "io.smallrye:jandex"
9998
- dependency-name: "jakarta.persistence:jakarta.persistence-api"

backend/elasticsearch/src/test/java/org/hibernate/search/backend/elasticsearch/orchestration/impl/ElasticsearchDefaultWorkSequenceBuilderTest.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -359,15 +359,15 @@ void error_bulk_work() {
359359
assertThatFuture( work1FutureFromSequenceBuilder ).getFailure()
360360
.isInstanceOf( SearchException.class )
361361
.hasMessageContaining( "Call to the bulk REST API failed" )
362-
.hasCauseReference( exception );
362+
.cause().isSameAs( exception );
363363
assertThatFuture( work2FutureFromSequenceBuilder ).getFailure()
364364
.isInstanceOf( SearchException.class )
365365
.hasMessageContaining( "Call to the bulk REST API failed" )
366-
.hasCauseReference( exception );
366+
.cause().isSameAs( exception );
367367
assertThatFuture( work3FutureFromSequenceBuilder ).getFailure()
368368
.isInstanceOf( SearchException.class )
369369
.hasMessageContaining( "Call to the bulk REST API failed" )
370-
.hasCauseReference( exception );
370+
.cause().isSameAs( exception );
371371
assertThatFuture( work4FutureFromSequenceBuilder ).isPending();
372372
assertThatFuture( sequenceFuture ).isPending();
373373

@@ -441,15 +441,15 @@ void error_bulk_result() {
441441
assertThatFuture( work1FutureFromSequenceBuilder ).getFailure()
442442
.isInstanceOf( SearchException.class )
443443
.hasMessageContaining( "Call to the bulk REST API failed" )
444-
.hasCauseReference( exception );
444+
.cause().isSameAs( exception );
445445
assertThatFuture( work2FutureFromSequenceBuilder ).getFailure()
446446
.isInstanceOf( SearchException.class )
447447
.hasMessageContaining( "Call to the bulk REST API failed" )
448-
.hasCauseReference( exception );
448+
.cause().isSameAs( exception );
449449
assertThatFuture( work3FutureFromSequenceBuilder ).getFailure()
450450
.isInstanceOf( SearchException.class )
451451
.hasMessageContaining( "Call to the bulk REST API failed" )
452-
.hasCauseReference( exception );
452+
.cause().isSameAs( exception );
453453
assertThatFuture( work4FutureFromSequenceBuilder ).isPending();
454454
assertThatFuture( sequenceFuture ).isPending();
455455

build/parents/build/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@
138138

139139
<version.org.hamcrest>3.0</version.org.hamcrest>
140140
<version.org.mockito>5.14.2</version.org.mockito>
141-
<version.org.assertj.assertj-core>3.26.3</version.org.assertj.assertj-core>
141+
<version.org.assertj.assertj-core>3.27.1</version.org.assertj.assertj-core>
142142
<!-- NOTE: Remove a Dependabot rule for 4.2.1 once the upgrade can be applied -->
143143
<version.org.awaitily>4.2.2</version.org.awaitily>
144144
<version.org.skyscreamer.jsonassert>1.5.1</version.org.skyscreamer.jsonassert>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,7 @@
301301
<version.sonar.plugin>5.0.0.4389</version.sonar.plugin>
302302
<version.scripting.plugin>3.0.0</version.scripting.plugin>
303303
<version.org.apache.groovy.groovy-jsr223>4.0.13</version.org.apache.groovy.groovy-jsr223>
304-
<version.com.puppycrawl.tools.checkstyle>10.21.0</version.com.puppycrawl.tools.checkstyle>
304+
<version.com.puppycrawl.tools.checkstyle>10.21.1</version.com.puppycrawl.tools.checkstyle>
305305
<version.versions.plugin>2.18.0</version.versions.plugin>
306306
<version.maven-wrapper-plugin>3.3.2</version.maven-wrapper-plugin>
307307
<version.org.eclipse.m2e.lifecycle-mapping>1.0.0</version.org.eclipse.m2e.lifecycle-mapping>

0 commit comments

Comments
 (0)