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
2 changes: 1 addition & 1 deletion eng/versioning/external_dependencies.txt
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ org.postgresql:postgresql;42.3.9
org.slf4j:slf4j-api;1.7.36
org.slf4j:slf4j-nop;1.7.36
org.slf4j:slf4j-simple;1.7.36
redis.clients:jedis;6.2.0
redis.clients:jedis;4.4.8
io.lettuce:lettuce-core;6.8.1.RELEASE
org.redisson:redisson;3.51.0
testdep_net.bytebuddy:byte-buddy;1.17.7
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
<dependency>
<groupId>redis.clients</groupId>
<artifactId>jedis</artifactId>
<version>6.2.0</version> <!-- {x-version-update;redis.clients:jedis;external_dependency} -->
<version>4.4.8</version> <!-- {x-version-update;redis.clients:jedis;external_dependency} -->
Copy link

Copilot AI Nov 10, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The CHANGELOG.md file for this module should be updated to document this dependency downgrade from Jedis 6.2.0 to 4.4.8. According to the PR guidelines and best practices, dependency changes should be documented in the CHANGELOG.md under the "Other Changes" section with "Dependency Updates" subsection. The current unreleased version (1.0.0-beta.5) section should include:

#### Dependency Updates

- Downgraded `jedis` from `6.2.0` to version `4.4.8`.

This is particularly important as it's a downgrade (not an upgrade), likely due to licensing concerns with the Elastic-2.0 license in Jedis 6.2.0.

Copilot uses AI. Check for mistakes.
</dependency>

<!-- Test dependencies -->
Expand Down Expand Up @@ -122,7 +122,7 @@
<rules>
<bannedDependencies>
<includes>
<include>redis.clients:jedis:[6.2.0]</include> <!-- {x-include-update;redis.clients:jedis;external_dependency} -->
<include>redis.clients:jedis:[4.4.8]</include> <!-- {x-include-update;redis.clients:jedis;external_dependency} -->
</includes>
</bannedDependencies>
</rules>
Expand Down
2 changes: 1 addition & 1 deletion sdk/identity/azure-identity/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@
<dependency>
<groupId>redis.clients</groupId>
<artifactId>jedis</artifactId>
<version>6.2.0</version> <!-- {x-version-update;redis.clients:jedis;external_dependency} -->
<version>4.4.8</version> <!-- {x-version-update;redis.clients:jedis;external_dependency} -->
<scope>test</scope>
</dependency>
<dependency>
Expand Down