Releases: react-native-push-notification/ios
v1.11.0
What's Changed
- docs: unsubscribe even listeners on unmount by @vonovak in #340
- chore(deps): bump tmpl from 1.0.4 to 1.0.5 by @dependabot in #335
- Update README.md by @ariel-diaz in #330
- chore(deps): bump y18n from 4.0.0 to 4.0.3 by @dependabot in #332
- chore(deps): bump simple-plist from 1.1.0 to 1.3.1 by @dependabot in #365
- chore(deps): bump async from 2.6.3 to 2.6.4 by @dependabot in #362
- chore(deps): bump minimist from 1.2.5 to 1.2.6 by @dependabot in #357
- Update README.md by @spltfc in #303
- chore(deps): bump shelljs from 0.8.4 to 0.8.5 by @dependabot in #347
- chore(deps): bump ajv from 6.12.0 to 6.12.6 by @dependabot in #370
- chore(deps): bump node-fetch from 2.6.1 to 2.6.7 by @dependabot in #369
- chore(deps): bump ansi-regex from 4.1.0 to 4.1.1 by @dependabot in #368
- Make notifications time zone agnostic by @bwernsman in #354
- Completion handler is not called by @apfritts in #311
- parse interruptionLevel field to allow time-sensitive notifications by @varungupta85 in #349
- chore: update node version in ci by @Naturalclar in #377
- docs: add instruction for RN 71 by @Naturalclar in #392
- Correct a typo by @philippeapril in #389
- chore(deps): bump decode-uri-component from 0.2.0 to 0.2.2 by @dependabot in #385
New Contributors
- @ariel-diaz made their first contribution in #330
- @spltfc made their first contribution in #303
- @bwernsman made their first contribution in #354
- @apfritts made their first contribution in #311
- @varungupta85 made their first contribution in #349
- @philippeapril made their first contribution in #389
Full Changelog: v1.10.1...v1.11.0
v1.10.0
FEAT: Add ability to repeat notifications like on iOS (#268) by @ghivert and @jamesxabregas
FEAT: add day of the week and year repetition (#325) @Naturalclar credits to @jamesxabregas
Docs: corrected removePendingNotificationRequests demo code (#321) @mklb
v1.9.0
Added Support for rich notification with image 🎉🎉
Feat
- Support for rich notification (#272) @vuletuan @vuletuanbt
- Add support for critical notifications (#277) @monder
Docs
- Update README.md (#230) @dabhitapan
Internal
- chore: update React Native Version (#314) @Naturalclar
- chore: update jest (#318) @Naturalclar
v1.8.0
chore: refactor RCTConvert (#240) by @Naturalclar
fix: remove completionHandler from finish (#241) by @Naturalclar
feat: add removePendingNotificationRequests method (#242) by @Naturalclar
v1.7.4
chore: update flowtype (#231) by @Naturalclar
chore: update iOS version of example (#238) by @Naturalclar
feat: Add badge and sound to UNNotification and UNNotificationRequest formatters (#237) by @nbolender
v1.7.3
fix: build error on local notification (#228) by @Naturalclar
v1.7.2
v1.7.1
v1.7.0
You can now add notifications with interactions 🎉
Notification | With Action | With TextInput Action |
---|---|---|
The following methods are added:
addNotificationRequest
setNotificationCategory
removeAllPendingNotificationRequests
getPendingNotificationRequests
Added deprecation notices for methods that were using deprecating methods since iOS10.
The following methods are now deprecated, and will be removed from the next major version release.
presentLocalNotification
: useaddNotificationRequest
insteadscheduleLocalNotification
: useaddNotificationRequest
insteadcancelAllLocalNotifications
: useremoveAllPendingNotificationRequests
insteadgetScheduledLocalNotifications
: usegetPendingNotificationRequests
instead
Changelog
- feat: add removeAllPendingNotificationRequests method (#206) by @Naturalclar
- feat: add notification request (#207) by @Naturalclar
- fix: crash on non-textinput action (#208) by @Naturalclar
- docs: remove pre iOS10 information from README (#209) by @Naturalclar
- chore: fix uunnotificationpresentationoption constant in example (#210) by @Naturalclar
- feat: add threadIdentifier for local notification (#211) by @Naturalclar
v1.6.1
fix completion handler constants (#172) by @vonovak
chore: add github actions (#199) by @Naturalclar
feat: include response actionIdentifier in event (#197) by @vonovak
fix: incorrect typescript type (#198) by @Mighty683