diff --git a/CHANGES.txt b/CHANGES.txt index fe88db4a..9c10df67 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -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) diff --git a/client/pom.xml b/client/pom.xml index 30e63aff..2c1892ca 100644 --- a/client/pom.xml +++ b/client/pom.xml @@ -5,7 +5,7 @@ io.split.client java-client-parent - 4.13.0-rc3 + 4.13.0 java-client jar diff --git a/okhttp-modules/pom.xml b/okhttp-modules/pom.xml index b0b9afab..52986930 100644 --- a/okhttp-modules/pom.xml +++ b/okhttp-modules/pom.xml @@ -5,10 +5,10 @@ java-client-parent io.split.client - 4.13.0-rc3 + 4.13.0 4.0.0 - 4.13.0-rc3 + 4.13.0 okhttp-modules jar http-modules diff --git a/okhttp-modules/src/main/java/io/split/httpmodules/okhttp/OkHttpClientImpl.java b/okhttp-modules/src/main/java/io/split/httpmodules/okhttp/OkHttpClientImpl.java index d35f633d..65a59921 100644 --- a/okhttp-modules/src/main/java/io/split/httpmodules/okhttp/OkHttpClientImpl.java +++ b/okhttp-modules/src/main/java/io/split/httpmodules/okhttp/OkHttpClientImpl.java @@ -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; diff --git a/okhttp-modules/src/test/java/io/split/httpmodules/okhttp/SplitConfigTests.java b/okhttp-modules/src/test/java/io/split/httpmodules/okhttp/SplitConfigTests.java index e7d7f6de..20feddb3 100644 --- a/okhttp-modules/src/test/java/io/split/httpmodules/okhttp/SplitConfigTests.java +++ b/okhttp-modules/src/test/java/io/split/httpmodules/okhttp/SplitConfigTests.java @@ -17,6 +17,7 @@ public void checkExpectedAuthScheme() { .debugEnabled() .build() ) + .streamingEnabled(false) .build(); OkHttpModule module = (OkHttpModule) cfg.alternativeHTTPModule(); Assert.assertEquals(ProxyAuthScheme.KERBEROS, module.proxyAuthScheme()); diff --git a/okhttp-modules/src/test/java/io/split/httpmodules/okhttp/SplitFactoryTests.java b/okhttp-modules/src/test/java/io/split/httpmodules/okhttp/SplitFactoryTests.java index 362f9e36..23cf3cb5 100644 --- a/okhttp-modules/src/test/java/io/split/httpmodules/okhttp/SplitFactoryTests.java +++ b/okhttp-modules/src/test/java/io/split/httpmodules/okhttp/SplitFactoryTests.java @@ -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); diff --git a/pluggable-storage/pom.xml b/pluggable-storage/pom.xml index 841ca730..2e502e35 100644 --- a/pluggable-storage/pom.xml +++ b/pluggable-storage/pom.xml @@ -6,10 +6,10 @@ java-client-parent io.split.client - 4.13.0-rc3 + 4.13.0 - 4.13.0-rc3 + 2.1.0 pluggable-storage jar Package for Pluggable Storage @@ -29,7 +29,7 @@ ossrh https://oss.sonatype.org/ true - false + true diff --git a/pom.xml b/pom.xml index e289a060..a7c51ff3 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ 4.0.0 io.split.client java-client-parent - 4.13.0-rc3 + 4.13.0 diff --git a/redis-wrapper/pom.xml b/redis-wrapper/pom.xml index d3487681..6a25062e 100644 --- a/redis-wrapper/pom.xml +++ b/redis-wrapper/pom.xml @@ -6,10 +6,10 @@ java-client-parent io.split.client - 4.13.0-rc3 + 4.13.0 redis-wrapper - 4.13.0-rc3 + 3.1.0 jar Package for Redis Wrapper Implementation Implements Redis Pluggable Storage @@ -51,7 +51,7 @@ ossrh https://oss.sonatype.org/ true - false + true diff --git a/testing/pom.xml b/testing/pom.xml index e4f19324..adbffc99 100644 --- a/testing/pom.xml +++ b/testing/pom.xml @@ -5,7 +5,7 @@ io.split.client java-client-parent - 4.13.0-rc3 + 4.13.0 java-client-testing jar