Skip to content

Commit d484a21

Browse files
author
Bilal Al
committed
polishing
1 parent 24852ea commit d484a21

File tree

10 files changed

+20
-13
lines changed

10 files changed

+20
-13
lines changed

CHANGES.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
4.13.0 (Sep 6, 2024)
1+
4.13.0 (Sep 13, 2024)
22
- Added support for Kerberos Proxy authentication.
33

44
4.12.1 (Jun 10, 2024)

client/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>io.split.client</groupId>
77
<artifactId>java-client-parent</artifactId>
8-
<version>4.13.0-rc3</version>
8+
<version>4.13.0</version>
99
</parent>
1010
<artifactId>java-client</artifactId>
1111
<packaging>jar</packaging>

okhttp-modules/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
<parent>
66
<artifactId>java-client-parent</artifactId>
77
<groupId>io.split.client</groupId>
8-
<version>4.13.0-rc3</version>
8+
<version>4.13.0</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
11-
<version>4.13.0-rc3</version>
11+
<version>4.13.0</version>
1212
<artifactId>okhttp-modules</artifactId>
1313
<packaging>jar</packaging>
1414
<name>http-modules</name>

okhttp-modules/src/main/java/io/split/httpmodules/okhttp/OkHttpClientImpl.java

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,14 @@
66
import io.split.engine.common.FetchOptions;
77
import io.split.service.SplitHttpClient;
88

9-
import okhttp3.*;
9+
import okhttp3.Authenticator;
10+
import okhttp3.OkHttpClient;
1011
import okhttp3.logging.HttpLoggingInterceptor;
1112
import okhttp3.MediaType;
13+
import okhttp3.Request;
14+
import okhttp3.RequestBody;
15+
import okhttp3.Response;
16+
1217
import org.slf4j.Logger;
1318
import org.slf4j.LoggerFactory;
1419

okhttp-modules/src/test/java/io/split/httpmodules/okhttp/SplitConfigTests.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ public void checkExpectedAuthScheme() {
1717
.debugEnabled()
1818
.build()
1919
)
20+
.streamingEnabled(false)
2021
.build();
2122
OkHttpModule module = (OkHttpModule) cfg.alternativeHTTPModule();
2223
Assert.assertEquals(ProxyAuthScheme.KERBEROS, module.proxyAuthScheme());

okhttp-modules/src/test/java/io/split/httpmodules/okhttp/SplitFactoryTests.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ public void testFactoryCreatingClient() throws Exception {
5757

5858
SplitClientConfig cfg = SplitClientConfig.builder()
5959
.alternativeHTTPModule(module)
60+
.streamingEnabled(false)
6061
.build();
6162

6263
SplitFactoryImpl factory = (SplitFactoryImpl) SplitFactoryBuilder.build(apiToken, cfg);

pluggable-storage/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@
66
<parent>
77
<artifactId>java-client-parent</artifactId>
88
<groupId>io.split.client</groupId>
9-
<version>4.13.0-rc3</version>
9+
<version>4.13.0</version>
1010
</parent>
1111

12-
<version>4.13.0-rc3</version>
12+
<version>2.1.0</version>
1313
<artifactId>pluggable-storage</artifactId>
1414
<packaging>jar</packaging>
1515
<name>Package for Pluggable Storage</name>
@@ -29,7 +29,7 @@
2929
<serverId>ossrh</serverId>
3030
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
3131
<autoReleaseAfterClose>true</autoReleaseAfterClose>
32-
<skipNexusStagingDeployMojo>false</skipNexusStagingDeployMojo>
32+
<skipNexusStagingDeployMojo>true</skipNexusStagingDeployMojo>
3333
</configuration>
3434
</plugin>
3535
</plugins>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<modelVersion>4.0.0</modelVersion>
55
<groupId>io.split.client</groupId>
66
<artifactId>java-client-parent</artifactId>
7-
<version>4.13.0-rc3</version>
7+
<version>4.13.0</version>
88
<dependencyManagement>
99
<dependencies>
1010
<dependency>

redis-wrapper/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@
66
<parent>
77
<artifactId>java-client-parent</artifactId>
88
<groupId>io.split.client</groupId>
9-
<version>4.13.0-rc3</version>
9+
<version>4.13.0</version>
1010
</parent>
1111
<artifactId>redis-wrapper</artifactId>
12-
<version>4.13.0-rc3</version>
12+
<version>3.1.0</version>
1313
<packaging>jar</packaging>
1414
<name>Package for Redis Wrapper Implementation</name>
1515
<description>Implements Redis Pluggable Storage</description>
@@ -51,7 +51,7 @@
5151
<serverId>ossrh</serverId>
5252
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
5353
<autoReleaseAfterClose>true</autoReleaseAfterClose>
54-
<skipNexusStagingDeployMojo>false</skipNexusStagingDeployMojo>
54+
<skipNexusStagingDeployMojo>true</skipNexusStagingDeployMojo>
5555
</configuration>
5656
</plugin>
5757
</plugins>

testing/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>io.split.client</groupId>
77
<artifactId>java-client-parent</artifactId>
8-
<version>4.13.0-rc3</version>
8+
<version>4.13.0</version>
99
</parent>
1010
<artifactId>java-client-testing</artifactId>
1111
<packaging>jar</packaging>

0 commit comments

Comments
 (0)