Skip to content

Commit 540a3d3

Browse files
[release] 1.22.0 - API Override options for download_config_specs and get_id_lists (#313)
### New Features - Provide API overrides option for download_config_specs and get_id_lists - In addition to api option, provide option to override specific endpoint, for download_config_specs request will be `apiForDownloadConfigSpecs` and for get_idlists `apiForGetIDLists`. - If both api and endpoint api is presented, e.g. `StatsigOptions(api = "endpoint1/v1", apiForDownloadConfigSpecs = "endpoint2/v1")` SDK will use endpoint1/v1 for log_events and get_idlists, endpoint2/v1 for download_config_specs ### Fixes - Clear log event deduper - exposure dedupe inverted unique check >Included In This Release >- 217838c Xin Li > - feat: Api overrides for download config sepcs and idlists (#293) >- 53714c4 tore-statsig > - fix: exposure dedupe inverted unique check (#311) >- 909b26c tore-statsig > - fix: deduper clear (#310) >- 778f250 tore-statsig > - feat: automatically release from publish action (#309) >- c359639 Weihao Ding > - Revert "Fix publishing - use user token" (#308) >- 4d43995 tore-statsig > - Fix publishing - use user token (#307)
1 parent 217838c commit 540a3d3

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
@@ -7,7 +7,7 @@ SONATYPE_AUTOMATIC_RELEASE=true
77

88
GROUP=com.statsig.serversdk
99
POM_ARTIFACT_ID=serversdk
10-
VERSION_NAME=1.21.0
10+
VERSION_NAME=1.22.0
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

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.21.0"
9+
private const val VERSION = "1.22.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)