@appthreat/atom 2.0.21 → 2.0.22
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/package.json +3 -3
- package/plugins/bin/atom +1 -1
- package/plugins/bin/atom.bat +1 -1
- package/plugins/composer/installed.php +6 -6
- package/plugins/lib/com.lihaoyi.geny_3-1.1.1.jar +0 -0
- package/plugins/lib/com.lihaoyi.ujson_3-4.0.2.jar +0 -0
- package/plugins/lib/com.lihaoyi.upack_3-4.0.2.jar +0 -0
- package/plugins/lib/com.lihaoyi.upickle-core_3-4.0.2.jar +0 -0
- package/plugins/lib/com.lihaoyi.upickle-implicits_3-4.0.2.jar +0 -0
- package/plugins/lib/com.lihaoyi.upickle_3-4.0.2.jar +0 -0
- package/plugins/lib/io.appthreat.atom-2.0.22-classpath.jar +0 -0
- package/plugins/lib/{io.appthreat.atom-2.0.21.jar → io.appthreat.atom-2.0.22.jar} +0 -0
- package/plugins/lib/{io.appthreat.c2cpg_3-2.1.9.jar → io.appthreat.c2cpg_3-2.2.1.jar} +0 -0
- package/plugins/lib/{io.appthreat.dataflowengineoss_3-2.1.9.jar → io.appthreat.dataflowengineoss_3-2.2.1.jar} +0 -0
- package/plugins/lib/{io.appthreat.javasrc2cpg_3-2.1.9.jar → io.appthreat.javasrc2cpg_3-2.2.1.jar} +0 -0
- package/plugins/lib/{io.appthreat.jimple2cpg_3-2.1.9.jar → io.appthreat.jimple2cpg_3-2.2.1.jar} +0 -0
- package/plugins/lib/{io.appthreat.jssrc2cpg_3-2.1.9.jar → io.appthreat.jssrc2cpg_3-2.2.1.jar} +0 -0
- package/plugins/lib/{io.appthreat.php2atom_3-2.1.9.jar → io.appthreat.php2atom_3-2.2.1.jar} +0 -0
- package/plugins/lib/{io.appthreat.pysrc2cpg_3-2.1.9.jar → io.appthreat.pysrc2cpg_3-2.2.1.jar} +0 -0
- package/plugins/lib/{io.appthreat.semanticcpg_3-2.1.9.jar → io.appthreat.semanticcpg_3-2.2.1.jar} +0 -0
- package/plugins/lib/{io.appthreat.x2cpg_3-2.1.9.jar → io.appthreat.x2cpg_3-2.2.1.jar} +0 -0
- package/plugins/lib/{org.ow2.asm.asm-9.7.jar → org.ow2.asm.asm-9.7.1.jar} +0 -0
- package/plugins/lib/org.ow2.asm.asm-analysis-9.7.1.jar +0 -0
- package/plugins/lib/{org.ow2.asm.asm-tree-9.7.jar → org.ow2.asm.asm-tree-9.7.1.jar} +0 -0
- package/plugins/lib/org.ow2.asm.asm-util-9.7.1.jar +0 -0
- package/plugins/lib/{org.projectlombok.lombok-1.18.34.jar → org.projectlombok.lombok-1.18.36.jar} +0 -0
- package/plugins/lib/{org.scala-lang.scala3-library_3-3.5.1.jar → org.scala-lang.scala3-library_3-3.5.2.jar} +0 -0
- package/plugins/lib/com.lihaoyi.geny_3-1.1.0.jar +0 -0
- package/plugins/lib/com.lihaoyi.ujson_3-3.3.1.jar +0 -0
- package/plugins/lib/com.lihaoyi.upack_3-3.3.1.jar +0 -0
- package/plugins/lib/com.lihaoyi.upickle-core_3-3.3.1.jar +0 -0
- package/plugins/lib/com.lihaoyi.upickle-implicits_3-3.3.1.jar +0 -0
- package/plugins/lib/com.lihaoyi.upickle_3-3.3.1.jar +0 -0
- package/plugins/lib/io.appthreat.atom-2.0.21-classpath.jar +0 -0
- package/plugins/lib/org.ow2.asm.asm-analysis-9.7.jar +0 -0
- package/plugins/lib/org.ow2.asm.asm-util-9.7.jar +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@appthreat/atom",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.22",
|
|
4
4
|
"description": "Create atom (⚛) representation for your application, packages and libraries",
|
|
5
5
|
"exports": "./index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -9,8 +9,8 @@
|
|
|
9
9
|
"lint": "eslint *.mjs *.js"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"@babel/parser": "^7.
|
|
13
|
-
"typescript": "^5.6.
|
|
12
|
+
"@babel/parser": "^7.26.2",
|
|
13
|
+
"typescript": "^5.6.3",
|
|
14
14
|
"yargs": "^17.7.2"
|
|
15
15
|
},
|
|
16
16
|
"devDependencies": {
|
package/plugins/bin/atom
CHANGED
|
@@ -360,7 +360,7 @@ declare -r lib_dir="$(realpath "${app_home}/../lib")"
|
|
|
360
360
|
declare -a app_mainclass=('io.appthreat.atom.Atom')
|
|
361
361
|
|
|
362
362
|
declare -r script_conf_file="${app_home}/../conf/application.ini"
|
|
363
|
-
declare -r app_classpath="$lib_dir/io.appthreat.atom-2.0.
|
|
363
|
+
declare -r app_classpath="$lib_dir/io.appthreat.atom-2.0.22-classpath.jar"
|
|
364
364
|
|
|
365
365
|
# java_cmd is overrode in process_args when -java-home is used
|
|
366
366
|
declare java_cmd=$(get_java_cmd)
|
package/plugins/bin/atom.bat
CHANGED
|
@@ -40,7 +40,7 @@ rem "-J" is stripped, "-D" is left as is, and everything is appended to JAVA_OPT
|
|
|
40
40
|
set _JAVA_PARAMS=
|
|
41
41
|
set _APP_ARGS=
|
|
42
42
|
|
|
43
|
-
set "APP_CLASSPATH=%APP_LIB_DIR%\io.appthreat.atom-2.0.
|
|
43
|
+
set "APP_CLASSPATH=%APP_LIB_DIR%\io.appthreat.atom-2.0.22-classpath.jar"
|
|
44
44
|
set "APP_MAIN_CLASS=io.appthreat.atom.Atom"
|
|
45
45
|
set "SCRIPT_CONF_FILE=%APP_HOME%\conf\application.ini"
|
|
46
46
|
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
<?php return array(
|
|
2
2
|
'root' => array(
|
|
3
3
|
'name' => '__root__',
|
|
4
|
-
'pretty_version' => 'v2.0.
|
|
5
|
-
'version' => '2.0.
|
|
6
|
-
'reference' => '
|
|
4
|
+
'pretty_version' => 'v2.0.22',
|
|
5
|
+
'version' => '2.0.22.0',
|
|
6
|
+
'reference' => '5230565c4b52072874ad1b652eb7229daeeee8cf',
|
|
7
7
|
'type' => 'library',
|
|
8
8
|
'install_path' => __DIR__ . '/../../',
|
|
9
9
|
'aliases' => array(),
|
|
@@ -11,9 +11,9 @@
|
|
|
11
11
|
),
|
|
12
12
|
'versions' => array(
|
|
13
13
|
'__root__' => array(
|
|
14
|
-
'pretty_version' => 'v2.0.
|
|
15
|
-
'version' => '2.0.
|
|
16
|
-
'reference' => '
|
|
14
|
+
'pretty_version' => 'v2.0.22',
|
|
15
|
+
'version' => '2.0.22.0',
|
|
16
|
+
'reference' => '5230565c4b52072874ad1b652eb7229daeeee8cf',
|
|
17
17
|
'type' => 'library',
|
|
18
18
|
'install_path' => __DIR__ . '/../../',
|
|
19
19
|
'aliases' => array(),
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
index a87d416..5f500a0 100644
|
|
|
Binary file
|
|
index 1987185..80dd186 100644
|
|
|
Binary file
|
|
index 63e7e72..b63b4af 100644
|
|
|
Binary file
|
package/plugins/lib/{io.appthreat.javasrc2cpg_3-2.1.9.jar → io.appthreat.javasrc2cpg_3-2.2.1.jar}
RENAMED
|
index a2828a0..c7ba1dc 100644
|
|
|
Binary file
|
package/plugins/lib/{io.appthreat.jimple2cpg_3-2.1.9.jar → io.appthreat.jimple2cpg_3-2.2.1.jar}
RENAMED
|
index 24eebef..e4cce85 100644
|
|
|
Binary file
|
package/plugins/lib/{io.appthreat.jssrc2cpg_3-2.1.9.jar → io.appthreat.jssrc2cpg_3-2.2.1.jar}
RENAMED
|
index 0adeece..054a3fb 100644
|
|
|
Binary file
|
|
index bed69b4..c1ec989 100644
|
|
|
Binary file
|
package/plugins/lib/{io.appthreat.pysrc2cpg_3-2.1.9.jar → io.appthreat.pysrc2cpg_3-2.2.1.jar}
RENAMED
|
index ef407f4..eadc848 100644
|
|
|
Binary file
|
package/plugins/lib/{io.appthreat.semanticcpg_3-2.1.9.jar → io.appthreat.semanticcpg_3-2.2.1.jar}
RENAMED
|
index 3e0c4df..fd1364f 100644
|
|
|
Binary file
|
|
index 957df5b..c603739 100644
|
|
|
Binary file
|
|
index fee9b02..fe3d001 100644
|
|
|
Binary file
|
|
Binary file
|
|
index bbb3ca3..a1004da 100644
|
|
|
Binary file
|
|
Binary file
|
package/plugins/lib/{org.projectlombok.lombok-1.18.34.jar → org.projectlombok.lombok-1.18.36.jar}
RENAMED
|
index ea0ba78..4341a40 100644
|
|
|
Binary file
|
|
index 5c3c6ce..0a31134 100644
|
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|