Skip to content

Commit 6032cc3

Browse files
[release] 1.12.0 - Synchronous API, getClientInitializeResponse improvements (#222)
New API: - `checkGateSync` - synchronous version of previously `checkGate` - `getConfigSync` - synchronous version of previously `getConfig` - `getExperimentSync` - synchronous version of previously `getExperimentSync` - `getLayerSync` - synchronous version of previously `getLayer` Improvements: - Diagnostics logging for `getClientInitializeResponse` - Alternative target app filtering on `getClientInitializeResponse` (for Statsig on-prem) >Included In This Release >- bec55f6 weihao-statsig > - Add Option Params Into Sync Core Apis (#219) >- 96d098b kenny-statsig > - alternative target app filtering for client initialize response (#220) >- 146bb59 weihao-statsig > - Add Sync Core APIs (#215) >- 5e21493 Xin Li > - Get client initialize response logging (#214)
1 parent bec55f6 commit 6032cc3

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
@@ -6,7 +6,7 @@ RELEASE_SIGNING_ENABLED=true
66

77
GROUP=com.statsig.serversdk
88
POM_ARTIFACT_ID=serversdk
9-
VERSION_NAME=1.11.1
9+
VERSION_NAME=1.12.0
1010

1111
POM_NAME=Statsig Server SDK
1212
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
@@ -6,7 +6,7 @@ import com.google.gson.annotations.SerializedName
66
import java.util.Properties
77
import java.util.UUID
88

9-
private const val VERSION = "1.11.1"
9+
private const val VERSION = "1.12.0"
1010

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

0 commit comments

Comments
 (0)