diff --git a/.github/workflows/pull_request_verification.yml b/.github/workflows/pull_request_verification.yml index ac85de0..1111171 100644 --- a/.github/workflows/pull_request_verification.yml +++ b/.github/workflows/pull_request_verification.yml @@ -32,7 +32,7 @@ jobs: - name: Verify iOS working-directory: source run: | - kotlinc -script .github/scripts/verify-plugins.main.kts iOS + kotlin .github/scripts/verify-plugins.main.kts iOS verify-react: runs-on: macos-15-xlarge if: ${{ !github.event.pull_request.draft }} @@ -55,7 +55,7 @@ jobs: - name: Verify React Framework working-directory: source run: | - kotlinc -script .github/scripts/verify-plugins.main.kts react-native + kotlin .github/scripts/verify-plugins.main.kts react-native verify-android-sample: runs-on: macos-15-xlarge if: ${{ !github.event.pull_request.draft }} @@ -83,7 +83,7 @@ jobs: - name: Verify Android SampleApp working-directory: source run: | - kotlinc -script .github/scripts/verify-plugins.main.kts android-sample + kotlin .github/scripts/verify-plugins.main.kts android-sample verify-android-expo: runs-on: macos-15-xlarge if: ${{ !github.event.pull_request.draft }} @@ -116,4 +116,4 @@ jobs: env: EXPO_PREBUILD_CACHED: ${{ steps.expo-prebuild-cache.outputs.cache-hit == 'true' }} run: | - kotlinc -script .github/scripts/verify-plugins.main.kts android-expo + kotlin .github/scripts/verify-plugins.main.kts android-expo diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c88735c..74fe29b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -47,7 +47,7 @@ jobs: - name: Publishing plugins working-directory: source run: | - .github/scripts/release.main.kts ${{ github.event.inputs.releaseNotes }} ${{ github.event.inputs.releaseTicket }} + kotlin .github/scripts/release.main.kts ${{ github.event.inputs.releaseNotes }} ${{ github.event.inputs.releaseTicket }} env: GH_TOKEN: ${{ secrets.SDK_BOT_ACCESS_TOKEN }} - name: Notify release diff --git a/sdk/cards/CHANGELOG.md b/sdk/cards/CHANGELOG.md index 35ad735..dabcee1 100644 --- a/sdk/cards/CHANGELOG.md +++ b/sdk/cards/CHANGELOG.md @@ -1,3 +1,12 @@ +# Release Date + +## Release Version + +- Android + - [minor] updating `android-bom` to `2.3.0` +- iOS + - [minor] updating `MoEngagePluginCards` to `3.11.0` + # 11-06-2026 ## 6.5.1 diff --git a/sdk/cards/ReactNativeMoEngageCards.podspec b/sdk/cards/ReactNativeMoEngageCards.podspec index 31021ac..fd9a93a 100644 --- a/sdk/cards/ReactNativeMoEngageCards.podspec +++ b/sdk/cards/ReactNativeMoEngageCards.podspec @@ -19,7 +19,7 @@ Pod::Spec.new do |s| s.source_files = "ios/**/*.{h,m,mm,swift}" s.public_header_files = 'ios/**/*.h' s.dependency 'React' - s.dependency 'MoEngagePluginCards','3.10.0' + s.dependency 'MoEngagePluginCards','3.11.0' s.dependency 'ReactNativeMoEngage' s.module_map = false diff --git a/sdk/cards/android/build.gradle b/sdk/cards/android/build.gradle index 46bc007..15a6430 100644 --- a/sdk/cards/android/build.gradle +++ b/sdk/cards/android/build.gradle @@ -1,8 +1,8 @@ import com.moengage.gradle.android.library.plugin.configs.BuildConfigType ext { - moengageNativeBOMVersion = "2.2.2" - moengagePluginBaseBOMVersion = "3.0.1" + moengageNativeBOMVersion = "2.3.0" + moengagePluginBaseBOMVersion = "3.1.0" kotlinVersion = "1.9.23" } diff --git a/sdk/core/CHANGELOG.md b/sdk/core/CHANGELOG.md index 2c8f823..1e99ace 100644 --- a/sdk/core/CHANGELOG.md +++ b/sdk/core/CHANGELOG.md @@ -1,3 +1,13 @@ +# Release Date + +## Release Version + +- Android + - [minor] updating `android-bom` to `2.3.0` +- iOS + - [minor] updating `MoEngagePluginBase` to `6.10.0` + - [minor] updating `MoEngage-iOS-SDK` to `10.14.0` + # 11-06-2026 ## 12.8.1 diff --git a/sdk/core/ReactNativeMoEngage.podspec b/sdk/core/ReactNativeMoEngage.podspec index f89aff6..0448749 100644 --- a/sdk/core/ReactNativeMoEngage.podspec +++ b/sdk/core/ReactNativeMoEngage.podspec @@ -25,7 +25,7 @@ Pod::Spec.new do |s| s.public_header_files = "iOS/MoEReactBridge/{#{headers.join(',')}}.h" s.weak_framework = 'UserNotifications' s.dependency 'React' - s.dependency 'MoEngagePluginBase','6.9.0' + s.dependency 'MoEngagePluginBase','6.10.0' s.ios.dependency 'MoEngage-iOS-SDK/RichNotification' s.prepare_command = <<-CMD diff --git a/sdk/core/android/moengage-dependency-helper.gradle b/sdk/core/android/moengage-dependency-helper.gradle index 217d7cc..e9989dd 100644 --- a/sdk/core/android/moengage-dependency-helper.gradle +++ b/sdk/core/android/moengage-dependency-helper.gradle @@ -7,8 +7,8 @@ repositories { ext { // MoEngage Versions - moengageNativeBOMVersion = "2.2.2" - moengagePluginBaseBOMVersion = "3.0.1" + moengageNativeBOMVersion = "2.3.0" + moengagePluginBaseBOMVersion = "3.1.0" // AndroidX Support Libraries Versions androidXCore = "1.15.0" diff --git a/sdk/geofence/CHANGELOG.md b/sdk/geofence/CHANGELOG.md index cec0278..39f94fe 100644 --- a/sdk/geofence/CHANGELOG.md +++ b/sdk/geofence/CHANGELOG.md @@ -1,3 +1,12 @@ +# Release Date + +## Release Version + +- Android + - [minor] updating `android-bom` to `2.3.0` +- iOS + - [minor] updating `MoEngagePluginGeofence` to `4.10.0` + # 11-06-2026 ## 7.4.1 diff --git a/sdk/geofence/ReactNativeMoEngageGeofence.podspec b/sdk/geofence/ReactNativeMoEngageGeofence.podspec index 18612dc..dee6e53 100644 --- a/sdk/geofence/ReactNativeMoEngageGeofence.podspec +++ b/sdk/geofence/ReactNativeMoEngageGeofence.podspec @@ -13,7 +13,7 @@ Pod::Spec.new do |s| s.authors = "MoEngage Inc." s.source = {:file => './' } s.platform = :ios, "13.0" - s.dependency 'MoEngagePluginGeofence', '4.9.0' + s.dependency 'MoEngagePluginGeofence', '4.10.0' s.dependency 'React' s.dependency 'ReactNativeMoEngage' s.source_files = "ios/**/*.{h,m,mm,swift}" diff --git a/sdk/geofence/android/build.gradle b/sdk/geofence/android/build.gradle index 753fd08..a14658f 100644 --- a/sdk/geofence/android/build.gradle +++ b/sdk/geofence/android/build.gradle @@ -1,8 +1,8 @@ import com.moengage.gradle.android.library.plugin.configs.BuildConfigType ext { - moengageNativeBOMVersion = "2.2.2" - moengagePluginBaseBOMVersion = "3.0.1" + moengageNativeBOMVersion = "2.3.0" + moengagePluginBaseBOMVersion = "3.1.0" kotlinVersion = "1.9.23" } diff --git a/sdk/inbox/CHANGELOG.md b/sdk/inbox/CHANGELOG.md index 9293af5..bac4a0f 100644 --- a/sdk/inbox/CHANGELOG.md +++ b/sdk/inbox/CHANGELOG.md @@ -1,3 +1,12 @@ +# Release Date + +## Release Version + +- Android + - [minor] updating `android-bom` to `2.3.0` +- iOS + - [minor] updating `MoEngagePluginInbox` to `4.10.0` + # 11-06-2026 ## 6.4.1 diff --git a/sdk/inbox/ReactNativeMoEngageInbox.podspec b/sdk/inbox/ReactNativeMoEngageInbox.podspec index 53fc9f0..3a8964a 100644 --- a/sdk/inbox/ReactNativeMoEngageInbox.podspec +++ b/sdk/inbox/ReactNativeMoEngageInbox.podspec @@ -17,7 +17,7 @@ Pod::Spec.new do |s| s.public_header_files = 'ios/**/*.h' s.dependency "React-Core" - s.dependency "MoEngagePluginInbox",'4.9.0' + s.dependency "MoEngagePluginInbox",'4.10.0' s.dependency 'ReactNativeMoEngage' s.module_map = false diff --git a/sdk/inbox/android/build.gradle b/sdk/inbox/android/build.gradle index 598e5bb..853c900 100644 --- a/sdk/inbox/android/build.gradle +++ b/sdk/inbox/android/build.gradle @@ -1,8 +1,8 @@ import com.moengage.gradle.android.library.plugin.configs.BuildConfigType ext { - moengageNativeBOMVersion = "2.2.1" - moengagePluginBaseBOMVersion = "3.0.1" + moengageNativeBOMVersion = "2.3.0" + moengagePluginBaseBOMVersion = "3.1.0" kotlinVersion = "1.9.23" } diff --git a/sdk/personalize/CHANGELOG.md b/sdk/personalize/CHANGELOG.md index e00639a..0f01379 100644 --- a/sdk/personalize/CHANGELOG.md +++ b/sdk/personalize/CHANGELOG.md @@ -3,7 +3,10 @@ ## 1.0.2 - Android + - [minor] updating `android-bom` to `2.3.0` - Downgrading Compile Java Version to 17 +- iOS + - [minor] updating `MoEngagePluginPersonalize` to `1.1.0` # 19-05-2026 diff --git a/sdk/personalize/ReactNativeMoEngagePersonalize.podspec b/sdk/personalize/ReactNativeMoEngagePersonalize.podspec index 574cc3e..0f40761 100644 --- a/sdk/personalize/ReactNativeMoEngagePersonalize.podspec +++ b/sdk/personalize/ReactNativeMoEngagePersonalize.podspec @@ -17,7 +17,7 @@ Pod::Spec.new do |s| s.public_header_files = 'ios/**/*.h' s.dependency "React-Core" - s.dependency "MoEngagePluginPersonalize",'1.0.0' + s.dependency "MoEngagePluginPersonalize",'1.1.0' s.dependency 'ReactNativeMoEngage' s.module_map = false diff --git a/sdk/personalize/android/build.gradle b/sdk/personalize/android/build.gradle index b78b143..e6b8a72 100644 --- a/sdk/personalize/android/build.gradle +++ b/sdk/personalize/android/build.gradle @@ -1,8 +1,8 @@ import com.moengage.gradle.android.library.plugin.configs.BuildConfigType ext { - moengageNativeBOMVersion = "2.2.2" - moengagePluginBaseBOMVersion = "3.0.1" + moengageNativeBOMVersion = "2.3.0" + moengagePluginBaseBOMVersion = "3.1.0" kotlinVersion = "1.9.23" }