From b0fbbe736d50e9d7f60b044598422e291a35d69e Mon Sep 17 00:00:00 2001 From: Alexander Makarov Date: Sat, 1 Aug 2026 16:43:47 +0300 Subject: [PATCH 1/2] Remove reference to removed InfluxDB auto-configuration The auto-configuration for the InfluxDB client was removed in 3.4.0, but the NoSQL section of the reference documentation still described it. See gh-51172 Signed-off-by: Alexander Makarov --- .../src/docs/antora/modules/reference/pages/data/nosql.adoc | 2 -- 1 file changed, 2 deletions(-) diff --git a/documentation/spring-boot-docs/src/docs/antora/modules/reference/pages/data/nosql.adoc b/documentation/spring-boot-docs/src/docs/antora/modules/reference/pages/data/nosql.adoc index fadce3ad13bf..10dff2920fc8 100644 --- a/documentation/spring-boot-docs/src/docs/antora/modules/reference/pages/data/nosql.adoc +++ b/documentation/spring-boot-docs/src/docs/antora/modules/reference/pages/data/nosql.adoc @@ -17,8 +17,6 @@ Additionally, {url-spring-boot-for-apache-geode-site}[Spring Boot for Apache Geo You can make use of the other projects, but you must configure them yourself. See the appropriate reference documentation at {url-spring-data-site}. -Spring Boot also provides auto-configuration for the InfluxDB client but it is deprecated in favor of https://github.com/influxdata/influxdb-client-java[the new InfluxDB Java client] that provides its own Spring Boot integration. - [[data.nosql.redis]] From 7e2a547e5bcc55c061525678bf0dd26f3208f791 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Nicoll?= Date: Mon, 3 Aug 2026 08:17:10 +0200 Subject: [PATCH 2/2] Polish "Remove reference to removed InfluxDB auto-configuration" See gh-51172 --- .../context/properties/DocumentConfigurationProperties.java | 1 - 1 file changed, 1 deletion(-) diff --git a/buildSrc/src/main/java/org/springframework/boot/build/context/properties/DocumentConfigurationProperties.java b/buildSrc/src/main/java/org/springframework/boot/build/context/properties/DocumentConfigurationProperties.java index 2191c1c1a34c..457ccda4da86 100644 --- a/buildSrc/src/main/java/org/springframework/boot/build/context/properties/DocumentConfigurationProperties.java +++ b/buildSrc/src/main/java/org/springframework/boot/build/context/properties/DocumentConfigurationProperties.java @@ -131,7 +131,6 @@ private void dataPrefixes(Config config) { config.accept("spring.cassandra"); config.accept("spring.elasticsearch"); config.accept("spring.h2"); - config.accept("spring.influx"); config.accept("spring.ldap"); config.accept("spring.mongodb"); config.accept("spring.neo4j");