Skip to content

Commit

Permalink
Release 15.2.4 (#433)
Browse files Browse the repository at this point in the history
  • Loading branch information
rlepinski authored Jun 21, 2024
1 parent 5d475d0 commit 613e4d8
Show file tree
Hide file tree
Showing 10 changed files with 20 additions and 13 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Cordova Plugin Changelog

## Version 15.2.4 June 21, 2024
Patch release to fix a regression on iOS with In-App Automations, Scenes, and Surveys ignoring screen, version, and custom event triggers. Apps using those triggers that are on 15.2.3 should update.

### Changes
- Updated iOS SDK to 18.4.1
- Fixed regression with triggers

## Version 15.2.3 June 20, 2024
Patch release with several bug fixes.

Expand Down
4 changes: 2 additions & 2 deletions cordova-airship-hms/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion cordova-airship-hms/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ua/cordova-airship-hms",
"version": "15.2.3",
"version": "15.2.4",
"description": "Airship HMS Cordova plugin",
"cordova": {
"id": "@ua/cordova-airship-hms",
Expand Down
4 changes: 2 additions & 2 deletions cordova-airship-hms/plugin.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version='1.0' encoding='utf-8'?>
<plugin id="@ua/cordova-airship-hms" version="15.2.3" xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android">
<plugin id="@ua/cordova-airship-hms" version="15.2.4" xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android">

<name>Airship HMS</name>
<description>Airship HMS Cordova plugin</description>
Expand All @@ -12,7 +12,7 @@
<engine name="cordova" version=">=9.0.1"/>
</engines>

<dependency id="@ua/cordova-airship" version="15.2.3"/>
<dependency id="@ua/cordova-airship" version="15.2.4"/>

<!-- android -->
<platform name="android">
Expand Down
4 changes: 2 additions & 2 deletions cordova-airship/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion cordova-airship/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ua/cordova-airship",
"version": "15.2.3",
"version": "15.2.4",
"description": "Airship Cordova plugin",
"cordova": {
"id": "@ua/cordova-airship",
Expand Down
4 changes: 2 additions & 2 deletions cordova-airship/plugin.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<plugin id="@ua/cordova-airship" version="15.2.3" xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android">
<plugin id="@ua/cordova-airship" version="15.2.4" xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android">

<name>Airship</name>
<description>Airship Cordova plugin</description>
Expand Down Expand Up @@ -130,7 +130,7 @@
<source url="https://cdn.cocoapods.org/"/>
</config>
<pods use-frameworks="true">
<pod name="AirshipFrameworkProxy" spec="6.3.0" />
<pod name="AirshipFrameworkProxy" spec="6.3.1" />
</pods>
</podspec>
</platform>
Expand Down
2 changes: 1 addition & 1 deletion cordova-airship/src/android/AirshipCordovaVersion.kt
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
package com.urbanairship.cordova

object AirshipCordovaVersion {
var version = "15.2.3"
var version = "15.2.4"
}
2 changes: 1 addition & 1 deletion cordova-airship/src/android/build-extras.gradle
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
dependencies {
api "com.urbanairship.android:airship-framework-proxy:6.3.0"
api "com.urbanairship.android:airship-framework-proxy:6.3.1"
}
2 changes: 1 addition & 1 deletion cordova-airship/src/ios/AirshipCordovaVersion.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
import Foundation

class AirshipCordovaVersion {
static let version = "15.2.3"
static let version = "15.2.4"
}

0 comments on commit 613e4d8

Please sign in to comment.