Skip to content

Commit 046025c

Browse files
authored
Update packages (#85)
Signed-off-by: Prabhu Subramanian <prabhu@appthreat.com>
1 parent 2245e4d commit 046025c

File tree

7 files changed

+1195
-1091
lines changed

7 files changed

+1195
-1091
lines changed

build.sbt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name := "chen"
22
ThisBuild / organization := "io.appthreat"
3-
ThisBuild / version := "2.1.4"
4-
ThisBuild / scalaVersion := "3.4.2"
3+
ThisBuild / version := "2.1.5"
4+
ThisBuild / scalaVersion := "3.5.0"
55

66
val cpgVersion = "1.0.0"
77

codemeta.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"downloadUrl": "https://github.com/AppThreat/chen",
88
"issueTracker": "https://github.com/AppThreat/chen/issues",
99
"name": "chen",
10-
"version": "2.1.4",
10+
"version": "2.1.5",
1111
"description": "Code Hierarchy Exploration Net (chen) is an advanced exploration toolkit for your application source code and its dependency hierarchy.",
1212
"applicationCategory": "code-analysis",
1313
"keywords": [

meta.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{% set version = "2.1.4" %}
1+
{% set version = "2.1.5" %}
22

33
package:
44
name: chen

platform/frontends/x2cpg/src/main/scala/io/appthreat/x2cpg/passes/frontend/XTypeRecovery.scala

+5-2
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,11 @@ abstract class XTypeRecoveryPass[CompilationUnitType <: AstNode](
7171
val state = XTypeRecoveryState(config, stopEarly = stopEarly)
7272
try
7373
Iterator.from(0).takeWhile(_ < config.iterations).foreach { i =>
74-
val newState = state.copy(currentIteration = i)
75-
generateRecoveryPass(newState).createAndApply()
74+
try
75+
val newState = state.copy(currentIteration = i)
76+
generateRecoveryPass(newState).createAndApply()
77+
catch
78+
case _: Exception =>
7679
}
7780
// If dummy values are enabled and we are stopping early, we need one more round to propagate these dummy values
7881
if stopEarly.get() && config.enabledDummyTypes then

platform/src/universal/schema-extender/build.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name := "schema-extender"
22

3-
ThisBuild / scalaVersion := "3.4.2"
3+
ThisBuild / scalaVersion := "3.5.0"
44

55
val cpgVersion = IO.read(file("cpg-version"))
66

poetry.lock

+1,184-1,083
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "appthreat-chen"
3-
version = "2.1.4"
3+
version = "2.1.5"
44
description = "Code Hierarchy Exploration Net (chen)"
55
authors = ["Team AppThreat <cloud@appthreat.com>"]
66
license = "Apache-2.0"

0 commit comments

Comments
 (0)