Skip to content

Commit

Permalink
🔖 Release v1.1.13
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidBakerEffendi committed Mar 25, 2022
1 parent a2b466e commit b6139d5
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 7 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [1.1.13] - 2022-03-25

### Changed

- Upgraded Joern version and adjusted to `x2cpg` changes.

## [1.1.12] - 2022-03-24

### Fixed
Expand Down
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name := "Plume"
inThisBuild(
List(
organization := "com.github.plume-oss",
version := "1.1.12",
version := "1.1.13",
scalaVersion := "2.13.8",
crossScalaVersions := Seq("2.13.8", "3.1.1"),
resolvers ++= Seq(
Expand All @@ -15,7 +15,7 @@ inThisBuild(
)

val cpgVersion = "1.3.521"
val joernVersion = "1.1.653"
val joernVersion = "1.1.661"
val sootVersion = "4.3.0"
val tinkerGraphVersion = "3.4.11"
val neo4jVersion = "4.4.3"
Expand Down
6 changes: 2 additions & 4 deletions src/main/scala/com/github/plume/oss/domain/package.scala
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,7 @@ package object domain {
Base64.encodeBase64String(out.toByteArray)
}

/** Given an object and a path, will serialize and compress the object to the given path
* using [[compress]].
/** Given an object and a path, will serialize and compress the object to the given path.
* @param o object to serialize.
* @param p path to write serialized data to.
*/
Expand All @@ -69,8 +68,7 @@ package object domain {
}
}

/** Given a path, will deserialize and decompress the file at the given path
* using [[decompress]].
/** Given a path, will deserialize and decompress the file at the given path.
* @param p path to read deserialized data from.
* @return the deserialized object.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ class AstCreationPass(
try {
val sootClass = Scene.v().loadClassAndSupport(qualifiedClassName)
sootClass.setApplicationClass()
new io.joern.jimple2cpg.passes.AstCreator(part, builder, global).createAst(sootClass)
val localDiff = new io.joern.jimple2cpg.passes.AstCreator(part, sootClass, global).createAst()
builder.absorb(localDiff)
} catch {
case e: Exception =>
logger.warn(s"Cannot parse: $part ($qualifiedClassName)", e)
Expand Down

0 comments on commit b6139d5

Please sign in to comment.