From f5a489975a1cb3da3f385894ad4e9b391b87fee2 Mon Sep 17 00:00:00 2001 From: Juraj Dudak Date: Fri, 8 Jan 2021 12:30:26 +0100 Subject: [PATCH] feat/Version 0.5.0 --- documentation/RELEASE_NOTES.md | 10 ++++++++++ package.json | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/documentation/RELEASE_NOTES.md b/documentation/RELEASE_NOTES.md index c8c6956..0cbffaa 100644 --- a/documentation/RELEASE_NOTES.md +++ b/documentation/RELEASE_NOTES.md @@ -1,4 +1,14 @@ ## Release Notes +## Release Notes for 0.5.0 +#### January 08, 2021 +* Features + * Universal link/App link tracking added. There is some setup required that is described in [documentation](./LINKING.md) +* Bug Fixes + * Fixed: All user defined data is now forwarded to Javascript when fetching recommendations on iOS + * **BREAKING CHANGE:** + The SDK now processes notification open events that start the application on iOS. Before, the app had to running and minimized for the notification to be processed. To respond to notifications that start the application, the SDK needs to run some processing in `application:didFinishLaunchingWithOptions`. + `ExponeaAppDelegate` now implements this method where it processes the notification and sets notification center delegate. Your `AppDelegate application:didFinishLaunchingWithOptions` now requires a **call to super** `[super application:application didFinishLaunchingWithOptions:launchOptions];`. Calling `[UNUserNotificationCenter currentNotificationCenter].delegate = self;` is no longer required. See [iOS push notifications documentation](./PUSH_IOS.md) for more details. + ## Release Notes for 0.4.1 #### January 04, 2021 * Version 0.4.0 is a bad release that contains development Cocoapods. This version is just a re-release of 0.4.0 diff --git a/package.json b/package.json index ca181ee..c082835 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "react-native-exponea-sdk", "title": "React Native Exponea Sdk", - "version": "0.4.1", + "version": "0.5.0", "description": "React native SDK for Exponea integration", "main": "lib/index.js", "types": "lib/index.d.ts",