Skip to content

Commit

Permalink
build(deps): bump io.vertx.web.version from 4.3.4 to 4.3.7 (#1298)
Browse files Browse the repository at this point in the history
* build(deps): bump io.vertx.web.version from 4.3.4 to 4.3.7

Bumps `io.vertx.web.version` from 4.3.4 to 4.3.7.

Updates `vertx-web` from 4.3.4 to 4.3.7

Updates `vertx-web-client` from 4.3.4 to 4.3.7

Updates `vertx-web-graphql` from 4.3.4 to 4.3.7

---
updated-dependencies:
- dependency-name: io.vertx:vertx-web
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: io.vertx:vertx-web-client
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: io.vertx:vertx-web-graphql
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

* Fix WebSocket upgrade failure message

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Elliott Baron <ebaron@redhat.com>
  • Loading branch information
dependabot[bot] and ebaron authored Feb 16, 2023
1 parent e8cb295 commit 0fe190b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@
<org.apache.commons.io.version>2.11.0</org.apache.commons.io.version>
<org.apache.httpcomponents.version>4.5.13</org.apache.httpcomponents.version>
<io.fabric8.client.version>6.3.1</io.fabric8.client.version>
<io.vertx.web.version>4.3.4</io.vertx.web.version>
<io.vertx.web.version>4.3.7</io.vertx.web.version>
<!--
FIXME this needs to be synced with the vertx version - is there a BOM to use or something?
https://github.com/vert-x3/vertx-web/blob/${io.vertx.web.version}/vertx-web-graphql/pom.xml#L35
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/itest/MessagingServerIT.java
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ public void shouldRejectDeprecatedCommandPathWith410StatusCode() throws Exceptio
Assertions.assertThrows(
ExecutionException.class,
() -> sendMessage("ping").get(REQUEST_TIMEOUT_SECONDS, TimeUnit.SECONDS));
String errorMessage = "WebSocket upgrade failure: 410 (Gone)";
String errorMessage = "WebSocket upgrade failure: 410";
MatcherAssert.assertThat(ex.getCause().getMessage(), Matchers.equalTo(errorMessage));
}
}

0 comments on commit 0fe190b

Please sign in to comment.