Skip to content

Commit 0403810

Browse files
committed
Merge branch '3.5.x'
Closes gh-47393
2 parents 6ee519e + 45bf83d commit 0403810

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

documentation/spring-boot-docs/src/docs/antora/modules/how-to/pages/nosql.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ This section answers questions that arise from using NoSQL with Spring Boot.
99
[[howto.nosql.jedis-instead-of-lettuce]]
1010
== Use Jedis Instead of Lettuce
1111

12-
By default, the Spring Boot starter (`spring-boot-starter-data-redis`) uses https://github.com/lettuce-io/lettuce-core/[Lettuce].
13-
You need to exclude that dependency and include the https://github.com/xetorthio/jedis/[Jedis] one instead.
12+
By default, the Spring Boot starter (`spring-boot-starter-data-redis`) uses https://github.com/redis/lettuce/[Lettuce].
13+
You need to exclude that dependency and include the https://github.com/redis/jedis/[Jedis] one instead.
1414
Spring Boot manages both of these dependencies, allowing you to switch to Jedis without specifying a version.
1515

1616
The following example shows how to accomplish this in Maven:

documentation/spring-boot-docs/src/docs/antora/modules/reference/pages/actuator/metrics.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1054,7 +1054,7 @@ Metrics for Jetty's javadoc:org.eclipse.jetty.server.Connector[] instances are b
10541054
=== Redis Metrics
10551055

10561056
Auto-configuration registers a javadoc:io.lettuce.core.metrics.MicrometerCommandLatencyRecorder[] for the auto-configured javadoc:org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory[].
1057-
For more detail, see the {url-lettuce-docs}#command.latency.metrics.micrometer[Micrometer Metrics section] of the Lettuce documentation.
1057+
For more detail, see the {url-lettuce-docs}/advanced-usage/#observability[Observability section] of the Lettuce documentation.
10581058

10591059

10601060

documentation/spring-boot-docs/src/docs/antora/modules/reference/pages/data/nosql.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ Spring Boot also provides auto-configuration for the InfluxDB client but it is d
2525
== Redis
2626

2727
https://redis.io/[Redis] is a cache, message broker, and richly-featured key-value store.
28-
Spring Boot offers basic auto-configuration for the https://github.com/lettuce-io/lettuce-core/[Lettuce] and https://github.com/xetorthio/jedis/[Jedis] client libraries and the abstractions on top of them provided by https://github.com/spring-projects/spring-data-redis[Spring Data Redis].
28+
Spring Boot offers basic auto-configuration for the https://github.com/redis/lettuce/[Lettuce] and https://github.com/redis/jedis/[Jedis] client libraries and the abstractions on top of them provided by https://github.com/spring-projects/spring-data-redis[Spring Data Redis].
2929

3030
There is a `spring-boot-starter-data-redis` starter for collecting the dependencies in a convenient way.
31-
By default, it uses https://github.com/lettuce-io/lettuce-core/[Lettuce].
31+
By default, it uses https://github.com/redis/lettuce/[Lettuce].
3232
That starter handles both traditional and reactive applications.
3333

3434
TIP: We also provide a `spring-boot-starter-data-redis-reactive` starter for consistency with the other stores with reactive support.

platform/spring-boot-dependencies/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1230,10 +1230,10 @@ bom {
12301230
]
12311231
}
12321232
links {
1233-
site("https://github.com/lettuce-io/lettuce-core")
1233+
site("https://github.com/redis/lettuce")
12341234
javadoc("https://javadoc.io/doc/io.lettuce/lettuce-core/{version}", "io.lettuce.core")
1235-
docs("https://lettuce.io/core/{version}/reference/index.html")
1236-
releaseNotes("https://github.com/lettuce-io/lettuce-core/releases/tag/{version}")
1235+
docs("https://redis.github.io/lettuce")
1236+
releaseNotes("https://github.com/redis/lettuce/releases/tag/{version}")
12371237
}
12381238
}
12391239
library("Liquibase", "4.33.0") {

0 commit comments

Comments
 (0)