Skip to content

Commit

Permalink
[release] 1.30.0 - Support TLS for GRPC (#385)
Browse files Browse the repository at this point in the history
### 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)
xinlili-statsig authored Oct 5, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent 2ece06e commit 58c17a3
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -7,7 +7,7 @@ SONATYPE_AUTOMATIC_RELEASE=true

GROUP=com.statsig.serversdk
POM_ARTIFACT_ID=serversdk
VERSION_NAME=1.29.0
VERSION_NAME=1.30.0

POM_NAME=Statsig Server SDK
POM_DESCRIPTION=A feature gating and a/b testing library for statsig
2 changes: 1 addition & 1 deletion src/main/kotlin/com/statsig/sdk/StatsigMetadata.kt
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@ import com.google.gson.annotations.SerializedName
import java.util.Properties
import java.util.UUID

private const val VERSION = "1.28.0"
private const val VERSION = "1.30.0"

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) {
@SerializedName("sdkVersion")

0 comments on commit 58c17a3

Please sign in to comment.