Skip to content
Merged
Show file tree
Hide file tree
Changes from 9 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
4 changes: 4 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
4.13.1 (Dec 5, 2024)
- Updated `org.apache.httpcomponents.client5` dependency to 5.4.1 to fix vulnerabilities.
- Updated `redis.clients` dependency to 4.4.8 to fix vulnerabilities.

4.13.0 (Sep 13, 2024)
- Added support for Kerberos Proxy authentication.

Expand Down
5 changes: 3 additions & 2 deletions client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@
<parent>
<groupId>io.split.client</groupId>
<artifactId>java-client-parent</artifactId>
<version>4.13.0</version>
<version>4.13.1</version>
</parent>
<version>4.13.1</version>
<artifactId>java-client</artifactId>
<packaging>jar</packaging>
<name>Java Client</name>
Expand Down Expand Up @@ -166,7 +167,7 @@
<dependency>
<groupId>org.apache.httpcomponents.client5</groupId>
<artifactId>httpclient5</artifactId>
<version>5.0.3</version>
<version>5.4.1</version>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
Expand Down
8 changes: 4 additions & 4 deletions okhttp-modules/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
<parent>
<artifactId>java-client-parent</artifactId>
<groupId>io.split.client</groupId>
<version>4.13.0</version>
<version>4.13.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<version>4.13.0</version>
<version>4.13.1</version>
<artifactId>okhttp-modules</artifactId>
<packaging>jar</packaging>
<name>http-modules</name>
Expand Down Expand Up @@ -46,13 +46,13 @@
<dependency>
<groupId>io.split.client</groupId>
<artifactId>java-client</artifactId>
<version>4.13.0</version>
<version>4.13.1</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents.client5</groupId>
<artifactId>httpclient5</artifactId>
<version>5.0.3</version>
<version>5.4.1</version>
</dependency>
<!-- Test deps -->
<dependency>
Expand Down
4 changes: 2 additions & 2 deletions pluggable-storage/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<artifactId>java-client-parent</artifactId>
<groupId>io.split.client</groupId>
<version>4.13.0</version>
<version>4.13.1</version>
</parent>

<version>2.1.0</version>
Expand All @@ -29,7 +29,7 @@
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
<skipNexusStagingDeployMojo>true</skipNexusStagingDeployMojo>
<skipNexusStagingDeployMojo>false</skipNexusStagingDeployMojo>
</configuration>
</plugin>
</plugins>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>io.split.client</groupId>
<artifactId>java-client-parent</artifactId>
<version>4.13.0</version>
<version>4.13.1</version>
<dependencyManagement>
<dependencies>
<dependency>
Expand Down
8 changes: 4 additions & 4 deletions redis-wrapper/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
<parent>
<artifactId>java-client-parent</artifactId>
<groupId>io.split.client</groupId>
<version>4.13.0</version>
<version>4.13.1</version>
</parent>
<artifactId>redis-wrapper</artifactId>
<version>3.1.0</version>
<version>4.13.1</version>
<packaging>jar</packaging>
<name>Package for Redis Wrapper Implementation</name>
<description>Implements Redis Pluggable Storage</description>
Expand All @@ -28,7 +28,7 @@
<dependency>
<groupId>redis.clients</groupId>
<artifactId>jedis</artifactId>
<version>4.3.0</version>
<version>4.4.8</version>
</dependency>
<dependency>
<groupId>junit</groupId>
Expand All @@ -51,7 +51,7 @@
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
<skipNexusStagingDeployMojo>true</skipNexusStagingDeployMojo>
<skipNexusStagingDeployMojo>false</skipNexusStagingDeployMojo>
</configuration>
</plugin>
</plugins>
Expand Down
2 changes: 1 addition & 1 deletion testing/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>io.split.client</groupId>
<artifactId>java-client-parent</artifactId>
<version>4.13.0</version>
<version>4.13.1</version>
</parent>
<artifactId>java-client-testing</artifactId>
<packaging>jar</packaging>
Expand Down
Loading