From 247a64173725c2a7cdf79b66fb07c237d1268453 Mon Sep 17 00:00:00 2001 From: David Baker Effendi Date: Mon, 7 Feb 2022 17:28:44 +0200 Subject: [PATCH] :bookmark: Release v1.0.5 --- .gitignore | 1 + CHANGELOG.md | 5 +++-- .../com/github/plume/oss/drivers/OverflowDbDriver.scala | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 4278671b..690bb72f 100644 --- a/.gitignore +++ b/.gitignore @@ -2,6 +2,7 @@ /build/ /bin/ *.bin +*.gzip # Ignore Gradle GUI config gradle-app.setting diff --git a/CHANGELOG.md b/CHANGELOG.md index 55cf62cf..65a6d888 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,11 +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/). -## [Unreleased] - 2022-02-02 +## [1.0.5] - 2022-02-07 ### Added -- Data-flow paths are saved to a blob and are re-used on future runs. Only available on `OverflowDbDriver`. +- Data-flow paths are saved to a GZIP compressed JSON and are re-used on future runs. + Only available on `OverflowDbDriver`. ### Fixed diff --git a/src/main/scala/com/github/plume/oss/drivers/OverflowDbDriver.scala b/src/main/scala/com/github/plume/oss/drivers/OverflowDbDriver.scala index 6de08c61..1e374b1e 100644 --- a/src/main/scala/com/github/plume/oss/drivers/OverflowDbDriver.scala +++ b/src/main/scala/com/github/plume/oss/drivers/OverflowDbDriver.scala @@ -40,7 +40,7 @@ final case class OverflowDbDriver( ), heapPercentageThreshold: Int = 80, serializationStatsEnabled: Boolean = false, - dataFlowCacheFile: Path = Paths.get("dataFlowCache.bin") + dataFlowCacheFile: Path = Paths.get("dataFlowCache.json.gzip") ) extends IDriver { private val logger = LoggerFactory.getLogger(classOf[OverflowDbDriver])