Chapter 5. Fixed issues

This Eclipse Vert.x release incorporates all bugfixes from community release of versions 3.8.4 and 3.8.5. Issues resolved in the community releases are listed in the Eclipse Vert.x 3.8.4 Community Release Notes and the Eclipse Vert.x 3.8.5 Community Release Notes.

5.1. The starr.version property is no longer indicated as missing in projects that include the vertx-kafka-client artifact

In previous releases of Eclipse Vert.x, when building a project that includes the vertx-kafka-client artifact, Maven generated the following warning, potentially causing the build to fail:

The POM for org.scala-lang:scala-compiler:jar:${starr.version} is missing, no dependency information available

This issue is resolved in the Eclipse Vert.x 3.8.5 release and no longer occurs.

5.2. Vert.x AMQP Client:`AmqpReceiver` logs received messages to standard output as expected

In previous releases of Eclipse Vert.x, a messageHandler attached to an AmqpReceiver instance that was set to print a message received from a Sender instance located on the same address to standard output would fail to print the message to the log despite having received it. The issue resulted from using a deprecated createReceiver method to initialize the AmqpReceiver instance. The deprecated method is removed from the vertx-amqp-client module in the Eclipse Vert.x 3.8.5 release and the issue no longer occurs.