Skip to content

Commit 2469701

Browse files
[release] 1.32.1 - Add More Info into Exposure Metadata, Fix the returnType for getOnDeviceEvalInitializeResponse (#401)
### Improvements - Added downloadConfigSpec version and the passed rule id into Exposure Metadata ### Fixes - Fixed the return type for api `getOnDeviceEvalInitializeResponse` when bootstrap local-eval SDK. >Included In This Release >- c118cb7 Weihao Ding > - fix: serialization for onDeviceEval (#399) >- ebf46f4 sroyal-statsig > - Add Config Version and Rule Passed to Exposure Metadata (#400)
1 parent c118cb7 commit 2469701

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

gradle.properties

+1-1
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.32.0
10+
VERSION_NAME=1.32.1
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

+1-1
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.32.0"
7+
private const val VERSION = "1.32.1"
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)