Skip to content

Commit

Permalink
Update packages (#85)
Browse files Browse the repository at this point in the history
Signed-off-by: Prabhu Subramanian <prabhu@appthreat.com>
  • Loading branch information
prabhu authored Sep 3, 2024
1 parent 2245e4d commit 046025c
Show file tree
Hide file tree
Showing 7 changed files with 1,195 additions and 1,091 deletions.
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name := "chen"
ThisBuild / organization := "io.appthreat"
ThisBuild / version := "2.1.4"
ThisBuild / scalaVersion := "3.4.2"
ThisBuild / version := "2.1.5"
ThisBuild / scalaVersion := "3.5.0"

val cpgVersion = "1.0.0"

Expand Down
2 changes: 1 addition & 1 deletion codemeta.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"downloadUrl": "https://github.com/AppThreat/chen",
"issueTracker": "https://github.com/AppThreat/chen/issues",
"name": "chen",
"version": "2.1.4",
"version": "2.1.5",
"description": "Code Hierarchy Exploration Net (chen) is an advanced exploration toolkit for your application source code and its dependency hierarchy.",
"applicationCategory": "code-analysis",
"keywords": [
Expand Down
2 changes: 1 addition & 1 deletion meta.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% set version = "2.1.4" %}
{% set version = "2.1.5" %}

package:
name: chen
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,11 @@ abstract class XTypeRecoveryPass[CompilationUnitType <: AstNode](
val state = XTypeRecoveryState(config, stopEarly = stopEarly)
try
Iterator.from(0).takeWhile(_ < config.iterations).foreach { i =>
val newState = state.copy(currentIteration = i)
generateRecoveryPass(newState).createAndApply()
try
val newState = state.copy(currentIteration = i)
generateRecoveryPass(newState).createAndApply()
catch
case _: Exception =>
}
// If dummy values are enabled and we are stopping early, we need one more round to propagate these dummy values
if stopEarly.get() && config.enabledDummyTypes then
Expand Down
2 changes: 1 addition & 1 deletion platform/src/universal/schema-extender/build.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name := "schema-extender"

ThisBuild / scalaVersion := "3.4.2"
ThisBuild / scalaVersion := "3.5.0"

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

Expand Down
2,267 changes: 1,184 additions & 1,083 deletions poetry.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "appthreat-chen"
version = "2.1.4"
version = "2.1.5"
description = "Code Hierarchy Exploration Net (chen)"
authors = ["Team AppThreat <cloud@appthreat.com>"]
license = "Apache-2.0"
Expand Down

0 comments on commit 046025c

Please sign in to comment.