Skip to content
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
10 changes: 1 addition & 9 deletions .github/workflows/publish-reusable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: 'lts/*'
registry-url: https://registry.npmjs.org
- name: Setup GIT
run: |
git config user.email '$GITHUB_ACTOR@users.noreply.github.com'
Expand All @@ -82,15 +83,6 @@ jobs:
else
echo "::set-output name=is_prerelease::false"
fi
- name: Remove npm auth config (for trusted publishing)
run: |
echo "NPM_CONFIG_USERCONFIG=$NPM_CONFIG_USERCONFIG"
if [ -n "$NPM_CONFIG_USERCONFIG" ] && [ -f "$NPM_CONFIG_USERCONFIG" ]; then
rm -f "$NPM_CONFIG_USERCONFIG"
echo "Removed temp .npmrc"
else
echo "No temp .npmrc found"
fi
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [Unreleased]

### Changes
- Upgrade Android SDK dependency to v2.14.5
- Upgrade iOS SDK dependency to v2.14.5


## [2.14.5] - 2025-11-21

### Changes
Expand Down
4 changes: 2 additions & 2 deletions MindboxSdk.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ Pod::Spec.new do |s|

s.dependency "React-Core"

s.dependency "Mindbox", "2.14.4"
s.dependency "MindboxNotifications", "2.14.4"
s.dependency "Mindbox", "2.14.5"
s.dependency "MindboxNotifications", "2.14.5"
end
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -126,5 +126,5 @@ dependencies {
// noinspection GradleDynamicVersion
api 'com.facebook.react:react-native:+'
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
api 'cloud.mindbox:mobile-sdk:2.14.4'
api 'cloud.mindbox:mobile-sdk:2.14.5'
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "mindbox-sdk",
"version": "2.14.5",
"target-version": "2.14.5",
"target-version": "2.14.6",
"description": "SDK for integration React Native mobile apps with Mindbox",
"main": "lib/commonjs/index",
"module": "lib/module/index",
Expand Down
Loading