Skip to content

Commit

Permalink
polishing
Browse files Browse the repository at this point in the history
  • Loading branch information
Bilal Al committed Sep 13, 2024
1 parent 24852ea commit d484a21
Show file tree
Hide file tree
Showing 10 changed files with 20 additions and 13 deletions.
2 changes: 1 addition & 1 deletion CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
4.13.0 (Sep 6, 2024)
4.13.0 (Sep 13, 2024)
- Added support for Kerberos Proxy authentication.

4.12.1 (Jun 10, 2024)
Expand Down
2 changes: 1 addition & 1 deletion client/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-rc3</version>
<version>4.13.0</version>
</parent>
<artifactId>java-client</artifactId>
<packaging>jar</packaging>
Expand Down
4 changes: 2 additions & 2 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-rc3</version>
<version>4.13.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<version>4.13.0-rc3</version>
<version>4.13.0</version>
<artifactId>okhttp-modules</artifactId>
<packaging>jar</packaging>
<name>http-modules</name>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,14 @@
import io.split.engine.common.FetchOptions;
import io.split.service.SplitHttpClient;

import okhttp3.*;
import okhttp3.Authenticator;
import okhttp3.OkHttpClient;
import okhttp3.logging.HttpLoggingInterceptor;
import okhttp3.MediaType;
import okhttp3.Request;
import okhttp3.RequestBody;
import okhttp3.Response;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ public void checkExpectedAuthScheme() {
.debugEnabled()
.build()
)
.streamingEnabled(false)
.build();
OkHttpModule module = (OkHttpModule) cfg.alternativeHTTPModule();
Assert.assertEquals(ProxyAuthScheme.KERBEROS, module.proxyAuthScheme());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ public void testFactoryCreatingClient() throws Exception {

SplitClientConfig cfg = SplitClientConfig.builder()
.alternativeHTTPModule(module)
.streamingEnabled(false)
.build();

SplitFactoryImpl factory = (SplitFactoryImpl) SplitFactoryBuilder.build(apiToken, cfg);
Expand Down
6 changes: 3 additions & 3 deletions pluggable-storage/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-rc3</version>
<version>4.13.0</version>
</parent>

<version>4.13.0-rc3</version>
<version>2.1.0</version>
<artifactId>pluggable-storage</artifactId>
<packaging>jar</packaging>
<name>Package for Pluggable Storage</name>
Expand All @@ -29,7 +29,7 @@
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
<skipNexusStagingDeployMojo>false</skipNexusStagingDeployMojo>
<skipNexusStagingDeployMojo>true</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-rc3</version>
<version>4.13.0</version>
<dependencyManagement>
<dependencies>
<dependency>
Expand Down
6 changes: 3 additions & 3 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-rc3</version>
<version>4.13.0</version>
</parent>
<artifactId>redis-wrapper</artifactId>
<version>4.13.0-rc3</version>
<version>3.1.0</version>
<packaging>jar</packaging>
<name>Package for Redis Wrapper Implementation</name>
<description>Implements Redis Pluggable Storage</description>
Expand Down Expand Up @@ -51,7 +51,7 @@
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
<skipNexusStagingDeployMojo>false</skipNexusStagingDeployMojo>
<skipNexusStagingDeployMojo>true</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-rc3</version>
<version>4.13.0</version>
</parent>
<artifactId>java-client-testing</artifactId>
<packaging>jar</packaging>
Expand Down

0 comments on commit d484a21

Please sign in to comment.