From 7e045b9a899ee56bb128a332eb452b7f35917074 Mon Sep 17 00:00:00 2001 From: Ankmara <118185796+Ankmara@users.noreply.github.com> Date: Wed, 2 Aug 2023 10:16:49 +0200 Subject: [PATCH] feat/Version 2.17.0 --- Documentation/RELEASE_NOTES.md | 14 ++++++++++++++ ExponeaSDK-Notifications.podspec | 2 +- ExponeaSDK.podspec | 2 +- ExponeaSDK/Example/Resources/Info.plist | 4 ++-- ExponeaSDK/ExampleNotificationContent/Info.plist | 4 ++-- ExponeaSDK/ExampleNotificationService/Info.plist | 4 ++-- .../Supporting Files/Info.plist | 4 ++-- ExponeaSDK/ExponeaSDK/Supporting Files/Info.plist | 4 ++-- ExponeaSDK/ExponeaSDKShared/Classes/Exponea.swift | 2 +- README.md | 6 +++--- 10 files changed, 30 insertions(+), 16 deletions(-) diff --git a/Documentation/RELEASE_NOTES.md b/Documentation/RELEASE_NOTES.md index b067be4f..a3300ba6 100644 --- a/Documentation/RELEASE_NOTES.md +++ b/Documentation/RELEASE_NOTES.md @@ -1,4 +1,18 @@ ## Release Notes +## Release Notes for 2.17.0 +#### August 02, 2023 +* Features + * In-app content block feature has been added into SDK + * Handling of nil/null values inside objects sending tracking in requestFactory to avoid crashes + * Documentation is updated to describe fetching of In-app messages while identifyCustomer process in detail + * New devices supported for tracking events +* Bug Fixes + * Fixed: Action click event from In-app messages, and App Inbox HTML Inbox messages tracked button text with HTML tags + * Fixed: banner_type for HTML In-app messages is null instead of freeform + * Fixed: Webview for HTML In-app messages and App Inbox HTML Inbox messages not fully offline + +> Note: Please note, we're working on the Bloomreach Engagement App release for the new In-app personalization features. This is just the mobile SDK part, for the new features, keep an eye on the Engagement App release notes, it will be released shortly. + ## Release Notes for 2.16.4 #### July 11, 2023 * Features diff --git a/ExponeaSDK-Notifications.podspec b/ExponeaSDK-Notifications.podspec index 2051ba64..d42ca837 100644 --- a/ExponeaSDK-Notifications.podspec +++ b/ExponeaSDK-Notifications.podspec @@ -16,7 +16,7 @@ Pod::Spec.new do |s| # s.name = "ExponeaSDK-Notifications" - s.version = "2.16.4" + s.version = "2.17.0" s.summary = "A completementary extension-safe framework for supporting rich push notifications in Exponea SDK." # This description is used to generate tags and improve search results. diff --git a/ExponeaSDK.podspec b/ExponeaSDK.podspec index 54195039..3327a2dc 100644 --- a/ExponeaSDK.podspec +++ b/ExponeaSDK.podspec @@ -16,7 +16,7 @@ Pod::Spec.new do |s| # s.name = "ExponeaSDK" - s.version = "2.16.4" + s.version = "2.17.0" s.summary = "Exponea SDK used to track and fetch data from Exponea Experience Cloud." # This description is used to generate tags and improve search results. diff --git a/ExponeaSDK/Example/Resources/Info.plist b/ExponeaSDK/Example/Resources/Info.plist index e7438edf..e6092d50 100644 --- a/ExponeaSDK/Example/Resources/Info.plist +++ b/ExponeaSDK/Example/Resources/Info.plist @@ -17,7 +17,7 @@ CFBundlePackageType APPL CFBundleShortVersionString - 2.16.4 + 2.17.0 CFBundleURLTypes @@ -30,7 +30,7 @@ CFBundleVersion - 69 + 70 LSRequiresIPhoneOS UIApplicationSceneManifest diff --git a/ExponeaSDK/ExampleNotificationContent/Info.plist b/ExponeaSDK/ExampleNotificationContent/Info.plist index 4a1b652f..e6c496ee 100644 --- a/ExponeaSDK/ExampleNotificationContent/Info.plist +++ b/ExponeaSDK/ExampleNotificationContent/Info.plist @@ -17,9 +17,9 @@ CFBundlePackageType XPC! CFBundleShortVersionString - 2.16.4 + 2.17.0 CFBundleVersion - 69 + 70 NSExtension NSExtensionAttributes diff --git a/ExponeaSDK/ExampleNotificationService/Info.plist b/ExponeaSDK/ExampleNotificationService/Info.plist index 02853521..b7e8af46 100644 --- a/ExponeaSDK/ExampleNotificationService/Info.plist +++ b/ExponeaSDK/ExampleNotificationService/Info.plist @@ -17,9 +17,9 @@ CFBundlePackageType XPC! CFBundleShortVersionString - 2.16.4 + 2.17.0 CFBundleVersion - 69 + 70 NSExtension NSExtensionPointIdentifier diff --git a/ExponeaSDK/ExponeaSDK-Notifications/Supporting Files/Info.plist b/ExponeaSDK/ExponeaSDK-Notifications/Supporting Files/Info.plist index 4e8d3969..c99aa637 100644 --- a/ExponeaSDK/ExponeaSDK-Notifications/Supporting Files/Info.plist +++ b/ExponeaSDK/ExponeaSDK-Notifications/Supporting Files/Info.plist @@ -15,8 +15,8 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 2.16.4 + 2.17.0 CFBundleVersion - 69 + 70 diff --git a/ExponeaSDK/ExponeaSDK/Supporting Files/Info.plist b/ExponeaSDK/ExponeaSDK/Supporting Files/Info.plist index 9cc7fe8f..1a2f0b55 100644 --- a/ExponeaSDK/ExponeaSDK/Supporting Files/Info.plist +++ b/ExponeaSDK/ExponeaSDK/Supporting Files/Info.plist @@ -15,9 +15,9 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 2.16.4 + 2.17.0 CFBundleVersion - 69 + 70 NSPrincipalClass diff --git a/ExponeaSDK/ExponeaSDKShared/Classes/Exponea.swift b/ExponeaSDK/ExponeaSDKShared/Classes/Exponea.swift index 2c79c3f0..7d3bb321 100644 --- a/ExponeaSDK/ExponeaSDKShared/Classes/Exponea.swift +++ b/ExponeaSDK/ExponeaSDKShared/Classes/Exponea.swift @@ -9,7 +9,7 @@ import Foundation public class Exponea { - public static let version = "2.16.4" + public static let version = "2.17.0" /// A logger used to log all messages from the SDK. public static var logger: Logger = Logger() diff --git a/README.md b/README.md index decec739..71ac7dbc 100644 --- a/README.md +++ b/README.md @@ -18,11 +18,11 @@ It has been written 100% in Swift with ❤️ ```ruby # Add this under your main application target -pod "ExponeaSDK", "~> 2.16.4" +pod "ExponeaSDK", "~> 2.17.0" # If you also use rich push notifications, # add this line to your notification service extension target. -pod "ExponeaSDK-Notifications", "~> 2.16.4" +pod "ExponeaSDK-Notifications", "~> 2.17.0" ``` > Read more about rich push notifications support [here](./Documentation/PUSH.md). @@ -32,7 +32,7 @@ pod "ExponeaSDK-Notifications", "~> 2.16.4" > Carthage will by default build both `ExponeaSDK` and `ExponeaSDKNotifications` frameworks. The latter one is only supposed to be used in a notification service extension if you wish support rich push notifications. Read more about rich push notifications [here](./Documentation/PUSH.md). ``` -github "exponea/exponea-ios-sdk" ~> 2.16.4 +github "exponea/exponea-ios-sdk" ~> 2.17.0 ``` > And then in your Command line tool type ```carthage update --use-xcframeworks --platform ios```