Skip to content

Commit

Permalink
[release] 1.20.0 - Fallback to Statsig Endpoint if no proxy failed (#…
Browse files Browse the repository at this point in the history
…291)

New feature:
- New option to fallback to statsig api if overrided api failed, for
config spec and idlist sync only.

Fix:
- Potential memory leak fix, explicitly cancel non active background
jobs





>Included In This Release
>- 2ff975d Xin Li
>   - feat:Fallback to statsig endpoint if proxy server fails (#284)
>- ddb5aa0 tore-statsig
>   - feat: explicitly cancel non active background jobs (#288)
  • Loading branch information
xinlili-statsig authored Jun 13, 2024
1 parent 2ff975d commit 0ddd5ee
Show file tree
Hide file tree
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
Expand Up @@ -6,7 +6,7 @@ RELEASE_SIGNING_ENABLED=true

GROUP=com.statsig.serversdk
POM_ARTIFACT_ID=serversdk
VERSION_NAME=1.19.0
VERSION_NAME=1.20.0

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

private const val VERSION = "1.19.0"
private const val VERSION = "1.20.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")
Expand Down

0 comments on commit 0ddd5ee

Please sign in to comment.