@dynatrace/react-native-plugin 2.271.3 → 2.273.1
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/README.md +7 -2
- package/android/build.gradle +1 -1
- package/android/src/main/java/com/dynatrace/android/agent/DynatraceRNBridge.java +4 -2
- package/files/plugin.gradle +1 -1
- package/ios/DynatraceRNBridge.m +2 -1
- package/ios/lib/Dynatrace.xcframework/Info.plist +5 -5
- package/ios/lib/Dynatrace.xcframework/ios-arm64/Dynatrace.framework/Dynatrace +0 -0
- package/ios/lib/Dynatrace.xcframework/ios-arm64/Dynatrace.framework/Headers/Dynatrace.h +1 -1
- package/ios/lib/Dynatrace.xcframework/ios-arm64/Dynatrace.framework/Info.plist +0 -0
- package/ios/lib/Dynatrace.xcframework/ios-arm64/Dynatrace.framework/Modules/Dynatrace.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo +0 -0
- package/ios/lib/Dynatrace.xcframework/ios-arm64/Dynatrace.framework/Modules/Dynatrace.swiftmodule/arm64-apple-ios.abi.json +1 -1
- package/ios/lib/Dynatrace.xcframework/ios-arm64_x86_64-simulator/Dynatrace.framework/Dynatrace +0 -0
- package/ios/lib/Dynatrace.xcframework/ios-arm64_x86_64-simulator/Dynatrace.framework/Headers/Dynatrace.h +1 -1
- package/ios/lib/Dynatrace.xcframework/ios-arm64_x86_64-simulator/Dynatrace.framework/Info.plist +0 -0
- package/ios/lib/Dynatrace.xcframework/ios-arm64_x86_64-simulator/Dynatrace.framework/Modules/Dynatrace.swiftmodule/Project/arm64-apple-ios-simulator.swiftsourceinfo +0 -0
- package/ios/lib/Dynatrace.xcframework/ios-arm64_x86_64-simulator/Dynatrace.framework/Modules/Dynatrace.swiftmodule/Project/x86_64-apple-ios-simulator.swiftsourceinfo +0 -0
- package/ios/lib/Dynatrace.xcframework/ios-arm64_x86_64-simulator/Dynatrace.framework/Modules/Dynatrace.swiftmodule/arm64-apple-ios-simulator.abi.json +1 -1
- package/ios/lib/Dynatrace.xcframework/ios-arm64_x86_64-simulator/Dynatrace.framework/Modules/Dynatrace.swiftmodule/x86_64-apple-ios-simulator.abi.json +1 -1
- package/ios/lib/Dynatrace.xcframework/ios-arm64_x86_64-simulator/Dynatrace.framework/_CodeSignature/CodeResources +15 -15
- package/ios/lib/Dynatrace.xcframework/tvos-arm64/Dynatrace.framework/Dynatrace +0 -0
- package/ios/lib/Dynatrace.xcframework/tvos-arm64/Dynatrace.framework/Headers/Dynatrace.h +1 -1
- package/ios/lib/Dynatrace.xcframework/tvos-arm64/Dynatrace.framework/Info.plist +0 -0
- package/ios/lib/Dynatrace.xcframework/tvos-arm64/Dynatrace.framework/Modules/Dynatrace.swiftmodule/Project/arm64-apple-tvos.swiftsourceinfo +0 -0
- package/ios/lib/Dynatrace.xcframework/tvos-arm64_x86_64-simulator/Dynatrace.framework/Dynatrace +0 -0
- package/ios/lib/Dynatrace.xcframework/tvos-arm64_x86_64-simulator/Dynatrace.framework/Headers/Dynatrace.h +1 -1
- package/ios/lib/Dynatrace.xcframework/tvos-arm64_x86_64-simulator/Dynatrace.framework/Info.plist +0 -0
- package/ios/lib/Dynatrace.xcframework/tvos-arm64_x86_64-simulator/Dynatrace.framework/Modules/Dynatrace.swiftmodule/Project/arm64-apple-tvos-simulator.swiftsourceinfo +0 -0
- package/ios/lib/Dynatrace.xcframework/tvos-arm64_x86_64-simulator/Dynatrace.framework/Modules/Dynatrace.swiftmodule/Project/x86_64-apple-tvos-simulator.swiftsourceinfo +0 -0
- package/ios/lib/Dynatrace.xcframework/tvos-arm64_x86_64-simulator/Dynatrace.framework/_CodeSignature/CodeResources +11 -11
- package/lib/instrumentor/DynatraceInstrumentation.js +1 -1
- package/lib/instrumentor/base/Application.js +0 -3
- package/lib/instrumentor/base/Dynatrace.js +2 -6
- package/lib/instrumentor/base/DynatraceInternal.js +2 -1
- package/lib/instrumentor/base/ErrorHandler.js +44 -39
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -29,8 +29,8 @@ If you want to start using this plugin and are not a Dynatrace customer yet, hea
|
|
|
29
29
|
## Agent Versions
|
|
30
30
|
This agent versions are configured in this plugin:
|
|
31
31
|
|
|
32
|
-
* Android Agent: 8.
|
|
33
|
-
* iOS Agent: 8.
|
|
32
|
+
* Android Agent: 8.273.1.1003
|
|
33
|
+
* iOS Agent: 8.273.1.1006
|
|
34
34
|
|
|
35
35
|
## Quick Setup
|
|
36
36
|
|
|
@@ -1169,6 +1169,11 @@ If you are struggling with a problem, submit a support ticket to Dynatrace (supp
|
|
|
1169
1169
|
<br/><br/>
|
|
1170
1170
|
## Changelog
|
|
1171
1171
|
|
|
1172
|
+
2.273.1
|
|
1173
|
+
* Update Android (8.273.1.1003) & iOS Agent (8.273.1.1006)
|
|
1174
|
+
* Crash handler initialization happens earlier in the application
|
|
1175
|
+
* Ignoring duplicated crashes through native crash handler
|
|
1176
|
+
|
|
1172
1177
|
2.271.3
|
|
1173
1178
|
* Update Android (8.271.1.1003) & iOS Agent (8.271.2.1007)
|
|
1174
1179
|
* Fixed createElement logic for older React Native versions
|
package/android/build.gradle
CHANGED
|
@@ -36,7 +36,7 @@ repositories {
|
|
|
36
36
|
}
|
|
37
37
|
|
|
38
38
|
dependencies {
|
|
39
|
-
implementation 'com.dynatrace.agent:agent-android:8.
|
|
39
|
+
implementation 'com.dynatrace.agent:agent-android:8.273.1.1003'
|
|
40
40
|
implementation "com.facebook.react:react-native:${safeExtGet('reactNative', '+')}"
|
|
41
41
|
}
|
|
42
42
|
|
|
@@ -169,10 +169,12 @@ public class DynatraceRNBridge extends ReactContextBaseJavaModule {
|
|
|
169
169
|
}
|
|
170
170
|
|
|
171
171
|
@ReactMethod
|
|
172
|
-
public void reportCrash(String errorName, String reason, String stacktrace, boolean isRealError, String platform){
|
|
172
|
+
public void reportCrash(String errorName, String reason, String stacktrace, boolean isRealError, boolean newSession, String platform){
|
|
173
173
|
if (this.shouldWorkOnAndroid(platform)) {
|
|
174
174
|
Dynatrace.reportCrash(isRealError ? PlatformType.JAVA_SCRIPT : PlatformType.CUSTOM, errorName, reason, stacktrace);
|
|
175
|
-
|
|
175
|
+
if(newSession){
|
|
176
|
+
Dynatrace.createNewSession();
|
|
177
|
+
}
|
|
176
178
|
}
|
|
177
179
|
}
|
|
178
180
|
|
package/files/plugin.gradle
CHANGED
package/ios/DynatraceRNBridge.m
CHANGED
|
@@ -166,7 +166,7 @@ RCT_EXPORT_METHOD(reportError:(NSString *)errorName errorValue:(NSString *)error
|
|
|
166
166
|
}
|
|
167
167
|
}
|
|
168
168
|
|
|
169
|
-
RCT_EXPORT_METHOD(reportCrash:(NSString *)errorName errorReason:(NSString *)errorReason stacktrace:(NSString *)stacktrace isRealError:(BOOL)isRealError platform: (NSString *) platform)
|
|
169
|
+
RCT_EXPORT_METHOD(reportCrash:(NSString *)errorName errorReason:(NSString *)errorReason stacktrace:(NSString *)stacktrace isRealError:(BOOL)isRealError newSession:(BOOL)newSession platform: (NSString *) platform)
|
|
170
170
|
{
|
|
171
171
|
if ([self shouldWorkOnIosWithPlatform: platform])
|
|
172
172
|
{
|
|
@@ -176,6 +176,7 @@ RCT_EXPORT_METHOD(reportCrash:(NSString *)errorName errorReason:(NSString *)erro
|
|
|
176
176
|
[DTXAction reportExternalCrashForPlatformType:-1 crashName:errorName reason:errorReason stacktrace:stacktrace];
|
|
177
177
|
}
|
|
178
178
|
|
|
179
|
+
// We ignore the newSession parameter and always end the session as the iOS agent has no troubles with this behavior
|
|
179
180
|
[Dynatrace endVisit];
|
|
180
181
|
}
|
|
181
182
|
}
|
|
@@ -6,30 +6,30 @@
|
|
|
6
6
|
<array>
|
|
7
7
|
<dict>
|
|
8
8
|
<key>LibraryIdentifier</key>
|
|
9
|
-
<string>ios-
|
|
9
|
+
<string>ios-arm64_x86_64-simulator</string>
|
|
10
10
|
<key>LibraryPath</key>
|
|
11
11
|
<string>Dynatrace.framework</string>
|
|
12
12
|
<key>SupportedArchitectures</key>
|
|
13
13
|
<array>
|
|
14
14
|
<string>arm64</string>
|
|
15
|
+
<string>x86_64</string>
|
|
15
16
|
</array>
|
|
16
17
|
<key>SupportedPlatform</key>
|
|
17
18
|
<string>ios</string>
|
|
19
|
+
<key>SupportedPlatformVariant</key>
|
|
20
|
+
<string>simulator</string>
|
|
18
21
|
</dict>
|
|
19
22
|
<dict>
|
|
20
23
|
<key>LibraryIdentifier</key>
|
|
21
|
-
<string>ios-
|
|
24
|
+
<string>ios-arm64</string>
|
|
22
25
|
<key>LibraryPath</key>
|
|
23
26
|
<string>Dynatrace.framework</string>
|
|
24
27
|
<key>SupportedArchitectures</key>
|
|
25
28
|
<array>
|
|
26
29
|
<string>arm64</string>
|
|
27
|
-
<string>x86_64</string>
|
|
28
30
|
</array>
|
|
29
31
|
<key>SupportedPlatform</key>
|
|
30
32
|
<string>ios</string>
|
|
31
|
-
<key>SupportedPlatformVariant</key>
|
|
32
|
-
<string>simulator</string>
|
|
33
33
|
</dict>
|
|
34
34
|
<dict>
|
|
35
35
|
<key>LibraryIdentifier</key>
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -572,7 +572,7 @@
|
|
|
572
572
|
},
|
|
573
573
|
"ConstValues": [
|
|
574
574
|
{
|
|
575
|
-
"filePath": "\/opt\/jenkins\/workspace\/
|
|
575
|
+
"filePath": "\/opt\/jenkins\/workspace\/gent_ios-agent_release_8.273.x_3\/adk\/DynatraceUEM\/Dynatrace\/SwiftUIExtensions.swift",
|
|
576
576
|
"kind": "BooleanLiteral",
|
|
577
577
|
"offset": 1277,
|
|
578
578
|
"length": 4,
|
package/ios/lib/Dynatrace.xcframework/ios-arm64_x86_64-simulator/Dynatrace.framework/Dynatrace
CHANGED
|
Binary file
|
package/ios/lib/Dynatrace.xcframework/ios-arm64_x86_64-simulator/Dynatrace.framework/Info.plist
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -572,7 +572,7 @@
|
|
|
572
572
|
},
|
|
573
573
|
"ConstValues": [
|
|
574
574
|
{
|
|
575
|
-
"filePath": "\/opt\/jenkins\/workspace\/
|
|
575
|
+
"filePath": "\/opt\/jenkins\/workspace\/gent_ios-agent_release_8.273.x_3\/adk\/DynatraceUEM\/Dynatrace\/SwiftUIExtensions.swift",
|
|
576
576
|
"kind": "BooleanLiteral",
|
|
577
577
|
"offset": 1277,
|
|
578
578
|
"length": 4,
|
|
@@ -572,7 +572,7 @@
|
|
|
572
572
|
},
|
|
573
573
|
"ConstValues": [
|
|
574
574
|
{
|
|
575
|
-
"filePath": "\/opt\/jenkins\/workspace\/
|
|
575
|
+
"filePath": "\/opt\/jenkins\/workspace\/gent_ios-agent_release_8.273.x_3\/adk\/DynatraceUEM\/Dynatrace\/SwiftUIExtensions.swift",
|
|
576
576
|
"kind": "BooleanLiteral",
|
|
577
577
|
"offset": 1277,
|
|
578
578
|
"length": 4,
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
</data>
|
|
11
11
|
<key>Headers/Dynatrace.h</key>
|
|
12
12
|
<data>
|
|
13
|
-
|
|
13
|
+
tA+O5/8g6/rB2FLe17KI5yzePow=
|
|
14
14
|
</data>
|
|
15
15
|
<key>Headers/DynatraceSwiftUI.h</key>
|
|
16
16
|
<data>
|
|
@@ -22,19 +22,19 @@
|
|
|
22
22
|
</data>
|
|
23
23
|
<key>Info.plist</key>
|
|
24
24
|
<data>
|
|
25
|
-
|
|
25
|
+
kWZvFuyywJXfcsKIdwFdv4vMqRY=
|
|
26
26
|
</data>
|
|
27
27
|
<key>Modules/Dynatrace.swiftmodule/Project/arm64-apple-ios-simulator.swiftsourceinfo</key>
|
|
28
28
|
<data>
|
|
29
|
-
|
|
29
|
+
nGYd6fcFzsinN5v2YD46M0xgw6Q=
|
|
30
30
|
</data>
|
|
31
31
|
<key>Modules/Dynatrace.swiftmodule/Project/x86_64-apple-ios-simulator.swiftsourceinfo</key>
|
|
32
32
|
<data>
|
|
33
|
-
|
|
33
|
+
M9xjtk3KdqoyzyFZSeJ/7kKIv6A=
|
|
34
34
|
</data>
|
|
35
35
|
<key>Modules/Dynatrace.swiftmodule/arm64-apple-ios-simulator.abi.json</key>
|
|
36
36
|
<data>
|
|
37
|
-
|
|
37
|
+
VMhlBOh0wRfx9mVKACsYqvY5YEo=
|
|
38
38
|
</data>
|
|
39
39
|
<key>Modules/Dynatrace.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface</key>
|
|
40
40
|
<data>
|
|
@@ -50,11 +50,11 @@
|
|
|
50
50
|
</data>
|
|
51
51
|
<key>Modules/Dynatrace.swiftmodule/arm64-apple-ios-simulator.swiftmodule</key>
|
|
52
52
|
<data>
|
|
53
|
-
|
|
53
|
+
uJJE3LLBHBxIIJbvpm+moYjOiRM=
|
|
54
54
|
</data>
|
|
55
55
|
<key>Modules/Dynatrace.swiftmodule/x86_64-apple-ios-simulator.abi.json</key>
|
|
56
56
|
<data>
|
|
57
|
-
|
|
57
|
+
VMhlBOh0wRfx9mVKACsYqvY5YEo=
|
|
58
58
|
</data>
|
|
59
59
|
<key>Modules/Dynatrace.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface</key>
|
|
60
60
|
<data>
|
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
</data>
|
|
71
71
|
<key>Modules/Dynatrace.swiftmodule/x86_64-apple-ios-simulator.swiftmodule</key>
|
|
72
72
|
<data>
|
|
73
|
-
|
|
73
|
+
3RB2vgFJJoAaw29phPfi0xUefD0=
|
|
74
74
|
</data>
|
|
75
75
|
<key>Modules/module.modulemap</key>
|
|
76
76
|
<data>
|
|
@@ -90,7 +90,7 @@
|
|
|
90
90
|
<dict>
|
|
91
91
|
<key>hash2</key>
|
|
92
92
|
<data>
|
|
93
|
-
|
|
93
|
+
v6xgR0hc67MYVeOJrAPktN4CaweOsXdttN24LOG+1Uk=
|
|
94
94
|
</data>
|
|
95
95
|
</dict>
|
|
96
96
|
<key>Headers/DynatraceSwiftUI.h</key>
|
|
@@ -111,21 +111,21 @@
|
|
|
111
111
|
<dict>
|
|
112
112
|
<key>hash2</key>
|
|
113
113
|
<data>
|
|
114
|
-
|
|
114
|
+
nXfxDURihDle3OD/erhsemBn1KUj4m1V1kRwf5goA+0=
|
|
115
115
|
</data>
|
|
116
116
|
</dict>
|
|
117
117
|
<key>Modules/Dynatrace.swiftmodule/Project/x86_64-apple-ios-simulator.swiftsourceinfo</key>
|
|
118
118
|
<dict>
|
|
119
119
|
<key>hash2</key>
|
|
120
120
|
<data>
|
|
121
|
-
|
|
121
|
+
U67wZ+8OGsRS00EtjZKyZeNSMRzdcC3y240X98tmfNI=
|
|
122
122
|
</data>
|
|
123
123
|
</dict>
|
|
124
124
|
<key>Modules/Dynatrace.swiftmodule/arm64-apple-ios-simulator.abi.json</key>
|
|
125
125
|
<dict>
|
|
126
126
|
<key>hash2</key>
|
|
127
127
|
<data>
|
|
128
|
-
|
|
128
|
+
gSWc0s5BDfNCffdhXxZhG54fI23ZyJGe8Ed+KEO3ZG4=
|
|
129
129
|
</data>
|
|
130
130
|
</dict>
|
|
131
131
|
<key>Modules/Dynatrace.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface</key>
|
|
@@ -153,14 +153,14 @@
|
|
|
153
153
|
<dict>
|
|
154
154
|
<key>hash2</key>
|
|
155
155
|
<data>
|
|
156
|
-
|
|
156
|
+
1QWUoSDXybNA6a6kZa2g1CVR4AN77dXt6IJC3DjQY4M=
|
|
157
157
|
</data>
|
|
158
158
|
</dict>
|
|
159
159
|
<key>Modules/Dynatrace.swiftmodule/x86_64-apple-ios-simulator.abi.json</key>
|
|
160
160
|
<dict>
|
|
161
161
|
<key>hash2</key>
|
|
162
162
|
<data>
|
|
163
|
-
|
|
163
|
+
gSWc0s5BDfNCffdhXxZhG54fI23ZyJGe8Ed+KEO3ZG4=
|
|
164
164
|
</data>
|
|
165
165
|
</dict>
|
|
166
166
|
<key>Modules/Dynatrace.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface</key>
|
|
@@ -188,7 +188,7 @@
|
|
|
188
188
|
<dict>
|
|
189
189
|
<key>hash2</key>
|
|
190
190
|
<data>
|
|
191
|
-
|
|
191
|
+
MrPs4lpyt7q0Ok/ZasdlRz8+2RRiFSUuTTuAb9aKWzw=
|
|
192
192
|
</data>
|
|
193
193
|
</dict>
|
|
194
194
|
<key>Modules/module.modulemap</key>
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/ios/lib/Dynatrace.xcframework/tvos-arm64_x86_64-simulator/Dynatrace.framework/Dynatrace
CHANGED
|
Binary file
|
package/ios/lib/Dynatrace.xcframework/tvos-arm64_x86_64-simulator/Dynatrace.framework/Info.plist
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
</data>
|
|
11
11
|
<key>Headers/Dynatrace.h</key>
|
|
12
12
|
<data>
|
|
13
|
-
|
|
13
|
+
tA+O5/8g6/rB2FLe17KI5yzePow=
|
|
14
14
|
</data>
|
|
15
15
|
<key>Headers/DynatraceSwiftUI.h</key>
|
|
16
16
|
<data>
|
|
@@ -22,15 +22,15 @@
|
|
|
22
22
|
</data>
|
|
23
23
|
<key>Info.plist</key>
|
|
24
24
|
<data>
|
|
25
|
-
|
|
25
|
+
V5mWH0mFVcFIg3+ty69jiq+X3uc=
|
|
26
26
|
</data>
|
|
27
27
|
<key>Modules/Dynatrace.swiftmodule/Project/arm64-apple-tvos-simulator.swiftsourceinfo</key>
|
|
28
28
|
<data>
|
|
29
|
-
|
|
29
|
+
JFcOs56DZteICs6xAu9Ls/tupkM=
|
|
30
30
|
</data>
|
|
31
31
|
<key>Modules/Dynatrace.swiftmodule/Project/x86_64-apple-tvos-simulator.swiftsourceinfo</key>
|
|
32
32
|
<data>
|
|
33
|
-
|
|
33
|
+
++t+1SVT78bdnoYPdtKMGZbEhJk=
|
|
34
34
|
</data>
|
|
35
35
|
<key>Modules/Dynatrace.swiftmodule/arm64-apple-tvos-simulator.abi.json</key>
|
|
36
36
|
<data>
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
</data>
|
|
51
51
|
<key>Modules/Dynatrace.swiftmodule/arm64-apple-tvos-simulator.swiftmodule</key>
|
|
52
52
|
<data>
|
|
53
|
-
|
|
53
|
+
A1uvrLIE/Vj5wK4+JdFjef/hS/Y=
|
|
54
54
|
</data>
|
|
55
55
|
<key>Modules/Dynatrace.swiftmodule/x86_64-apple-tvos-simulator.abi.json</key>
|
|
56
56
|
<data>
|
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
</data>
|
|
71
71
|
<key>Modules/Dynatrace.swiftmodule/x86_64-apple-tvos-simulator.swiftmodule</key>
|
|
72
72
|
<data>
|
|
73
|
-
|
|
73
|
+
qgW9/9Ak8Xv0XNwWR/dTLBE8zcU=
|
|
74
74
|
</data>
|
|
75
75
|
<key>Modules/module.modulemap</key>
|
|
76
76
|
<data>
|
|
@@ -90,7 +90,7 @@
|
|
|
90
90
|
<dict>
|
|
91
91
|
<key>hash2</key>
|
|
92
92
|
<data>
|
|
93
|
-
|
|
93
|
+
v6xgR0hc67MYVeOJrAPktN4CaweOsXdttN24LOG+1Uk=
|
|
94
94
|
</data>
|
|
95
95
|
</dict>
|
|
96
96
|
<key>Headers/DynatraceSwiftUI.h</key>
|
|
@@ -111,14 +111,14 @@
|
|
|
111
111
|
<dict>
|
|
112
112
|
<key>hash2</key>
|
|
113
113
|
<data>
|
|
114
|
-
|
|
114
|
+
mLMfGjZFbsHNH5dRS+QMZHmtaicn+Ci01ETURDUoXl0=
|
|
115
115
|
</data>
|
|
116
116
|
</dict>
|
|
117
117
|
<key>Modules/Dynatrace.swiftmodule/Project/x86_64-apple-tvos-simulator.swiftsourceinfo</key>
|
|
118
118
|
<dict>
|
|
119
119
|
<key>hash2</key>
|
|
120
120
|
<data>
|
|
121
|
-
|
|
121
|
+
gGAUqUkuL8wbwleAQ2aWp/T1D6gqFAvZxtRfo3FQpT0=
|
|
122
122
|
</data>
|
|
123
123
|
</dict>
|
|
124
124
|
<key>Modules/Dynatrace.swiftmodule/arm64-apple-tvos-simulator.abi.json</key>
|
|
@@ -153,7 +153,7 @@
|
|
|
153
153
|
<dict>
|
|
154
154
|
<key>hash2</key>
|
|
155
155
|
<data>
|
|
156
|
-
|
|
156
|
+
jvTzh67lWuideAD0jBPPJAnI6lTdh+kWNorC/CK8pvs=
|
|
157
157
|
</data>
|
|
158
158
|
</dict>
|
|
159
159
|
<key>Modules/Dynatrace.swiftmodule/x86_64-apple-tvos-simulator.abi.json</key>
|
|
@@ -188,7 +188,7 @@
|
|
|
188
188
|
<dict>
|
|
189
189
|
<key>hash2</key>
|
|
190
190
|
<data>
|
|
191
|
-
|
|
191
|
+
oGseKteFcaSQ05EyAt3nZuGEuNauL3lFzDspXkTTYwg=
|
|
192
192
|
</data>
|
|
193
193
|
</dict>
|
|
194
194
|
<key>Modules/module.modulemap</key>
|
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";var o,n=require("@babel/runtime/helpers/interopRequireDefault"),r=n(require("@babel/runtime/helpers/toConsumableArray")),
|
|
1
|
+
"use strict";var o,n=require("@babel/runtime/helpers/interopRequireDefault"),r=n(require("@babel/runtime/helpers/toConsumableArray")),a=(Object.defineProperty(exports,"t",{value:!0}),exports.instrument=void 0,require("path")),c=require("jscodeshift"),i=require("jscodeshift/src/Collection"),e=require("../../scripts/FileOperationHelper"),t=require("../../scripts/PathsConstants"),u=require("../react-native/Touchables.InstrInfo"),l=require("../react-native/RefreshControl.InstrInfo"),f=require("../community/gesture-handler/Touchables.InstrInfo"),d=require("../community/Picker.InstrInfo"),s=require("./parser/Babel"),v=require("./model/Types"),p=(!function(n){n[n.i=-1]="Filtered",n[n.u=0]="Normal",n[n.o=1]="ReactNative",n[n.l=2]="React"}(o=o||{}),[]),m=(p.push.apply(p,(0,r.default)(u.instrumentationInfo)),p.push.apply(p,(0,r.default)(l.instrumentationInfo)),p.push.apply(p,(0,r.default)(f.instrumentationInfo)),p.push.apply(p,(0,r.default)(d.instrumentationInfo)),["AppRegistry","renderApplication","setUpErrorHandling"]),instrument=function(n,r,e){r=h(r);var t=w(r);if(t!==o.i){var i=!1,u=A(r,n);if(t===o.l)O(u),i=!0;else if(t===o.o)r.endsWith("AppRegistry.js")?void 0!==e&&e.autoStart&&(P(u),i=!0):r.endsWith("renderApplication.js")?(y(u),i=!0):r.endsWith("setUpErrorHandling.js")&&(T(u,e.autoStart),i=!0);else{var t=I(r,e);if(!t.input&&!t.lifecycle)return null!=e&&e.debug&&console.log("Dynatrace - Filtered All: ".concat(r)),N(r),n;t.lifecycle&&y(u)&&(i=!0),t.input&&p.forEach(function(n){n=k(u,n);u=n.root,i=i||n.v})}i?(n=u.toSource({quote:"single"}),H(n,r)):N(r),null!=e&&e.debug&&i&&console.log("Dynatrace - Modified Filename: "+r)}else r.includes(a.join("@dynatrace","react-native-plugin"))&&r.endsWith(a.join("lib","instrumentor","base","configuration","ConfigurationDefaults.js"))&&void 0!==e&&(t=A(r,n),void 0!==e.debug&&g(t,"debugAuto",e.debug),void 0!==e.lifecycle&&g(t,"lifecycleUpdateAuto",e.lifecycle.includeUpdate),void 0!==e.bundleName&&g(t,"bundleNameAuto",e.bundleName),void 0!==e.input&&g(t,"actionNamePrivacyAuto",e.input.actionNamePrivacy),n=t.toSource({quote:"single"}),H(n,r));return n},y=(exports.instrument=instrument,function(n){var r=n.findJSXElements(),t=!1;return 0<r.length&&(n.find(c.FunctionDeclaration).forEach(function(n){var r,e=(0,i.fromPaths)([n]);0<e.findJSXElements().length&&null!=n&&null!=n.value&&null!=n.value.id&&n.value.id.name&&(r=e.find(c.ClassDeclaration),e=e.find(c.ClassExpression),0===r.length)&&0===e.length&&(b(n,v.Types.FunctionalComponent,n.value.id.name),t=!0)}),n.find(c.ClassDeclaration).forEach(function(n){0<(0,i.fromPaths)([n]).findJSXElements().length&&null!=n&&null!=n.value&&n.value.id&&n.value.id.name&&(b(n,v.Types.ClassComponent,n.value.id.name),t=!0)}),n.find(c.ArrowFunctionExpression).forEach(function(n){0<(0,i.fromPaths)([n]).findJSXElements().length&&null!=n.parent&&null!=n.parent.value&&null!=n.parent.value.id&&null!=n.parent.value.id.name&&(b(n,v.Types.FunctionalComponent,n.parent.value.id.name),t=!0)})),t}),b=function(n,r,e){for(r=c.expressionStatement(c.assignmentExpression("=",c.memberExpression(c.identifier(e),c.identifier("_dtInfo")),q(r,e)));void 0!==n.parentPath&&"body"!==n.parentPath.name;)n=n.parentPath;void 0!==n.parentPath&&n.insertAfter(r)},q=function(n,r){return c.objectExpression([c.objectProperty(c.identifier("type"),c.numericLiteral(n)),c.objectProperty(c.identifier("name"),c.stringLiteral(r))])},g=function(n,r,e){var n=n.find(c.Identifier).filter(function(n){return n.node.name===r&&"VariableDeclarator"===n.parent.value.type});1===n.length&&("NumericLiteral"===(n=n.paths()[0].parent.value).init.type&&"number"==typeof e?n.init=c.numericLiteral(e):"StringLiteral"===n.init.type&&"string"==typeof e?n.init=c.stringLiteral(e):"BooleanLiteral"===n.init.type&&"boolean"==typeof e&&(n.init=c.booleanLiteral(e)))},A=function(n,r){return c.withParser((0,s.babelParser)(a.extname(n)))(r)},h=function(n){return a.isAbsolute(n)?n.replace(t.default.getApplicationPath()+a.sep,""):n},N=function(n){try{var r=a.join(t.default.getBuildPath(),n+".dtx");e.default.checkIfFileExistsSync(r),e.default.deleteFileSync(r)}catch(n){}},H=function(n,r){r=a.join(t.default.getBuildPath(),r);try{e.default.checkIfFileExistsSync(a.dirname(r))}catch(n){e.default.createDirectorySync(a.dirname(r))}e.default.writeTextToFileSync(r+".dtx",n)},I=function(n,r){var e={input:!1,lifecycle:!1};return void 0!==r&&(void 0!==r.lifecycle&&void 0!==r.lifecycle.instrument&&r.lifecycle.instrument(n)&&(e.lifecycle=!0),void 0!==r.input)&&void 0!==r.input.instrument&&r.input.instrument(n)&&(e.input=!0),e},O=function(n){var r,n=n.find(c.Program);1===n.length&&(r=c.expressionStatement(c.callExpression(c.memberExpression(c.callExpression(c.identifier("require"),[c.stringLiteral("@dynatrace/react-native-plugin/lib/instrumentor/base/ElementHelper")]),c.identifier("instrumentCreateElement")),[c.memberExpression(c.identifier("module"),c.identifier("exports"))])),n.paths()[0].node.body.push(r))},P=function(n){var r=U(n,"runApplication",!0);1===r.length&&(Z(n,{p:"_DynatraceApplicationHandler",module:"@dynatrace/react-native-plugin",reference:"ApplicationHandler"}),j(r.paths()[0].parent.value.body.body,0,C("_DynatraceApplicationHandler","startup",[])))},T=function(n,r){n=n.paths()[0].value.program.body;null!=n&&(j(n,n.length,R({p:"_DynatraceErrorHandler",module:"@dynatrace/react-native-plugin/lib/instrumentor/base/ErrorHandler",reference:""})),j(n,n.length,C("_DynatraceErrorHandler","registerErrorHandler",[])))},j=function(n,r){for(var e=arguments.length,t=new Array(2<e?e-2:0),i=2;i<e;i++)t[i-2]=arguments[i];return n.splice.apply(n,[r,0].concat(t))},U=function(n,r,t){for(var e=arguments.length,i=new Array(3<e?e-3:0),u=3;u<e;u++)i[u-3]=arguments[u];return n.find(c.Identifier).filter(function(n){return n.node.name===r}).filter(function(n){var r=void 0!==n.parent&&void 0!==n.parent.value;t||(r=r&&void 0!==n.parent.value.params&&n.parent.value.params.length===i.length);for(var e=0;e<0;e++)r=r&&n.parent.value.params[e].name===i[e];return r})},w=function(n){if(n.includes("@dynatrace"))return o.i;var r=a.extname(n);if(".js"!==r&&".ts"!==r&&".tsx"!==r&&".jsx"!==r)return o.i;for(var e=a.parse(n),t=e.dir.split(a.sep),i=0;i<t.length;i++)if("node_modules"===t[i]){if("react-native"===t[i+1]||"create-react-class"===t[i+1]||"react-clone-referenced-element"===t[i+1])return m.includes(e.name)?o.o:o.i;if("react"===t[i+1]&&"index"===e.name)return o.l}return o.u},B=function(n,r,e){var t=J(n,r,e);return M(n,r,e)||t},J=function(n,r,e){var t=V(n,r);return 0<t.length&&(void 0!==(t=E(t,r.reference,!1))&&(e.p=t.localName),X(n,e),!0)},M=function(n,r,e){var t=D(n,r.module);if(1===t.length){t=E(t,r.reference,!0);if(void 0!==t)return Y(n,e.defaultImport,t.localName,"ImportNamespaceSpecifier"===t.type),!0}return!1},k=function(n,r){var e=JSON.parse(JSON.stringify(r.new));return{root:n,v:B(n,r.old,e)||z(n,r.old,r.new.defaultImport)}},V=function(n,r){return n.find(c.ImportDeclaration).filter(function(n){return n.node.source.value===r.module&&null!=n.node.specifiers&&n.node.specifiers.some(function(n){return x(n)&&n.imported.name===r.reference||n.local&&n.local.name===r.reference})})},x=function(n){return void 0!==n.imported},z=function(n,r,e){var t=!1;return n.find(c.CallExpression).filter(function(n){return G(n.node.callee)&&K(n.node.arguments[0])&&n.node.arguments[0].value===r.module&&void 0!==n.parent}).forEach(function(n){(void 0===n.parent.value.property||void 0!==n.parent.value.property&&void 0!==n.parent.value.property.name&&n.parent.value.property.name===r.reference)&&(n.node.arguments[0].value=e,t=t||!0)}),t},G=function(n){return"require"===n.name},K=function(n){return"StringLiteral"===n.type||"Literal"===n.type},D=function(n,r){return n.find(c.ImportDeclaration).filter(function(n){return n.node.source.value===r})},E=function(n,e,t){var i;return n.forEach(function(n){void 0!==n.node.specifiers&&(n.node.specifiers=n.node.specifiers.filter(function(n){var r;return x(n)&&!t?((r=n.imported.name!==e)||null==n.local||n.imported.name===n.local.name||(i={localName:n.local.name,type:n.type}),r):!(!x(n)&&t&&(null!=n.local&&(i={localName:n.local.name,type:n.type}),1))}),0===n.node.specifiers.length)&&n.prune()}),i},Q=function(n,r){n.find(c.ImportDeclaration).filter(function(n){return n.node.source.value===r.module}).forEach(function(n){null!=n.node.specifiers&&n.node.specifiers.push(F(r))})},W=function(n,r,e){n.find(c.ImportDeclaration).filter(function(n){return n.node.source.value===r}).forEach(function(n){null!=n.node.specifiers&&n.node.specifiers.push(e)})},_=function(n,r,e){var t=n.find(c.ImportDeclaration);0<t.length?c(t.paths()[0]).insertAfter(S(r,e)):1===(t=n.find(c.Program)).length&&t.paths()[0].node.body.unshift(S(r,e))},X=function(n,r){0<D(n,r.module).length?Q(n,r):_(n,r.module,[F(r)])},Y=function(n,r,e,t){var i=D(n,r),t=(t?un:tn)(e);0<i.length?W(n,r,t):_(n,r,[t])},Z=function(n,r){n=n.find(c.VariableDeclaration);0<n.length&&c(n.paths()[0]).insertAfter(R(r))},C=function(n,r,e){return c.expressionStatement($(n,r,e))},$=function(n,r,e){return c.callExpression(en(n,r),e)},R=function(n){return c.variableDeclaration("var",[nn(n)])},nn=function(n){return c.variableDeclarator(void 0!==n.p?c.identifier(n.p):c.identifier(n.reference),(0<n.reference.length?rn:L)(n))},rn=function(n){return c.memberExpression(L(n),c.identifier(n.reference))},en=function(n,r){return c.memberExpression(c.identifier(n),c.identifier(r))},L=function(n){return c.callExpression(c.identifier("require"),[c.literal(n.module)])},S=function(n,r){return c.importDeclaration(r,c.literal(n))},F=function(n){return void 0!==n.p?c.importSpecifier(c.identifier(n.reference),c.identifier(n.p)):c.importSpecifier(c.identifier(n.reference))},tn=function(n){return c.importDefaultSpecifier(c.identifier(n))},un=function(n){return c.importNamespaceSpecifier(c.identifier(n))};
|
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.ApplicationHandler = void 0;
|
|
4
|
-
const ErrorHandler_1 = require("./ErrorHandler");
|
|
5
|
-
const Dynatrace_1 = require("./Dynatrace");
|
|
6
4
|
const Configuration_1 = require("./configuration/Configuration");
|
|
7
5
|
const Logger_1 = require("./Logger");
|
|
8
6
|
exports.ApplicationHandler = {
|
|
@@ -10,7 +8,6 @@ exports.ApplicationHandler = {
|
|
|
10
8
|
if (!Configuration_1.Configuration.isConfigurationAvailable()) {
|
|
11
9
|
Logger_1.Logger.logDebug('Configuration set: ' +
|
|
12
10
|
JSON.stringify(Configuration_1.Configuration.loadConfiguration()));
|
|
13
|
-
(0, ErrorHandler_1.ErrorHandler)(Dynatrace_1.Dynatrace, Logger_1.Logger).registerErrorHandler();
|
|
14
11
|
Logger_1.Logger.logInfo('Dynatrace React Native Plugin started!');
|
|
15
12
|
}
|
|
16
13
|
},
|
|
@@ -17,7 +17,6 @@ const DataCollectionLevel_1 = require("./model/DataCollectionLevel");
|
|
|
17
17
|
const UserPrivacyOptions_1 = require("./UserPrivacyOptions");
|
|
18
18
|
const Logger_1 = require("./Logger");
|
|
19
19
|
const Configuration_1 = require("./configuration/Configuration");
|
|
20
|
-
const ErrorHandler_1 = require("./ErrorHandler");
|
|
21
20
|
const DynatraceRootAction_1 = require("./DynatraceRootAction");
|
|
22
21
|
const NullRootAction_1 = require("./NullRootAction");
|
|
23
22
|
const DynatraceInternal_1 = require("./DynatraceInternal");
|
|
@@ -28,9 +27,6 @@ exports.Dynatrace = {
|
|
|
28
27
|
if (!Configuration_1.Configuration.isConfigurationAvailable()) {
|
|
29
28
|
if (configuration !== undefined) {
|
|
30
29
|
yield DynatraceBridge_1.DynatraceNative.start(configuration);
|
|
31
|
-
if (configuration.reportCrash != null) {
|
|
32
|
-
(0, ErrorHandler_1.ErrorHandler)(exports.Dynatrace, Logger_1.Logger).registerErrorHandler();
|
|
33
|
-
}
|
|
34
30
|
Configuration_1.Configuration.setConfiguration(configuration);
|
|
35
31
|
Logger_1.Logger.logDebug('Manual Configuration set: ' + JSON.stringify(configuration));
|
|
36
32
|
}
|
|
@@ -155,7 +151,7 @@ exports.Dynatrace = {
|
|
|
155
151
|
}
|
|
156
152
|
}
|
|
157
153
|
Logger_1.Logger.logDebug(`Dynatrace reportCrash(${crashName}, ${reason}, ${stacktrace})`);
|
|
158
|
-
DynatraceBridge_1.DynatraceNative.reportCrash(crashName, reason, stacktrace, false, platform);
|
|
154
|
+
DynatraceBridge_1.DynatraceNative.reportCrash(crashName, reason, stacktrace, false, true, platform);
|
|
159
155
|
}
|
|
160
156
|
}
|
|
161
157
|
else {
|
|
@@ -174,7 +170,7 @@ exports.Dynatrace = {
|
|
|
174
170
|
}
|
|
175
171
|
}
|
|
176
172
|
Logger_1.Logger.logDebug(`Dynatrace reportCrashWithException(${crashName}, ${crash.stack})`);
|
|
177
|
-
DynatraceBridge_1.DynatraceNative.reportCrash(crashName, crashReason, crash.stack, true, platform);
|
|
173
|
+
DynatraceBridge_1.DynatraceNative.reportCrash(crashName, crashReason, crash.stack, true, true, platform);
|
|
178
174
|
}
|
|
179
175
|
}
|
|
180
176
|
else {
|
|
@@ -4,6 +4,7 @@ exports.DynatraceInternal = void 0;
|
|
|
4
4
|
const StringUtils_1 = require("./util/StringUtils");
|
|
5
5
|
const DynatraceBridge_1 = require("./DynatraceBridge");
|
|
6
6
|
const Logger_1 = require("./Logger");
|
|
7
|
+
const ErrorHandler_1 = require("./ErrorHandler");
|
|
7
8
|
let counter = 0;
|
|
8
9
|
exports.DynatraceInternal = {
|
|
9
10
|
reportErrorFromHandler: (isFatal, errorName, reason, stacktrace, platform) => {
|
|
@@ -15,7 +16,7 @@ exports.DynatraceInternal = {
|
|
|
15
16
|
}
|
|
16
17
|
Logger_1.Logger.logDebug(`Dynatrace reportErrorStacktrace(${isFatal}, ${errorName}, ${reason}, ${stacktrace})`);
|
|
17
18
|
if (isFatal) {
|
|
18
|
-
DynatraceBridge_1.DynatraceNative.reportCrash(errorName, reason, stacktrace, true, platform);
|
|
19
|
+
DynatraceBridge_1.DynatraceNative.reportCrash(errorName, reason, stacktrace, true, __DEV__ || (0, ErrorHandler_1.isCustomErrorHandlerSet)(), platform);
|
|
19
20
|
}
|
|
20
21
|
else {
|
|
21
22
|
DynatraceBridge_1.DynatraceNative.reportError(errorName, '-', reason, stacktrace, platform);
|
|
@@ -1,48 +1,53 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports._reportErrorToDynatrace = exports.isCustomErrorHandlerSet = exports.registerErrorHandler = void 0;
|
|
4
4
|
const DynatraceInternal_1 = require("./DynatraceInternal");
|
|
5
|
+
const Dynatrace_1 = require("./Dynatrace");
|
|
5
6
|
const StringUtils_1 = require("./util/StringUtils");
|
|
7
|
+
const Logger_1 = require("./Logger");
|
|
8
|
+
let _isCustomErrorHandlerSet = false;
|
|
6
9
|
const _isReactNativeGlobal = (globalScope) => globalScope.ErrorUtils !== undefined;
|
|
7
|
-
const
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
10
|
+
const registerErrorHandler = () => {
|
|
11
|
+
if (global !== undefined && _isReactNativeGlobal(global)) {
|
|
12
|
+
const oldHandler = global.ErrorUtils.getGlobalHandler();
|
|
13
|
+
global.ErrorUtils.setGlobalHandler((error, isFatal) => {
|
|
14
|
+
(0, exports._reportErrorToDynatrace)(error, isFatal, oldHandler);
|
|
15
|
+
});
|
|
16
|
+
const setter = global.ErrorUtils.setGlobalHandler;
|
|
17
|
+
global.ErrorUtils.setGlobalHandler = (errorHandler) => {
|
|
18
|
+
_isCustomErrorHandlerSet = true;
|
|
19
|
+
setter((error, isFatal) => {
|
|
20
|
+
(0, exports._reportErrorToDynatrace)(error, isFatal, errorHandler);
|
|
13
21
|
});
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
Dynatrace.reportError(String(exception.name) + ': ' + exception.message, -1);
|
|
34
|
-
Logger.logDebug(`ErrorHandler _reportErrorToDynatrace(${exception})`);
|
|
35
|
-
}
|
|
22
|
+
};
|
|
23
|
+
}
|
|
24
|
+
};
|
|
25
|
+
exports.registerErrorHandler = registerErrorHandler;
|
|
26
|
+
const isCustomErrorHandlerSet = () => _isCustomErrorHandlerSet;
|
|
27
|
+
exports.isCustomErrorHandlerSet = isCustomErrorHandlerSet;
|
|
28
|
+
const _reportErrorToDynatrace = (exception, isFatal, oldHandler) => {
|
|
29
|
+
if (exception != null && isExceptionAnError(exception)) {
|
|
30
|
+
if (!StringUtils_1.StringUtils.isStringNullEmptyOrUndefined(exception.name)) {
|
|
31
|
+
if (isFatal === undefined) {
|
|
32
|
+
isFatal = false;
|
|
33
|
+
}
|
|
34
|
+
if (exception.stack != null) {
|
|
35
|
+
DynatraceInternal_1.DynatraceInternal.reportErrorFromHandler(isFatal, String(exception.name), exception.message, exception.stack);
|
|
36
|
+
Logger_1.Logger.logDebug(`ErrorHandler _reportErrorToDynatrace(${exception}, ${isFatal})`);
|
|
37
|
+
}
|
|
38
|
+
else {
|
|
39
|
+
Dynatrace_1.Dynatrace.reportError(String(exception.name) + ': ' + exception.message, -1);
|
|
40
|
+
Logger_1.Logger.logDebug(`ErrorHandler _reportErrorToDynatrace(${exception})`);
|
|
36
41
|
}
|
|
37
42
|
}
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
}
|
|
46
|
-
}
|
|
47
|
-
exports.
|
|
43
|
+
}
|
|
44
|
+
else {
|
|
45
|
+
Dynatrace_1.Dynatrace.reportError(String(exception), -1);
|
|
46
|
+
Logger_1.Logger.logDebug(`ErrorHandler _reportErrorToDynatrace(${exception})`);
|
|
47
|
+
}
|
|
48
|
+
if (oldHandler !== undefined) {
|
|
49
|
+
oldHandler(exception, isFatal);
|
|
50
|
+
}
|
|
51
|
+
};
|
|
52
|
+
exports._reportErrorToDynatrace = _reportErrorToDynatrace;
|
|
48
53
|
const isExceptionAnError = (exception) => exception.message !== undefined;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dynatrace/react-native-plugin",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.273.1",
|
|
4
4
|
"description": "This plugin gives you the ability to use the Dynatrace Mobile agent in your react native application.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "typings/react-native-dynatrace.d.ts",
|
|
@@ -71,7 +71,7 @@
|
|
|
71
71
|
"author": "Dynatrace",
|
|
72
72
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
73
73
|
"dependencies": {
|
|
74
|
-
"@babel/runtime": "^7.22.
|
|
74
|
+
"@babel/runtime": "^7.22.10",
|
|
75
75
|
"jscodeshift": "^0.15.0",
|
|
76
76
|
"plist": "^3.1.0",
|
|
77
77
|
"proxy-polyfill": "^0.3.2",
|