Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ Here is a list of all available Redis procedures:
== Install Dependencies

The Redis procedures have dependencies on a client library that is not included in the APOC Library.
You can download it from https://github.com/lettuce-io/lettuce-core/releases/tag/6.2.5.RELEASE[the lettuce-core repository](except for `netty` jars because they are already included within neo4j)
You can download it from https://github.com/lettuce-io/lettuce-core/releases/tag/6.5.4.RELEASE[the lettuce-core repository](except for `netty` jars because they are already included within neo4j)
or https://github.com/neo4j-contrib/neo4j-apoc-procedures/releases/download/{apoc-release}/apoc-redis-dependencies-{apoc-release}.jar[apoc repository]
Once that file is downloaded, it should be placed in the `plugins` directory and the Neo4j Server restarted.

Expand Down
2 changes: 1 addition & 1 deletion extra-dependencies/redis/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jar {
}

dependencies {
implementation group: 'io.lettuce', name: 'lettuce-core', version: '6.2.5.RELEASE', {
implementation group: 'io.lettuce', name: 'lettuce-core', version: '6.5.4.RELEASE', {
exclude group: 'io.netty'
}
}
4 changes: 2 additions & 2 deletions full/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -134,8 +134,8 @@ dependencies {
compileOnly group: 'com.couchbase.client', name: 'java-client', version: '3.3.0', withoutJacksons
testImplementation group: 'com.couchbase.client', name: 'java-client', version: '3.3.0', withoutJacksons

compileOnly group: 'io.lettuce', name: 'lettuce-core', version: '6.2.5.RELEASE'
testImplementation group: 'io.lettuce', name: 'lettuce-core', version: '6.2.5.RELEASE'
compileOnly group: 'io.lettuce', name: 'lettuce-core', version: '6.5.4.RELEASE'
testImplementation group: 'io.lettuce', name: 'lettuce-core', version: '6.5.4.RELEASE'

compileOnly group: 'org.neo4j', name: 'neo4j', version: neo4jVersionEffective

Expand Down