Skip to content

Commit 32fe678

Browse files
committed
Fix Changelog
1 parent a60b7d5 commit 32fe678

File tree

1 file changed

+29
-29
lines changed

1 file changed

+29
-29
lines changed

CHANGELOG.md

Lines changed: 29 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
1010
## [3.5.5]
1111

1212
#### Added
13-
- - Added `IterableDecryptionFailureHandler` interface to handle decryption failures of PII information.
13+
- - Added `IterableDecryptionFailureHandler` interface to handle decryption failures of PII information.
1414

1515
#### Removed
1616
- Removed `encryptionEnforced` parameter from `IterableConfig` as data is now always encoded for security
@@ -68,7 +68,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
6868

6969
## [3.4.17](https://github.com/Iterable/iterable-android-sdk/releases/tag/3.4.17)
7070
#### Added
71-
- when JWT is invalid, `IterableAuthManager` is updated to fetch and store a new JWT token locally
71+
- when JWT is invalid, `IterableAuthManager` is updated to fetch and store a new JWT token locally
7272
- `IterableRequestTask` now has a retry mechanism that fetches a new JWT token and retries the request if JWT is invalid
7373
- retries are capped at a max of 5
7474

@@ -174,12 +174,12 @@ rest:
174174
(Note that Iterable's Android SDK does not store the last push payload at
175175
rest—before or after this update.)
176176

177-
For more information about this encryption in Android, examine the source code
177+
For more information about this encryption in Android, examine the source code
178178
for Iterable's Android SDK: [`IterableKeychain`](https://github.com/Iterable/iterable-android-sdk/blob/master/iterableapi/src/main/java/com/iterable/iterableapi/IterableKeychain.kt).
179179

180180
#### Storing in-app messages in memory
181181

182-
This release also allows you to have your Android apps (regardless of `minSdkVersion`)
182+
This release also allows you to have your Android apps (regardless of `minSdkVersion`)
183183
store in-app messages in memory, rather than in an unencrypted local file.
184184
However, an unencrypted local file is still the default option.
185185

@@ -205,14 +205,14 @@ IterableApi.initialize(context, "<YOUR_API_KEY>", configBuilder.build());
205205
```
206206

207207
When users upgrade to a version of your Android app that uses this version of
208-
the SDK (or higher), and you've set this configuration option to `true`, the
208+
the SDK (or higher), and you've set this configuration option to `true`, the
209209
local file used for in-app message storage (if it already exists) is deleted
210210
However, no data is lost.
211211

212212
#### Android upgrade instructions
213213

214214
If your app targets API level 23 or higher, this is a standard SDK upgrade, with
215-
no special instructions.
215+
no special instructions.
216216

217217
If your app targets an API level less than 23, you'll need to make the following
218218
changes to your project (which allow your app to build, even though it won't
@@ -226,10 +226,10 @@ encrypt data):
226226
## [3.4.9](https://github.com/Iterable/iterable-android-sdk/releases/tag/3.4.9)
227227
#### Added
228228
- Added new methods for `setEmail`, `setUserId` and `updateEmail` which accepts `authToken`, providing more ways to pass `authToken` to SDK
229-
- Added two interface methods - `onTokenRegistrationSuccessful` and `onTokenRegistrationFailed`. Override these methods to see if authToken was successfully received by the SDK.
229+
- Added two interface methods - `onTokenRegistrationSuccessful` and `onTokenRegistrationFailed`. Override these methods to see if authToken was successfully received by the SDK.
230230

231231
#### Changed
232-
- `setAuthToken` method is now public allowing additional way to provide `authToken` to SDK.
232+
- `setAuthToken` method is now public allowing additional way to provide `authToken` to SDK.
233233

234234
## [3.4.8](https://github.com/Iterable/iterable-android-sdk/releases/tag/3.4.8)
235235
#### Removed
@@ -364,8 +364,8 @@ encrypt data):
364364
- `sku` - The item's SKU
365365
- `description` - A description of the item
366366
- `url` - A URL associated with the item
367-
- `imageUrl` - A URL that points to an image of the item
368-
- `categories` - Categories associated with the item
367+
- `imageUrl` - A URL that points to an image of the item
368+
- `categories` - Categories associated with the item
369369

370370
Set these values on `CommerceItem` objects passed to the `IterableApi.trackPurchase` method.
371371

@@ -385,7 +385,7 @@ encrypt data):
385385
...
386386
}
387387
```
388-
388+
389389
- Updated minimum version for `firebase-messaging` to 20.3.0 to use `FirebaseMessaging.getToken()` instead of deprecated `FirebaseInstanceId.getToken()`.
390390
- Notifications will now show timestamp.
391391

