@situm/cordova 3.15.29 → 3.15.30
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/.semgrep.yaml +27 -0
- package/package.json +1 -1
- package/plugin.xml +2 -2
- package/src/ios/Podfile +1 -1
package/.semgrep.yaml
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
rules:
|
|
2
|
+
- id: exported_activity_improved
|
|
3
|
+
patterns:
|
|
4
|
+
- pattern: |
|
|
5
|
+
<activity
|
|
6
|
+
...
|
|
7
|
+
android:exported="true"
|
|
8
|
+
...
|
|
9
|
+
>
|
|
10
|
+
...
|
|
11
|
+
</activity>
|
|
12
|
+
- pattern-not: |
|
|
13
|
+
<activity
|
|
14
|
+
...
|
|
15
|
+
android:exported="true"
|
|
16
|
+
...
|
|
17
|
+
>
|
|
18
|
+
...
|
|
19
|
+
<intent-filter>
|
|
20
|
+
<action android:name="android.intent.action.MAIN"/>
|
|
21
|
+
<category android:name="android.intent.category.LAUNCHER"/>
|
|
22
|
+
</intent-filter>
|
|
23
|
+
...
|
|
24
|
+
</activity>
|
|
25
|
+
message: Non-launcher activity is exported. Review if this needs to be accessible from other apps.
|
|
26
|
+
languages: [xml]
|
|
27
|
+
severity: WARNING
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@situm/cordova",
|
|
3
|
-
"version": "3.15.
|
|
3
|
+
"version": "3.15.30",
|
|
4
4
|
"description": "Situm Wayfinding for Capacitor and Cordova. Integrate plug&play indoor navigation experience with floorplans, POIs, routes and turn-by-turn directions in no time. With the power of Situm.",
|
|
5
5
|
"private": false,
|
|
6
6
|
"repository": "https://github.com/situmtech/cordova",
|
package/plugin.xml
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
|
|
4
4
|
id="@situm/cordova"
|
|
5
|
-
version="3.15.
|
|
5
|
+
version="3.15.30">
|
|
6
6
|
<name>Situm Cordova plugin Official</name>
|
|
7
7
|
<description>This is the stable branch.</description>
|
|
8
8
|
<license>MIT</license>
|
|
@@ -93,7 +93,7 @@
|
|
|
93
93
|
<config>
|
|
94
94
|
</config>
|
|
95
95
|
<pods use-frameworks="false">
|
|
96
|
-
<pod name="SitumSDK" spec="~> 3.34.
|
|
96
|
+
<pod name="SitumSDK" spec="~> 3.34.7"/>
|
|
97
97
|
</pods>
|
|
98
98
|
</podspec>
|
|
99
99
|
|
package/src/ios/Podfile
CHANGED