Skip to content

Releases: SourcePointUSA/ios-cmp-app

6.1.7

25 Aug 14:45
9bdedad
Compare
Choose a tag to compare

6.1.7 (August, 25, 2021)

  • Added acceptedCategories property to SPGDPRConsent class. The acceptedCategories is an array of ids of the categories (purposes) consented by the user and that are consented in all vendors involved with it. If a single vendor of a given purpose is disabled by the user, that purpose won't be part of acceptedCategories. #335
  • Fixed an issue preventing using the SDK with Carthage. #334

6.1.6

17 Aug 12:41
Compare
Choose a tag to compare

6.1.6 (August, 17, 2021)

  • Added IDFAAccepted & IDFADenied to SPActionType to load the messages based on IDFA status #330

6.1.5

23 Jul 16:01
Compare
Choose a tag to compare

6.1.5 (July, 23, 2021)

  • Expanded SPSDK protocol to contain all public method/attributes of the SDK. Adding the following:
    • VERSION: String
    • clearAllData()
    • cleanUserDataOnError: Bool
    • messageTimeoutInSeconds: TimeInterval
    • privacyManagerTab: SPPrivacyManagerTab
    • messageLanguage: SPMessageLanguage
  • Added AppleTV native Privacy Manager message flow.

6.1.4

20 Jul 09:57
Compare
Choose a tag to compare

6.1.4 (July, 20, 2021)

  • Fixed an issue preventing consent messages from rendering on iOS 13.3.x

6.1.3

07 Jul 15:20
Compare
Choose a tag to compare

6.1.3 (July, 6, 2021)

  • Fixed an issue preventing the CCPA Privacy Manager from rendering.

6.1.2

05 Jul 10:33
Compare
Choose a tag to compare

6.1.2 (July, 5, 2021)

  • Enable the SDK to try and open URLs with schemes other than http:// or https://, deep links. If there are no applications able to handle the url scheme, the action will be ignored.

6.1.1

01 Jul 14:35
Compare
Choose a tag to compare

6.1.1 (July, 1, 2021)

  • Fixed an issue preventing the Privacy Manager from rendering correctly when using an id of a property group PM.

6.1.0

01 Jul 10:21
Compare
Choose a tag to compare

6.1.0 (July, 1, 2021)

  • Fixed an issue that would prevent Stage campaigns from being loaded. #317 - This fix changes the constructor of the SDK, adding a new optional parameter: campaignsEnv = .Public to it. Refer to the README for more info.

6.0.4

01 Jul 08:29
Compare
Choose a tag to compare

6.0.4 (June, 30, 2021)

  • Added .uuid to SPGDPRConsent and SPCCPAConsent classes. #315
  • Fixed an issue that would prevent the message from rendering in the right language. #313 (Thank you @mskrischke for reporting the issue and submitting a PR to fix it).
  • Implemented several features for AppleTV - WIP.
  • Improved integration with our Unity SDK.

6.0.3

04 Jun 13:58
Compare
Choose a tag to compare

6.0.3 (June, 04, 2021)

  • Configurable timeout. You now can configure a timeout in which either the consent message must be shown or the consent data should be returned to the app (onConsentReady) by setting the attribute .messageTimeoutInSeconds: TimeInterval. Just make sure to set it before calling loadMessage or loadPrivacyManager. #301
  • Updated Apple tracking API request. #302
  • Updated README with Configuring the Message/Consents timeout