Skip to content

Commit

Permalink
[release] 1.28.0 - getFeatureGate Api for Multi-instance usage, Bette…
Browse files Browse the repository at this point in the history
…r logging (#381)

### New Features
  - Exposed `getFeatureGate` api to multi-instance Java/kotlin usage.
  ### Improvements
  - Better customLogger






>Included In This Release
>- 5f918e2 Weihao Ding
>   - refac: add debug loggings and refactor outputLogger (#377)
>- e0595a5 Weihao Ding
>   - fix: expose getFeatureGate to java (#379)
>- 5d364ed Xin Li
>   - add unit test for get dcs failure (#372)
  • Loading branch information
weihao-statsig authored Oct 1, 2024
1 parent 5f918e2 commit 0426fb1
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 @@ -7,7 +7,7 @@ SONATYPE_AUTOMATIC_RELEASE=true

GROUP=com.statsig.serversdk
POM_ARTIFACT_ID=serversdk
VERSION_NAME=1.27.4
VERSION_NAME=1.28.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 @@ -4,7 +4,7 @@ import com.google.gson.annotations.SerializedName
import java.util.Properties
import java.util.UUID

private const val VERSION = "1.27.4"
private const val VERSION = "1.28.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 0426fb1

Please sign in to comment.