Skip to content

Commit

Permalink
all: update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
arnaud-roland committed Nov 7, 2024
1 parent 39a66aa commit 067b523
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
Batch Cordova Plugin

## UPCOMING

**iOS**
* `BatchBridgeNotificationCenterDelegate` now defaults to showing foreground notifications.


## 6.0.0

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.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ NS_ASSUME_NONNULL_BEGIN
+ (void)registerAsDelegate;

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

/// Should Batch use the chained delegate's completionHandler responses or force its own, while still calling the chained delegate.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ - (instancetype)init
{
self = [super init];
if (self) {
_showForegroundNotifications = false;
_showForegroundNotifications = true;
_shouldUseChainedCompletionHandlerResponse = true;
_isBatchReady = false;
_enqueuedNotificationResponses = [NSMutableArray new];
Expand Down

0 comments on commit 067b523

Please sign in to comment.