Skip to content

Commit 067b523

Browse files
committed
all: update changelog
1 parent 39a66aa commit 067b523

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
Batch Cordova Plugin
22

3+
## UPCOMING
4+
5+
**iOS**
6+
* `BatchBridgeNotificationCenterDelegate` now defaults to showing foreground notifications.
7+
8+
39
## 6.0.0
410

511
This is a major release, please see our [migration guide](https://doc.batch.com/cordova/migrations/5x-migration/) for more info on how to update your current Batch implementation.

dist/src/ios/interop/BatchBridgeNotificationCenterDelegate.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ NS_ASSUME_NONNULL_BEGIN
2424
+ (void)registerAsDelegate;
2525

2626
/// Should iOS display notifications even if the app is in foreground?
27-
/// Default: false
27+
/// Default: true
2828
@property (assign) BOOL showForegroundNotifications;
2929

3030
/// Should Batch use the chained delegate's completionHandler responses or force its own, while still calling the chained delegate.

dist/src/ios/interop/BatchBridgeNotificationCenterDelegate.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ - (instancetype)init
7777
{
7878
self = [super init];
7979
if (self) {
80-
_showForegroundNotifications = false;
80+
_showForegroundNotifications = true;
8181
_shouldUseChainedCompletionHandlerResponse = true;
8282
_isBatchReady = false;
8383
_enqueuedNotificationResponses = [NSMutableArray new];

0 commit comments

Comments
 (0)