@luciq/react-native 18.0.1 → 18.2.0-13120-SNAPSHOT
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +12 -0
- package/RNLuciq.podspec +2 -1
- package/android/build.gradle +1 -2
- package/android/native.gradle +2 -1
- package/android/src/main/java/ai/luciq/reactlibrary/ArgsRegistry.java +1 -0
- package/bin/config/migration-config.json +5 -5
- package/bin/index.js +1 -1
- package/cli/config/migration-config.json +5 -5
- package/dist/native/NativeConstants.d.ts +1 -0
- package/dist/utils/Enums.d.ts +2 -1
- package/dist/utils/Enums.js +1 -0
- package/ios/RNLuciq/ArgsRegistry.m +2 -1
- package/ios/native.rb +1 -1
- package/package.json +1 -2
- package/plugin/build/index.js +482 -367
- package/src/native/NativeConstants.ts +1 -0
- package/src/utils/Enums.ts +1 -0
- package/upload/index.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [18.2.0](https://github.com/luciqai/luciq-reactnative-sdk/compare/v18.2.0...18.0.1)
|
|
4
|
+
|
|
5
|
+
### Changed
|
|
6
|
+
|
|
7
|
+
- Bump Instabug iOS SDK to v18.2.0 ([#11](https://github.com/luciqai/luciq-reactnative-sdk/pull/11)). [See release notes](https://github.com/luciqai/Luciq-iOS-sdk/releases/tag/18.2.0).
|
|
8
|
+
|
|
9
|
+
- Bump Instabug Android SDK to v19.1.0 ([#11](https://github.com/luciqai/luciq-reactnative-sdk/pull/11)). [See release notes](https://github.com/luciqai/Luciq-Android-sdk/releases/tag/v19.1.0).
|
|
10
|
+
|
|
11
|
+
### Added
|
|
12
|
+
|
|
13
|
+
- Replace jcenter with mavencentral. ([#10](https://github.com/luciqai/luciq-reactnative-sdk/pull/10))
|
|
14
|
+
|
|
3
15
|
## [18.0.1] (https://github.com/luciqai/luciq-reactnative-sdk/compare/v18.0.1...18.0.0) (October 27, 2025)
|
|
4
16
|
|
|
5
17
|
### Added
|
package/RNLuciq.podspec
CHANGED
package/android/build.gradle
CHANGED
package/android/native.gradle
CHANGED
|
@@ -151,6 +151,7 @@ final class ArgsRegistry {
|
|
|
151
151
|
put("dropAutoCapturedMedia", ai.luciq.bug.userConsent.ActionType.DROP_AUTO_CAPTURED_MEDIA);
|
|
152
152
|
put("dropLogs", ai.luciq.bug.userConsent.ActionType.DROP_LOGS);
|
|
153
153
|
put("noChat", ai.luciq.bug.userConsent.ActionType.NO_CHAT);
|
|
154
|
+
put("noAutomaticBugGrouping", ai.luciq.bug.userConsent.ActionType.NO_AUTOMATIC_BUG_GROUPING);
|
|
154
155
|
}};
|
|
155
156
|
|
|
156
157
|
static final ArgsMap<Integer> sdkLogLevels = new ArgsMap<Integer>() {{
|
|
@@ -7,27 +7,27 @@
|
|
|
7
7
|
"searchReplace": [
|
|
8
8
|
{
|
|
9
9
|
"search": "com\\.instabug\\.library:instabug:[0-9]+\\.[0-9]+\\.[0-9]+",
|
|
10
|
-
"replacement": "ai.luciq.library:luciq:18.0
|
|
10
|
+
"replacement": "ai.luciq.library:luciq:18.2.0",
|
|
11
11
|
"isRegex": true
|
|
12
12
|
},
|
|
13
13
|
{
|
|
14
14
|
"search": "com\\.instabug\\.library:instabug:[0-9]+\\.[0-9]+\\.[0-9]+-.*",
|
|
15
|
-
"replacement": "ai.luciq.library:luciq:18.0
|
|
15
|
+
"replacement": "ai.luciq.library:luciq:18.2.0",
|
|
16
16
|
"isRegex": true
|
|
17
17
|
},
|
|
18
18
|
{
|
|
19
19
|
"search": "com\\.instabug\\.library:instabug:[0-9]+\\.[0-9]+\\.[0-9]+-SNAPSHOT",
|
|
20
|
-
"replacement": "ai.luciq.library:luciq:18.0
|
|
20
|
+
"replacement": "ai.luciq.library:luciq:18.2.0",
|
|
21
21
|
"isRegex": true
|
|
22
22
|
},
|
|
23
23
|
{
|
|
24
24
|
"search": "\"instabug-react-native\":\\s*\"[^\"]+\"",
|
|
25
|
-
"replacement": "\"@luciq/react-native\": \"^18.0
|
|
25
|
+
"replacement": "\"@luciq/react-native\": \"^18.2.0\"",
|
|
26
26
|
"isRegex": true
|
|
27
27
|
},
|
|
28
28
|
{
|
|
29
29
|
"search": "'instabug-react-native':\\s*'[^']+'",
|
|
30
|
-
"replacement": "'@luciq/react-native': '^18.0
|
|
30
|
+
"replacement": "'@luciq/react-native': '^18.2.0'",
|
|
31
31
|
"isRegex": true
|
|
32
32
|
}
|
|
33
33
|
],
|
package/bin/index.js
CHANGED
|
@@ -14608,7 +14608,7 @@ FormData$1.prototype._error = function (err) {
|
|
|
14608
14608
|
FormData$1.prototype.toString = function () {
|
|
14609
14609
|
return '[object FormData]';
|
|
14610
14610
|
};
|
|
14611
|
-
setToStringTag(FormData$1, 'FormData');
|
|
14611
|
+
setToStringTag(FormData$1.prototype, 'FormData');
|
|
14612
14612
|
var form_data = FormData$1;
|
|
14613
14613
|
var FormData$2 = getDefaultExportFromCjs(form_data);
|
|
14614
14614
|
|
|
@@ -7,27 +7,27 @@
|
|
|
7
7
|
"searchReplace": [
|
|
8
8
|
{
|
|
9
9
|
"search": "com\\.instabug\\.library:instabug:[0-9]+\\.[0-9]+\\.[0-9]+",
|
|
10
|
-
"replacement": "ai.luciq.library:luciq:18.0
|
|
10
|
+
"replacement": "ai.luciq.library:luciq:18.2.0",
|
|
11
11
|
"isRegex": true
|
|
12
12
|
},
|
|
13
13
|
{
|
|
14
14
|
"search": "com\\.instabug\\.library:instabug:[0-9]+\\.[0-9]+\\.[0-9]+-.*",
|
|
15
|
-
"replacement": "ai.luciq.library:luciq:18.0
|
|
15
|
+
"replacement": "ai.luciq.library:luciq:18.2.0",
|
|
16
16
|
"isRegex": true
|
|
17
17
|
},
|
|
18
18
|
{
|
|
19
19
|
"search": "com\\.instabug\\.library:instabug:[0-9]+\\.[0-9]+\\.[0-9]+-SNAPSHOT",
|
|
20
|
-
"replacement": "ai.luciq.library:luciq:18.0
|
|
20
|
+
"replacement": "ai.luciq.library:luciq:18.2.0",
|
|
21
21
|
"isRegex": true
|
|
22
22
|
},
|
|
23
23
|
{
|
|
24
24
|
"search": "\"instabug-react-native\":\\s*\"[^\"]+\"",
|
|
25
|
-
"replacement": "\"@luciq/react-native\": \"^18.0
|
|
25
|
+
"replacement": "\"@luciq/react-native\": \"^18.2.0\"",
|
|
26
26
|
"isRegex": true
|
|
27
27
|
},
|
|
28
28
|
{
|
|
29
29
|
"search": "'instabug-react-native':\\s*'[^']+'",
|
|
30
|
-
"replacement": "'@luciq/react-native': '^18.0
|
|
30
|
+
"replacement": "'@luciq/react-native': '^18.2.0'",
|
|
31
31
|
"isRegex": true
|
|
32
32
|
}
|
|
33
33
|
],
|
package/dist/utils/Enums.d.ts
CHANGED
package/dist/utils/Enums.js
CHANGED
|
@@ -20,6 +20,7 @@ export var userConsentActionType;
|
|
|
20
20
|
userConsentActionType[userConsentActionType["dropAutoCapturedMedia"] = constants.dropAutoCapturedMedia] = "dropAutoCapturedMedia";
|
|
21
21
|
userConsentActionType[userConsentActionType["dropLogs"] = constants.dropLogs] = "dropLogs";
|
|
22
22
|
userConsentActionType[userConsentActionType["noChat"] = constants.noChat] = "noChat";
|
|
23
|
+
userConsentActionType[userConsentActionType["noAutomaticBugGrouping"] = constants.noAutomaticBugGrouping] = "noAutomaticBugGrouping";
|
|
23
24
|
})(userConsentActionType || (userConsentActionType = {}));
|
|
24
25
|
/**
|
|
25
26
|
* The event used to invoke the feedback form.
|
|
@@ -118,7 +118,8 @@
|
|
|
118
118
|
return @{
|
|
119
119
|
@"dropAutoCapturedMedia": @(LCQConsentActionDropAutoCapturedMedia),
|
|
120
120
|
@"dropLogs": @(LCQConsentActionDropLogs),
|
|
121
|
-
@"noChat": @(LCQConsentActionNoChat)
|
|
121
|
+
@"noChat": @(LCQConsentActionNoChat),
|
|
122
|
+
@"noAutomaticBugGrouping": @(LCQConsentActionNoAutomaticBugGrouping)
|
|
122
123
|
};
|
|
123
124
|
}
|
|
124
125
|
+ (ArgsDictionary *) extendedBugReportStates {
|
package/ios/native.rb
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@luciq/react-native",
|
|
3
3
|
"description": "Luciq is the Agentic Observability Platform built for Mobile.",
|
|
4
|
-
"version": "18.0
|
|
4
|
+
"version": "18.2.0-13120-SNAPSHOT",
|
|
5
5
|
"author": "Luciq (https://luciq.ai)",
|
|
6
6
|
"repository": "github:luciqai/luciq-reactnative-sdk",
|
|
7
7
|
"homepage": "https://www.luciq.ai/platforms/react-native",
|
|
@@ -43,7 +43,6 @@
|
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
45
|
"@apollo/client": "^3.7.0",
|
|
46
|
-
"@instabug/danger-plugin-coverage": "Instabug/danger-plugin-coverage",
|
|
47
46
|
"@react-native-community/eslint-config": "^3.1.0",
|
|
48
47
|
"@react-navigation/native": "^6.1.7",
|
|
49
48
|
"@rollup/plugin-commonjs": "^25.0.3",
|