Skip to content

Commit

Permalink
Merge pull request #36080 from quarkusio/dependabot/maven/rest-assure…
Browse files Browse the repository at this point in the history
…d.version-5.3.2

Bump rest-assured.version from 5.3.0 to 5.3.2
  • Loading branch information
gsmet authored Oct 17, 2023
2 parents 1b3720b + 3563cda commit 04d3a57
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
1 change: 1 addition & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ updates:
# Test dependencies
- dependency-name: net.sourceforge.htmlunit:htmlunit
- dependency-name: io.rest-assured:*
- dependency-name: org.hamcrest:hamcrest
- dependency-name: org.junit:junit-bom
- dependency-name: org.junit.jupiter:*
- dependency-name: org.assertj:assertj-core
Expand Down
8 changes: 7 additions & 1 deletion bom/application/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,8 @@
<derby-jdbc.version>10.14.2.0</derby-jdbc.version>
<db2-jdbc.version>11.5.8.0</db2-jdbc.version>
<shrinkwrap.version>1.2.6</shrinkwrap.version>
<rest-assured.version>5.3.0</rest-assured.version>
<rest-assured.version>5.3.2</rest-assured.version>
<hamcrest.version>2.2</hamcrest.version><!-- The version needs to be compatible with both REST Assured and Awaitility -->
<junit.jupiter.version>5.10.0</junit.jupiter.version>
<junit-pioneer.version>1.5.0</junit-pioneer.version>
<infinispan.version>14.0.19.Final</infinispan.version>
Expand Down Expand Up @@ -3635,6 +3636,11 @@
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest</artifactId>
<version>${hamcrest.version}</version>
</dependency>

<dependency>
<groupId>org.antlr</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ public void testFormBasedAuthSuccess() {
.then()
.assertThat()
.statusCode(302)
.header("location", containsString("/admin"))
.header("location", containsString("/landing"))
.cookie("quarkus-credential",
RestAssuredMatchers.detailedCookie().value(notNullValue()).secured(false));

Expand Down
2 changes: 1 addition & 1 deletion independent-projects/resteasy-reactive/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
<mutiny.version>2.5.1</mutiny.version>
<smallrye-common.version>2.1.2</smallrye-common.version>
<vertx.version>4.4.5</vertx.version>
<rest-assured.version>5.3.0</rest-assured.version>
<rest-assured.version>5.3.2</rest-assured.version>
<commons-logging-jboss-logging.version>1.0.0.Final</commons-logging-jboss-logging.version>
<jackson-bom.version>2.15.2</jackson-bom.version>
<smallrye-stork.version>2.3.1</smallrye-stork.version>
Expand Down

0 comments on commit 04d3a57

Please sign in to comment.