Skip to content

Commit 1c663e7

Browse files
committed
update packages
Signed-off-by: Prabhu Subramanian <prabhu@appthreat.com>
1 parent bbeb22a commit 1c663e7

File tree

13 files changed

+25
-26
lines changed

13 files changed

+25
-26
lines changed

.github/workflows/master.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
uses: actions/setup-java@v4
1919
with:
2020
distribution: 'temurin'
21-
java-version: '22'
21+
java-version: '23'
2222
- uses: sbt/setup-sbt@v1
2323
- name: "Install PHP"
2424
uses: "shivammathur/setup-php@v2"

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name := "chen"
22
ThisBuild / organization := "io.appthreat"
3-
ThisBuild / version := "2.3.5"
3+
ThisBuild / version := "2.3.6"
44
ThisBuild / scalaVersion := "3.6.2"
55

66
val cpgVersion = "1.0.1"

ci/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ LABEL maintainer="appthreat" \
1313

1414
ARG JAVA_VERSION=23.0.2-tem
1515
ARG MAVEN_VERSION=3.9.9
16-
ARG GRADLE_VERSION=8.12.1
17-
ARG RUBY_VERSION=3.4.2
16+
ARG GRADLE_VERSION=8.13
17+
ARG RUBY_VERSION=3.4.3
1818
ARG SCALA_VERSION=3.6.4
1919

2020
ENV JAVA_VERSION=$JAVA_VERSION \

codemeta.json

Lines changed: 1 addition & 1 deletion
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.3.5",
10+
"version": "2.3.6",
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": [

console/build.sbt

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@ enablePlugins(JavaAppPackaging)
44

55
val ScoptVersion = "4.1.0"
66
val CaskVersion = "0.10.2"
7-
val CirceVersion = "0.14.10"
8-
val ZeroturnaroundVersion = "1.17"
97

108
dependsOn(
119
Projects.semanticcpg,
@@ -21,14 +19,14 @@ libraryDependencies ++= Seq(
2119
"com.michaelpollmeier" %% "scala-repl-pp-server" % Versions.scalaReplPP,
2220
"com.github.scopt" %% "scopt" % ScoptVersion,
2321
"org.typelevel" %% "cats-effect" % Versions.cats,
24-
"io.circe" %% "circe-generic" % CirceVersion,
25-
"io.circe" %% "circe-parser" % CirceVersion,
26-
"org.zeroturnaround" % "zt-zip" % ZeroturnaroundVersion,
22+
"io.circe" %% "circe-generic" % Versions.circe,
23+
"io.circe" %% "circe-parser" % Versions.circe,
24+
"org.zeroturnaround" % "zt-zip" % Versions.ZeroturnaroundVersion,
2725
"com.lihaoyi" %% "os-lib" % "0.11.4",
2826
"com.lihaoyi" %% "pprint" % "0.9.0",
2927
"com.lihaoyi" %% "cask" % CaskVersion,
3028
"dev.scalapy" %% "scalapy-core" % "0.5.3",
31-
"org.scala-lang.modules" % "scala-asm" % "9.7.1-scala-1",
29+
"org.scala-lang.modules" % "scala-asm" % "9.8.0-scala-1",
3230
"org.scalatest" %% "scalatest" % Versions.scalatest % Test,
3331
"org.scala-lang" %% "scala3-compiler" % "3.6.2"
3432
)

meta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{% set version = "2.3.5" %}
1+
{% set version = "2.3.6" %}
22

33
package:
44
name: chen

platform/frontends/c2cpg/build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ dependsOn(Projects.semanticcpg, Projects.dataflowengineoss % Test, Projects.x2cp
44

55
libraryDependencies ++= Seq(
66
"org.scala-lang.modules" %% "scala-parallel-collections" % Versions.scalaParallel,
7-
"org.eclipse.platform" % "org.eclipse.equinox.common" % "3.19.200",
8-
"org.eclipse.platform" % "org.eclipse.core.resources" % "3.22.0" excludeAll(
7+
"org.eclipse.platform" % "org.eclipse.equinox.common" % "3.20.0",
8+
"org.eclipse.platform" % "org.eclipse.core.resources" % "3.22.100" excludeAll(
99
ExclusionRule(organization = "com.ibm.icu", name = "icu4j"),
1010
ExclusionRule(organization = "org.eclipse.platform", name = "org.eclipse.jface"),
1111
ExclusionRule(organization = "org.eclipse.platform", name = "org.eclipse.jface.text")
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
org.eclipse.cdt jars were downloaded from
22

3-
https://download.eclipse.org/tools/cdt/releases/11.6/cdt-11.6.1/plugins/
3+
https://download.eclipse.org/tools/cdt/releases/12.0/cdt-12.0.0/plugins/

platform/frontends/javasrc2cpg/build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ dependsOn(Projects.dataflowengineoss, Projects.x2cpg % "compile->compile;test->t
44

55
libraryDependencies ++= Seq(
66
"io.appthreat" %% "cpg2" % Versions.cpg,
7-
"com.github.javaparser" % "javaparser-symbol-solver-core" % "3.26.3",
7+
"com.github.javaparser" % "javaparser-symbol-solver-core" % "3.26.4",
88
"org.scalatest" %% "scalatest" % Versions.scalatest % Test,
9-
"org.projectlombok" % "lombok" % "1.18.36",
9+
"org.projectlombok" % "lombok" % "1.18.38",
1010
"org.scala-lang.modules" %% "scala-parallel-collections" % Versions.scalaParallel,
1111
"org.scala-lang.modules" %% "scala-parser-combinators" % "2.4.0",
1212
"net.lingala.zip4j" % "zip4j" % "2.11.5"

0 commit comments

Comments
 (0)