Skip to content

Commit

Permalink
[release] 1.45.0 - New option to opt out non sdk metadata, ability to…
Browse files Browse the repository at this point in the history
… disable exposure for getParaStore func (#286)

### New Features
- `StatsigUser` now has a new option called `optOutNonSdkMetadata`,
which enable you to opt out nonSdkMetadata.
  
            note: if you enabled this option, it will only
             return [
                        "sdkType",
                        "sdkVersion",
                        "sessionID",
                        "stableID"
                   ]
           
- Add the ability to check a param store without logging any exposures.
  ### Improvements

  ### Fixes






>Included In This Release
>- 3a324f0 Weihao Ding
>   - fix: fix the unittest for opt out non sdk metadata (#285)
>- d756651 Weihao Ding
>   - feat: add option to opt out non sdk metadata (#283)
>- 1f5be3c Daniel
>   - feat: add disabled exposure getParamStore func (#282)
  • Loading branch information
weihao-statsig authored Jul 1, 2024
1 parent 3a324f0 commit 0571fae
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Sources/Statsig/DeviceEnvironment.swift
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ struct DeviceEnvironment {

static internal let deviceOS = PlatformCompatibility.deviceInfo.os
static internal let sdkType: String = "ios-client"
static internal let sdkVersion: String = "1.44.0"
static internal let sdkVersion: String = "1.45.0"

let lock = NSLock()
var sessionID: String? { UUID().uuidString }
Expand Down
2 changes: 1 addition & 1 deletion Statsig.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |spec|

spec.name = "Statsig"
spec.version = "1.44.0"
spec.version = "1.45.0"
spec.summary = "Statsig enables developers to ship code faster and more safely."
spec.description = <<-DESC
Statsig enables developers to ship code faster and more safely by providing:
Expand Down

0 comments on commit 0571fae

Please sign in to comment.