@@ -600,7 +600,7 @@ Please refer to the [Migration guide](https://github.com/Iterable/iterable-andro
600600

601601
#### Changed
602602
- **BREAKING CHANGE:** Added `IterableContext` argument to `IterableCustomActionHandler`
603-
603+
604604
The new method signature is:
605605
```java
606606
boolean handleIterableCustomAction(IterableAction action, IterableActionContext actionContext)
@@ -721,69 +721,69 @@ IterableApi.initialize(context, "YOUR API KEY", config);
721721

722722
## [2.2.5](https://github.com/Iterable/iterable-android-sdk/releases/tag/2.2.5)
723723
_Released on 2018-03-31_
724-
724+
725725
#### Changed
726726
- Updated requests to not send when there is an exception while constructing the JSON request body.
727-
727+
728728
#### Fixed
729729
- Fixed the reference to internal fields in NotificationCompat.Builder for buildVersion 27.
730730

731731
## [2.2.4](https://github.com/Iterable/iterable-android-sdk/releases/tag/2.2.4)
732732
_Released on 2018-03-07_
733-
733+
734734
#### Fixed
735735
- Fixed the load sequence for retrieving a notification image.
736736

737737
## [2.2.3](https://github.com/Iterable/iterable-android-sdk/releases/tag/2.2.3)
738738
_Released on 2018-01-22_
739-
739+
740740
#### Added
741741
- Added non-empty data body for notification rendering.
742742
- Added default channel id support.
743743

744744
## [2.2.2](https://github.com/Iterable/iterable-android-sdk/releases/tag/2.2.2)
745745
_Released on 2017-11-30_
746-
746+
747747
#### Fixed
748748
- Fixed error in IterablePushRegistration when `getDeviceToken` returns an empty PushRegistrationObject.
749749

750750
## [2.2.1](https://github.com/Iterable/iterable-android-sdk/releases/tag/2.2.1)
751751
_Released on 2017-11-20_
752-
752+
753753
#### Added
754754
- Added the `updateSubscriptions` function to create to modify channel, list, and message subscription preferences.
755755

756756
## [2.2.0](https://github.com/Iterable/iterable-android-sdk/releases/tag/2.2.0)
757757
_Released on 2017-11-03_
758-
758+
759759
#### Added
760760
- Added support for html based in-app notifications.
761761

762762
## [2.1.9](https://github.com/Iterable/iterable-android-sdk/releases/tag/2.1.9)
763763
_Released on 2017-10-20_
764-
765-
764+
765+
766766
#### Fixed
767767
- Fixed payload path for image url.
768768

769769
## [2.1.8](https://github.com/Iterable/iterable-android-sdk/releases/tag/2.1.8)
770770
_Released on 2017-07-28_
771-
771+
772772
#### Added
773773
- Added support for android image notifications.
774-
774+
775775
#### Fixed
776776
- Fixed load error for empty image url.
777777

778778
## [2.1.7](https://github.com/Iterable/iterable-android-sdk/releases/tag/2.1.7)
779779
_Released on 2017-07-19_
780-
780+
781781
#### Fixed
782782
- Fixed in-app button clicks without an action defined.
783783

784784
## [2.1.6](https://github.com/Iterable/iterable-android-sdk/releases/tag/2.1.6)
785785
_Released on 2017-07-19_
786-
786+
787787
#### Added
788788
- Added the in-app consume logic to automatically remove the notification from list of in-app notifications.
789789

@@ -792,7 +792,7 @@ IterableApi.initialize(context, "YOUR API KEY", config);
792792

793793
## [2.1.5](https://github.com/Iterable/iterable-android-sdk/releases/tag/2.1.5)
794794
_Released on 2017-06-09_
795-
795+
796796
#### Added
797797
- Added full support for newly created Firebase applications
798798
- Added new functionality for `registerForPush` which takes in the optional pushServicePlatform
@@ -834,7 +834,7 @@ IterableApi.initialize(context, "YOUR API KEY", config);
834834
_Released on 2016-12-28_
835835

836836
- added support for In-App Notifications with different views layouts
837-
- Full screen
837+
- Full screen
838838
- Bottom
839839
- Center
840840
- Top
@@ -843,6 +843,6 @@ IterableApi.initialize(context, "YOUR API KEY", config);
843843

844844
## [2.0.1](https://github.com/Iterable/iterable-android-sdk/releases/tag/2.0.1)
845845
_Released on 2016-10-13_
846-
847-
#### Added
846+
847+
#### Added
848848
- Added ability to send data by userId

0 commit comments

Comments
 (0)