Skip to content

Commit b7a2f09

Browse files
authored
Merge pull request #44 from urbanairship/capacitor-4.5.0
Release 4.5.0
2 parents 77c0e7d + 8c639d7 commit b7a2f09

File tree

10 files changed

+23
-11
lines changed

10 files changed

+23
-11
lines changed

CHANGELOG.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,13 @@
1-
# Airship Capacitor Plugin 4.x Changelog
1+
# Capacitor Plugin Changelog
2+
3+
## Version 4.5.0 - July 31, 2025
4+
5+
Minor release that updates the Android SDK to 19.10.0 and the iOS SDK to 19.7.0
6+
7+
### Changes
8+
- Updated Android SDK to [19.10.0](https://github.com/urbanairship/android-library/releases/tag/19.10.0)
9+
- Updated iOS SDK to [19.7.0](https://github.com/urbanairship/ios-library/releases/tag/19.7.0)
10+
211

312
[All Releases](https://github.com/urbanairship/capacitor-airship/releases)
413

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ let package = Package(
1111
],
1212
dependencies: [
1313
.package(url: "https://github.com/ionic-team/capacitor-swift-pm.git", from: "7.0.0"),
14-
.package(url: "https://github.com/urbanairship/airship-mobile-framework-proxy.git", from: "14.5.1")
14+
.package(url: "https://github.com/urbanairship/airship-mobile-framework-proxy.git", from: "14.6.0")
1515
],
1616
targets: [
1717
.target(

UaCapacitorAirship.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ Pod::Spec.new do |s|
1313
s.ios.deployment_target = '15.0'
1414
s.dependency 'Capacitor'
1515
s.swift_version = '6'
16-
s.dependency "AirshipFrameworkProxy", "14.5.1"
16+
s.dependency "AirshipFrameworkProxy", "14.6.0"
1717
s.source_files = 'ios/Plugin/**/*.{swift,h,m,c,cc,mm,cpp}'
1818
end

android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
ext {
2-
airshipProxyVersion = project.hasProperty('airshipProxyVersion') ? rootProject.ext.airshipProxyVersion : '14.5.1'
2+
airshipProxyVersion = project.hasProperty('airshipProxyVersion') ? rootProject.ext.airshipProxyVersion : '14.6.0'
33
}
44

55

android/src/main/java/com/airship/capacitor/AirshipCapacitorVersion.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
package com.airship.capacitor
44

55
object AirshipCapacitorVersion {
6-
var version = "4.4.0"
6+
var version = "4.5.0"
77
}

ios/Plugin/AirshipCapacitorVersion.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
import Foundation
44

55
class AirshipCapacitorVersion {
6-
static let version = "4.4.0"
6+
static let version = "4.5.0"
77
}

ios/Podfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ def capacitor_pods
55
use_frameworks!
66
pod 'Capacitor', :path => '../node_modules/@capacitor/ios'
77
pod 'CapacitorCordova', :path => '../node_modules/@capacitor/ios'
8-
pod 'AirshipFrameworkProxy', '14.5.1'
8+
pod 'AirshipFrameworkProxy', '14.6.0'
99
end
1010

1111
target 'Plugin' do

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ua/capacitor-airship",
3-
"version": "4.4.0",
3+
"version": "4.5.0",
44
"description": "Airship capacitor plugin",
55
"main": "dist/plugin.cjs.js",
66
"module": "dist/esm/index.js",

scripts/update_proxy_version.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,10 @@ fi
1414
sed -i '' "s/s\.dependency.*AirshipFrameworkProxy.*$/s.dependency \"AirshipFrameworkProxy\", \"$PROXY_VERSION\"/" "$ROOT_PATH/UaCapacitorAirship.podspec"
1515

1616
# Update android/build.gradle
17-
sed -i '' "s/def proxyVersion = '.*'/def proxyVersion = '$PROXY_VERSION'/" "$ROOT_PATH/android/build.gradle"
17+
sed -i '' "s/airshipProxyVersion = project\.hasProperty('airshipProxyVersion') ? rootProject\.ext\.airshipProxyVersion : '.*'/airshipProxyVersion = project.hasProperty('airshipProxyVersion') ? rootProject.ext.airshipProxyVersion : '$PROXY_VERSION'/" "$ROOT_PATH/android/build.gradle"
1818

1919
# Update ios/Podfile
2020
sed -i '' "s/pod 'AirshipFrameworkProxy'.*$/pod 'AirshipFrameworkProxy', '$PROXY_VERSION'/" "$ROOT_PATH/ios/Podfile"
21+
22+
# Update Package.swift
23+
sed -i '' "s/\.package(url: \"https:\/\/github\.com\/urbanairship\/airship-mobile-framework-proxy\.git\", from: \".*\")/.package(url: \"https:\/\/github.com\/urbanairship\/airship-mobile-framework-proxy.git\", from: \"$PROXY_VERSION\")/" "$ROOT_PATH/Package.swift"

0 commit comments

Comments
 (0)