Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 3.10.0 #1031

Merged
merged 2 commits into from
Dec 14, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion OneSignal.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "OneSignal"
s.version = "3.9.1"
s.version = "3.10.0"
s.summary = "OneSignal push notification library for mobile apps."
s.homepage = "https://onesignal.com"
s.license = { :type => 'MIT', :file => 'LICENSE' }
Expand Down
2 changes: 1 addition & 1 deletion OneSignalDynamic.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "OneSignalDynamic"
s.version = "3.9.1"
s.version = "3.10.0"
s.summary = "OneSignal push notification library for mobile apps."
s.homepage = "https://onesignal.com"
s.license = { :type => 'MIT', :file => 'LICENSE' }
Expand Down
2 changes: 1 addition & 1 deletion OneSignalXCFramework.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "OneSignalXCFramework"
s.version = "3.9.1"
s.version = "3.10.0"
s.summary = "OneSignal push notification library for mobile apps."
s.homepage = "https://onesignal.com"
s.license = { :type => 'MIT', :file => 'LICENSE' }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,8 @@ typedef NS_ENUM(NSUInteger, OSNotificationActionType) {
/* iOS 15+ : Interruption Level */
@property(readonly)NSString *interruptionLevel;

@property(readonly, nullable)NSString *collapseId;

/* Parses an APNS push payload into a OSNotification object.
Useful to call from your NotificationServiceExtension when the
didReceiveNotificationRequest:withContentHandler: method fires. */
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,8 @@ typedef NS_ENUM(NSUInteger, OSNotificationActionType) {
/* iOS 15+ : Interruption Level */
@property(readonly)NSString *interruptionLevel;

@property(readonly, nullable)NSString *collapseId;

/* Parses an APNS push payload into a OSNotification object.
Useful to call from your NotificationServiceExtension when the
didReceiveNotificationRequest:withContentHandler: method fires. */
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,8 @@ typedef NS_ENUM(NSUInteger, OSNotificationActionType) {
/* iOS 15+ : Interruption Level */
@property(readonly)NSString *interruptionLevel;

@property(readonly, nullable)NSString *collapseId;

/* Parses an APNS push payload into a OSNotification object.
Useful to call from your NotificationServiceExtension when the
didReceiveNotificationRequest:withContentHandler: method fires. */
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<dict>
<key>Headers/OneSignal.h</key>
<data>
2cZwdG/c9TKC7+Ik/Z7fMeCM75Q=
r9ntYq+SuUsn/zBr31pvm3Zh9Y4=
</data>
<key>Info.plist</key>
<data>
Expand All @@ -23,11 +23,11 @@
<dict>
<key>hash</key>
<data>
2cZwdG/c9TKC7+Ik/Z7fMeCM75Q=
r9ntYq+SuUsn/zBr31pvm3Zh9Y4=
</data>
<key>hash2</key>
<data>
7J9RuLQVkWRCsTRnxNU2hickOCUQ2/XLiyxS/c4BxZE=
D8I3LEeI8spZNtuDGfOIv96UODbFdjnWWOimSmtBp2g=
</data>
</dict>
<key>Modules/module.modulemap</key>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,8 @@ typedef NS_ENUM(NSUInteger, OSNotificationActionType) {
/* iOS 15+ : Interruption Level */
@property(readonly)NSString *interruptionLevel;

@property(readonly, nullable)NSString *collapseId;

/* Parses an APNS push payload into a OSNotification object.
Useful to call from your NotificationServiceExtension when the
didReceiveNotificationRequest:withContentHandler: method fires. */
Expand Down
Binary file not shown.
2 changes: 1 addition & 1 deletion iOS_SDK/OneSignalSDK/Source/OneSignal.m
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ @interface OneSignal (SessionStatusDelegate)

@implementation OneSignal

NSString* const ONESIGNAL_VERSION = @"030901";
NSString* const ONESIGNAL_VERSION = @"031000";
static NSString* mSDKType = @"native";
static BOOL coldStartFromTapOnNotification = NO;
static BOOL shouldDelaySubscriptionUpdate = false;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,8 @@ typedef NS_ENUM(NSUInteger, OSNotificationActionType) {
/* iOS 15+ : Interruption Level */
@property(readonly)NSString *interruptionLevel;

@property(readonly, nullable)NSString *collapseId;

/* Parses an APNS push payload into a OSNotification object.
Useful to call from your NotificationServiceExtension when the
didReceiveNotificationRequest:withContentHandler: method fires. */
Expand Down