Skip to content

Releases: snowdrop/vertx-spring-boot

1.0.0

17 Mar 14:35
Compare
Choose a tag to compare

Dependency upgrades

  • Vert.x 3.8.3 > 3.8.5
  • Spring Boot 2.1.10.RELEASE > 2.2.5.RELEASE
  • SmallRye Axle Clients 0.0.10 > 0.0.14
  • Awaitility 4.0.1 > 4.0.2

New examples

  • WebSocket example #39

0.0.8

27 Jan 10:11
Compare
Choose a tag to compare

New Features

  • Vert.x Kafka client

0.0.7

27 Jan 10:10
Compare
Choose a tag to compare

New Features

  • #38 AMQP TLS example application

Dependency upgrades

  • Vert.x 3.8.2 > 3.8.3

0.0.6

27 Jan 10:07
Compare
Choose a tag to compare

Bug fixes

  • #35 Fix early subscription of a completion stage

0.0.5

27 Jan 10:05
Compare
Choose a tag to compare

Dependency upgrades

  • Spring Boot 2.1.6 > 2.1.10
  • Vert.x 3.8.1 > 3.8.2

0.0.4

23 Sep 02:51
Compare
Choose a tag to compare

New features

  • AMQP client

Bug fixes

  • #1 Cancel infinite SSE connection in HTTP client
  • Delay socket client creation until connection is needed

Dependency upgrades

  • Vert.x 3.7.1 > 3.8.1
  • SmallRye Axle clients 0.0.7 > 0.0.9
  • Awaitility 3.1.6 > 4.0.1

0.0.3

28 Jun 07:48
Compare
Choose a tag to compare

New features

  • Mail module refactor.
    ** Rename MailService to MailClient.
    ** Do not expose Vert.x API such as messages and results.
  • Implement DisposableBean in VertxClientHttpConnector and VertxWebSocketClient.
  • New Server Sent Events (SSE) example application.

Dependency upgrades

  • Spring Boot 2.1.5.RELEASE > 2.1.6.RELEASE
  • Vert.x 3.7.0 > 3.7.1
  • SmallRye Axle clients 0.0.4 > 0.0.7

0.0.2

12 Jun 09:39
Compare
Choose a tag to compare

Overview

An introduction of a new HTTP test starter.

New features

  • HTTP test starter
    • Configures test context to use Vert.x WebTestClient implementation.
  • Move CI builds from CircleCI to TravisCI.
  • Add a parallel CI build to test with JDK 8 in addition to JDK 11.

Bug fixes

  • Fix large file transfer test.

0.0.1

12 Jun 09:38
Compare
Choose a tag to compare

Overview

An initial release of a Vert.x Spring Boot integration project. It contains starters for Vert.x modules that we believe could be useful for Spring Boot users. To keep things moving faster we picked a small number of features.
In an upcoming months we will add starters for other popular Vert.x clients such as AMQP and Kafka.

New features

  • Core
    • Vert.x instance auto-configuration.
    • Vert.x core properties exposed as Spring Boot configuration properties.
  • HTTP
    • WebFlux HTTP server, HTTP client, WebSocket upgrade strategy and WebSocket client implementations with Vert.x.
    • Vert.x HTTP properties exposed as Spring Boot configuration properties.
  • Actuator
    • Management web server configuration for Vert.x WebFlux implementation.
  • Mail
    • Reactor adapter for Vert.x mail client.
  • Samples
    • WebFlux "Hello, World!"
    • Mail service
    • WebFlux SSE and mail service
    • WebFlux basic security
    • WebFlux GitHub OAuth