Skip to content

Commit 58c17a3

Browse files
[release] 1.30.0 - Support TLS for GRPC (#385)
### New Features - Support TLS for GRPC, see instructions here https://docs.statsig.com/server/concepts/forward_proxy#statsig-forward-proxy ### Fixes - Remove manually append v1 in the path >Included In This Release >- 2ece06e Xin Li > - support tls for grpc websocket (#378) >- 475a643 Xin Li > - remove appeneded v1 (#375) >- 6bca616 Xin Li > - add more try catch block to trigger fallback behavior (#382)
1 parent 2ece06e commit 58c17a3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ SONATYPE_AUTOMATIC_RELEASE=true
77

88
GROUP=com.statsig.serversdk
99
POM_ARTIFACT_ID=serversdk
10-
VERSION_NAME=1.29.0
10+
VERSION_NAME=1.30.0
1111

1212
POM_NAME=Statsig Server SDK
1313
POM_DESCRIPTION=A feature gating and a/b testing library for statsig

src/main/kotlin/com/statsig/sdk/StatsigMetadata.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import com.google.gson.annotations.SerializedName
44
import java.util.Properties
55
import java.util.UUID
66

7-
private const val VERSION = "1.28.0"
7+
private const val VERSION = "1.30.0"
88

99
internal data class StatsigMetadata(@SerializedName("sdkType") var sdkType: String = "java-server", @SerializedName("sessionID") var sessionID: String = UUID.randomUUID().toString(), @SerializedName("languageVersion") var languageVersion: String = System.getProperty("java.version"), @SerializedName("exposureLoggingDisabled") var exposureLoggingDisabled: Boolean? = null) {
1010
@SerializedName("sdkVersion")

0 commit comments

Comments
 (0)