Releases: SourcePointUSA/ios-cmp-app
Releases · SourcePointUSA/ios-cmp-app
7.6.7
7.6.7 (Apr, 24, 2024)
7.6.6
7.6.6 (Apr, 17, 2024)
- DIA-3679 Fixed an issue affecting Objc implementations preventing USNat consent status from being accessed by the app. #559
- DIA-3811 Fixed an issue with webview consent transferring affecting some implementations that contained consent actions in their vendor list. #563
- DIA-2963 Fixed an issue causing the
onError
callback not being called in certain cases. #561 - DIA-3817 Fixed an issue causing the SDK to error for old campaigns (where
legalBasisChangeDate
are not returned by the backend). #562 - DIA-3770 Fixed a layout issue on tvOS causing html tags to be rendered. #565
- Improved tests for legacy USPString within USNat campaigns. #564
- Made
webConsents
public to better support React Native, Flutter and other bridge SDKs. #560 (thanks @finnp & @thekorn)
7.6.5
7.6.4
7.6.4 (Mar, 01, 2024)
SPUSNatConsent(
- consentStrings: []
+ consentStrings: [{ sectionId: Int, sectionName: String, consentString: String }]
+ categories: [{ id: String, consented: Bool }]
+ vendors: [{ id: String, consented: Bool }]
+ statuses: {
+ rejectedAny: Bool?,
+ consentedToAll: Bool?,
+ consentedToAny: Bool?,
+ sellStatus: Bool?,
+ shareStatus: Bool,
+ sensitiveDataStatus: Bool?,
+ gpcStatus: Bool?,
+ hasConsentData: Bool?
+ }
)
7.6.3
7.6.3 (Feb, 27, 2024)
- DIA-3415 Added Privacy Manifest. #553
7.6.2
7.6.2 (Feb, 26, 2024)
- DIA-3524 Add support to legacy CCPA US Privacy String within USNat campaigns. Check this README section for more info. #549
- DIA-3617 Fixed an issue that would prevent consent data from being migrated from older versions of the SDK (>= 6 <=7.4.0). #552
- Fixed an issue preventing setups with a CCPA campaign from migrating user data from SDK version 7.4.3 onwards. #552
- Improvments to our USNat documentation.
7.6.1
7.6.0
7.5.4
7.5.4 (Jan, 26, 2024)
- DIA-3306 Expanded the way
acceptedCategories
onSPGDPRConsent
works. Previously, a category id would only be added to the list if the user would give consent to it as well as all vendors declaring that category. Now a category id will be include in the list simply if the user gives consent to it, regardless of vendor consent. #547