I tried upgrading one of my projects' dependency on spring-boot-dependencies to 2.3.0, only to be met by errors mentioning a dependency not found.
It turns out that spring-boot-dependencies does dependency management for a bunch of Kafka artifacts, and that includes kafka_2.11. Unfortunately, support for Scala 2.11 has been dropped in Kafka 2.5.0, meaning this dependency no longer exists.
I'm not sure what the best course of action would be, but it may be wise to simply remove the dependency on kafka_2.11 (assuming no Spring Boot project actually depends on it, which I don't know).