Skip to content

Commit

Permalink
Release 18.8.0 (#3198)
Browse files Browse the repository at this point in the history
* Release 18.8.0

* update
  • Loading branch information
rlepinski authored Sep 6, 2024
1 parent 91d3b0e commit c48a308
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Airship.podspec
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
AIRSHIP_VERSION="18.7.2"
AIRSHIP_VERSION="18.8.0"

Pod::Spec.new do |s|
s.version = AIRSHIP_VERSION
Expand Down
2 changes: 1 addition & 1 deletion Airship/AirshipConfig.xcconfig
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//* Copyright Airship and Contributors */

CURRENT_PROJECT_VERSION = 18.7.2
CURRENT_PROJECT_VERSION = 18.8.0

// Uncomment to include the preview build warning
// OTHER_CFLAGS = $(inherited) -DUA_PREVIEW=1
2 changes: 1 addition & 1 deletion Airship/AirshipCore/Source/AirshipVersion.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import Foundation

public struct AirshipVersion {
public static let version = "18.7.2"
public static let version = "18.8.0"
public static func get() -> String {
return version
}
Expand Down
2 changes: 1 addition & 1 deletion AirshipContentExtension.podspec
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
AIRSHIP_VERSION="18.7.2"
AIRSHIP_VERSION="18.8.0"

Pod::Spec.new do |s|
s.version = AIRSHIP_VERSION
Expand Down
2 changes: 1 addition & 1 deletion AirshipDebug.podspec
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
AIRSHIP_VERSION="18.7.2"
AIRSHIP_VERSION="18.8.0"

Pod::Spec.new do |s|
s.version = AIRSHIP_VERSION
Expand Down
2 changes: 1 addition & 1 deletion AirshipServiceExtension.podspec
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
AIRSHIP_VERSION="18.7.2"
AIRSHIP_VERSION="18.8.0"

Pod::Spec.new do |s|
s.version = AIRSHIP_VERSION
Expand Down
18 changes: 17 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,22 @@

# iOS Changelog

## Version 18.8.0 September 6, 2024
Minor release with several enhancements to In-App Automation, Scenes, and Surveys.

### Changes
- Added support to disable plain markdown (text markup) support in a Scene.
- Added support to theme markdown links in a Scene.
- Added execution window support to In-App Automation, Scenes, and Surveys.
- Added `displayNotificationStatus` status to the `AirshipNotificationStatus` object to get the user notification permission status.
- Added `Airship.permissionManager.statusUpdates(for:)` that returns an async stream of permission status updates.
- Added `MessageCenter.shared.inbox.unreadCountUpdates` that returns an async stream of unread count updates.
- Added `MessageCenter.shared.inbox.messageUpdates` that returns an async stream of message updates.
- Updated handling of priority for In-App Automation, Scenes, and Surveys. Priority is now taken into consideration at each step of displaying a message instead of just sorting messages that are
triggered at the same time.
- Updated handling of long delays for In-App Automation, Scenes, and Surveys. Delays will now be preprocessed up to 30 seconds before it ends before the message is prepared.
- Fixed Message Center theme loader when trying to theme the OOTB Message Center window.

## Version 18.7.2 August 9, 2024
Patch release that fixes in-app experience displays when resuming from a paused state. Apps that use in-app experiences are encouraged to update.

Expand All @@ -26,7 +42,7 @@ to using a JSONEncoder/JSONDecoder across threads.
- `MessageCenterController` is now optional when creating a `MessageCenterView`.

## Version 18.6.0 July 12, 2024
Minor release with some improvements to preference center, a fix for in-app message veritcal sizing, accessibility improvements and markdown support in scenes.
Minor release with some improvements to preference center, a fix for in-app message veritcal sizing, accessibility improvements and plain markdown support in scenes.

### Changes
- Added warning message to preference center email entry field.
Expand Down

0 comments on commit c48a308

Please sign in to comment.