Skip to content

Commit 9d1d9d4

Browse files
authored
Merge pull request #280 from adjust/v544
Version 5.4.4
2 parents aa7b361 + 989f443 commit 9d1d9d4

File tree

13 files changed

+45
-33
lines changed

13 files changed

+45
-33
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
### Version 5.4.4 (23rd October 2025)
2+
#### Changed
3+
- Updated the Adjust Signature library version to 3.61.0.
4+
5+
#### Native SDKs
6+
- [[email protected]][ios_sdk_v5.4.6]
7+
- [[email protected]][android_sdk_v5.4.5]
8+
9+
---
10+
111
### Version 5.4.3 (22nd September 2025)
212
#### Added
313
- Added support for processing deferred deep links in session responses.
@@ -790,6 +800,7 @@ In case you were using beta version of the SDK v5, please switch to the official
790800
[ios_sdk_v5.4.1]: https://github.com/adjust/ios_sdk/tree/v5.4.1
791801
[ios_sdk_v5.4.3]: https://github.com/adjust/ios_sdk/tree/v5.4.3
792802
[ios_sdk_v5.4.4]: https://github.com/adjust/ios_sdk/tree/v5.4.4
803+
[ios_sdk_v5.4.6]: https://github.com/adjust/ios_sdk/tree/v5.4.6
793804

794805
[android_sdk_v4.10.4]: https://github.com/adjust/android_sdk/tree/v4.10.4
795806
[android_sdk_v4.11.0]: https://github.com/adjust/android_sdk/tree/v4.11.0
@@ -835,3 +846,4 @@ In case you were using beta version of the SDK v5, please switch to the official
835846
[android_sdk_v5.4.1]: https://github.com/adjust/android_sdk/tree/v5.4.1
836847
[android_sdk_v5.4.2]: https://github.com/adjust/android_sdk/tree/v5.4.2
837848
[android_sdk_v5.4.4]: https://github.com/adjust/android_sdk/tree/v5.4.4
849+
[android_sdk_v5.4.5]: https://github.com/adjust/android_sdk/tree/v5.4.5

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
5.4.3
1+
5.4.4

android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,5 @@ android {
2727

2828
dependencies {
2929
implementation 'com.facebook.react:react-native:+'
30-
implementation 'com.adjust.sdk:adjust-android:5.4.4'
30+
implementation 'com.adjust.sdk:adjust-android:5.4.5'
3131
}

example/ios/Podfile.lock

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
PODS:
2-
- Adjust (5.4.4):
3-
- Adjust/Adjust (= 5.4.4)
4-
- Adjust/Adjust (5.4.4):
5-
- AdjustSignature (= 3.47.0)
6-
- AdjustSignature (3.47.0)
2+
- Adjust (5.4.6):
3+
- Adjust/Adjust (= 5.4.6)
4+
- Adjust/Adjust (5.4.6):
5+
- AdjustSignature (= 3.61.0)
6+
- AdjustSignature (3.61.0)
77
- boost (1.84.0)
88
- DoubleConversion (1.1.6)
99
- fast_float (6.1.4)
@@ -1337,8 +1337,8 @@ PODS:
13371337
- React-jsiexecutor
13381338
- React-RCTFBReactNativeSpec
13391339
- ReactCommon/turbomodule/core
1340-
- react-native-adjust (5.4.3):
1341-
- Adjust (= 5.4.4)
1340+
- react-native-adjust (5.4.4):
1341+
- Adjust (= 5.4.6)
13421342
- React-Core
13431343
- React-NativeModulesApple (0.79.2):
13441344
- glog
@@ -1892,8 +1892,8 @@ EXTERNAL SOURCES:
18921892
:path: "../node_modules/react-native/ReactCommon/yoga"
18931893

18941894
SPEC CHECKSUMS:
1895-
Adjust: 3d88c4b4999d13751b7c725099e1a5ba8fbcb8d4
1896-
AdjustSignature: d634fc6b66295c38807f3b4e50978c1f72355950
1895+
Adjust: 293c828a88a2c280471797edb3e895c80652a786
1896+
AdjustSignature: 94b6b7f7150edbbebc4320eeaddaac881f6e8e2d
18971897
boost: 7e761d76ca2ce687f7cc98e698152abd03a18f90
18981898
DoubleConversion: cb417026b2400c8f53ae97020b2be961b59470cb
18991899
fast_float: 06eeec4fe712a76acc9376682e4808b05ce978b6
@@ -1932,7 +1932,7 @@ SPEC CHECKSUMS:
19321932
React-logger: 8edfcedc100544791cd82692ca5a574240a16219
19331933
React-Mapbuffer: c3f4b608e4a59dd2f6a416ef4d47a14400194468
19341934
React-microtasksnativemodule: 054f34e9b82f02bd40f09cebd4083828b5b2beb6
1935-
react-native-adjust: f7944a38209b96b031b5df1dbc07129c923e0027
1935+
react-native-adjust: 69bde27f09efbe930ac1daca6b66db80fcfa8b9f
19361936
React-NativeModulesApple: 2c4377e139522c3d73f5df582e4f051a838ff25e
19371937
React-oscompat: ef5df1c734f19b8003e149317d041b8ce1f7d29c
19381938
React-perflogger: 9a151e0b4c933c9205fd648c246506a83f31395d

index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ Adjust.getLastDeeplink = function(callback) {
154154
};
155155

156156
Adjust.getSdkVersion = function(callback) {
157-
module_adjust.getSdkVersion("react-native5.4.3", callback);
157+
module_adjust.getSdkVersion("react-native5.4.4", callback);
158158
};
159159

160160
Adjust.componentWillUnmount = function() {
@@ -329,7 +329,7 @@ Adjust.teardown = function(testParam) {
329329

330330
var AdjustConfig = function(appToken, environment) {
331331
// common
332-
this.sdkPrefix = "react-native5.4.3";
332+
this.sdkPrefix = "react-native5.4.4";
333333
this.appToken = appToken;
334334
this.environment = environment;
335335
this.logLevel = null;

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "react-native-adjust",
33
"description": "Adjust React Native SDK",
4-
"version": "5.4.3",
4+
"version": "5.4.4",
55
"main": "index.js",
66
"author": "Adjust",
77
"license": "MIT",

plugins/oaid/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "react-native-adjust-oaid",
33
"description": "Adjust React Native OAID plugin",
4-
"version": "5.4.3",
4+
"version": "5.4.4",
55
"main": "index.js",
66
"author": "Adjust",
77
"license": "MIT",

react-native-adjust.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@ Pod::Spec.new do |s|
1818
s.preserve_paths = 'LICENSE', 'README.md', 'package.json', 'index.js'
1919
s.source_files = 'ios/*.{h,m}'
2020

21-
s.dependency 'Adjust', '5.4.4'
21+
s.dependency 'Adjust', '5.4.6'
2222
s.dependency 'React-Core'
2323
end

0 commit comments

Comments
 (0)