Codekvast Downloads

The Truly Dead Code Detector

Codekvast Release Notes

1.4.1

  1. codekvast-javaagent now uses aspectweaver 1.9.6
  2. codekvast-javaagent default write timeout is now 30 seconds (was: 3 seconds, a typo)
  3. Upgraded to Kotlin 1.4.21, Spring Boot 2.4.2, Angular 11.
  4. Bug fixes.
  5. dbHealthIndicator now runs in a separate connection pool.
  6. Agent facing code moved to the new codekvast-intake service.

1.4.0

  1. Bug fix: codekvast-javaagent now ignores types annotated with @org.aspectj.lang.annotation.Aspect. This fixes a bug where a Spring-managed @Aspect clashes with the Codekvast-managed AspectJ load-time weaver, so that the aspect does not kick in.
  2. Added Java 14 and 15 to the agent test suite.
  3. codekvast-javaagent now detects default methods in interfaces.
  4. codekvast-javaagent accepts apiKey (aka CODEKVAST_API_KEY or -Dcodekvast.apiKey) as synonym to licenseKey.
  5. Dashboard: handler for deadlock exceptions.
  6. Lock management: now uses the database functions GET_LOCK() and RELEASE_LOCK() instead of SELECT ... FOR UPDATE
  7. Dashboard: now refuses to import synthetic methods. WeederService removes already imported synthetic methods.
  8. Upgraded to Gradle 6.5, Spring Boot 2.2.7, Kotlin 1.3.72 plus some more
  9. Converted deployment model from EC2 "pets" to ECS Fargate "cattle".
  10. Automatic cleanup of disappeared methods on codebase import.

1.3.2

  1. codekvast-javaagent does not log on SEVERE level anymore.
  2. Bug fix: Unique index on methods.signature is now case-sensitive

1.3.1

  1. codekvast-javaagent logs a warning about missing mandatory properties and simply does not start even if codekvast.enabled=true. It does not throw an exception as before.

1.3

  1. codekvast-javaagent does not require any mandatory parameters when $CODEKVAST_ENABLED=false or -Dcodekvast.enabled=false
  2. Fixed some UX glitches in Dashboard's Method form.
  3. Added '*.canEqual(java.lang.Object)' to synthetic methods

1.2

  1. Upgraded to Spring Boot 2.2
  2. Upgraded to MariaDB 10.4
  3. New field "environment" in the GetConfigPoll (java-agent 1.1 is still supported)
  4. The agent now supports overriding of config parameters with system properties. Example: -Dcodekvast.appVersion=1.2.3 will override appVersion=xxx in codekvast.conf

1.1

  1. Support for uploading class.protectionDomain.codeSource.location for each method
  2. The agent supports running on Java 8, 9, 10, 11, 12 and 13. NOTE: The support for Java 7 is dropped!
  3. Server is now built with Java 12, but still runs on Java 11.
  4. Replace Server Error 500 caused by RequestRejectedException with a simple 404.
  5. Bug fix: eliminating methods in search results that haven't been tracked long enough.
  6. Removed the possibility to delete terminated agents from the dashboard UI (it is now automatic, based on the retention period).
  7. Includes retentionPeriodDays in 'Tracked For' popup.
  8. Upgraded to Spring Boot 2.1.9, Kotlin 1.3.50. Also upgraded Lombok, Mockito, jslack and logstash-logback-encoder.
  9. codekvast-login: Replaced groovy-templates with mustache.
  10. The Codekvast dashboard webapp is now packaged by Angular CLI (ng) instead of by hand-crafted webpack config.

1.0.0

  1. Corrected a bug in codekvast-javaagent: now it deletes /tmp/codekvast-nnn/META-INF/aop.xml on JVM termination.
  2. Added "hostname" field to agent config.
  3. Changed the way the agent's codekvast.conf is located: if one of -Dcodekvast.configuration or CODEKVAST_CONFIG is specified, no automatic locations are examined. This makes it possible to disable the agent without editing or moving the config file.
  4. Upgraded to Spring Boot 2.1.3, Angular 7.2.6, TypeScript 3.3.3
  5. Added support for Basic proxy authentication in codekvast-javaagent.

0.26.0

  1. Upgraded server apps to Java 11. The agent supports running on Java 7, 8, 9, 10 and 11.
  2. Added "enabled" field to agent config.

0.25.0

  1. Upgraded to Spring Boot 2.1.1, Kotlin 1.3.0, aspectj-weaver 1.9.2, Lombok 1.18.4 and Flyway 5.2.3.

0.24.5

  1. Minimized codekvast-javaagent.jar. Size decreased from 5.2 MB to 3.8 MB.

0.24.4

  1. Replaced Nginx with AWS ALB.
  2. Added tag "env" to all application metrics.
  3. Java Agent: Removed deprecated V1 model classes.
  4. Upgraded to Spring Boot 2.0.6, Kotlin 1.2.71, Angular 6.1.10
  5. Added some more metrics.
  6. All application metrics are tagged with hostname.

0.24.3

  1. Now logs in JSON format to /var/log/codekvast/$service/application.log
  2. Application start/stop is now logged to the Slack channel #alarms (was: #builds).
  3. Now also Codekvast Admin logs start/stop to Slack #alarms.
  4. Upgraded to Gradle 4.10.
  5. Added login count metrics.
  6. Added file import metrics.
  7. Bug fix in the agent. Applying codekvast-javaagent on a Spring Boot 2.0+ executable jar resulted in an NPE when trying to scan the codebase.
  8. Removed Codekvast Admin.

0.24.2

  1. Upgraded to Spring Boot 2.0.4

0.24.1

  1. Upgraded to Spring Boot 2.0.4, Gradle 4.9, Lombok 1.18.2, Angular 6.0.6, RxJS 6.2.1, Webpack 4
  2. Replaced Cloud Watch with Datadog

0.24.0

  1. Java Agent: Corrected scheduling bug. Invocation data was published far too often.
  2. Dashboard: optimized Methods search. Now a lot faster and consumes less memory.

0.23.8

  1. Java Agent: Fixed a rare ConcurrentModificationException
  2. Dashboard: added Applications tab to status page.
  3. Added support for exporting metrics to CloudWatch

0.23.7

  1. Java Agent: Correction of 0.23.6: Correctly detect typical webapp even if more codeBase paths than one.

0.23.6

  1. Added ability to trace the Java Agent's CodeBaseScanner by e.g., export CODEKVAST_FINEST_LEVEL=INFO before starting the app. Useful when trouble shooting code base scanning issues and you are unable to edit $CATALINA_HOME/conf/logging.properties.
  2. Java Agent: now detects a typical webapp: The config parameter codeBase can now be set to only path/to/webapp or path/to/webapp/WEB-INF. This will be interpreted as path/to/webapp/WEB-INF/classes/ and path/to/webapp/WEB-INF/lib if these exist and are directories.

0.23.5

  1. Added column jvms.codeBaseFingerprint
  2. codekvast-javaagent.jar now includes the number of codebase files in uploads to server.

0.23.4

  1. codekvast-javaagent.jar now logs repetitive stuff on FINE level. One-time bootstrap stuff is still logged on INFO level.

0.23.3

  1. codekvast-javaagent.jar now waits for a war to be exploded before trying to resolve the app version
  2. Fixed open file leak in AgentServiceImpl. Now uploaded files' input streams are closed in a try-finally block.

0.23.2

  1. Dashboard: Added ability to filter on applications and environments in Search Methods.
  2. Dashboard: Added ability to delete terminated agents.
  3. Agent: codekvast.conf: Added support for appVersion strategy "properties /path/to/file prop1,prop2"
  4. Drop database column users.lastActivityAt
  5. Upgraded to spring Boot 2.0.1

0.23.1

  1. Database schema changes: applications, environments, jvms, invocations.
  2. Added popovers.
  3. Upgraded to Flyway 5.0.7

0.23.0

  1. Upgraded to Spring Boot 2, Spring Framework 5, Spring Security 5, Flyway 4.2.0.

0.22.5

  1. Implemented login service.
  2. Upgraded to Gradle 4.6
  3. Upgraded dependencies
  4. Moved api.codekvast.io/heroku to login.codekvast.io/heroku (with an nginx rule to also accept the former)
  5. Renamed provisioning/ to deploy/

0.22.4

  1. Started implementing new login service.
  2. Upgraded Java dependencies: jslack 1.0.25, wiremock 2.15.0, Kotlin 1.2.21
  3. Dashboard: Upgraded JavaScript dependencies: angular 5.2.5, zone.js 0.8.20, rxjs 5.5.6, typescript 2.7.2 (+ some test deps)
  4. Replaced PhantomJS with Chrome headless for web tests.
  5. Dashboard: passes JWT token with cookie instead of header.
  6. Upgraded to Spring Boot 1.5.10
  7. Upgraded to Gradle 4.5

0.22.3

  1. Dashboard: the method details table to right is now optional.
  2. Dashboard: method details does not show hosts if more than 10.
  3. Java Agent: downgraded third-party dependencies so that it works in Java 7 again.

0.22.2

  1. Dashboard: added more search filters in the Methods page

0.22.1

  1. Upgraded to Angular 5.1.1, Typescript 2.6.1, aspectjweaver 1.8.12
  2. Upgraded to Spring Boot 1.5.9
  3. Upgraded to Gradle 4.4
  4. Fixed bug caused by renaming classes in agent-model

0.22.0

  1. Moved codebase analysis from agent to server. Now all discovered methods are uploaded to the server, no matter the name pattern.

0.21.6

  1. Upgraded to Angular 4.4.4, Typescript 3.5.3.
  2. Upgraded to aspectjweaver 1.8.11.
  3. Upgraded to Spring Boot 1.5.8
  4. Renamed Codekvast Warehouse to Codekvast Dashboard.

0.21.5

  1. Added Boot-Class-Path to codekvast-javaagent's MANIFEST.MF (eliminates the need for -Xbootclasspath/a:codekvast-javaagent-x.x.jar)
  2. Improved handling of communication failures in Codekvast Warehouse.
  3. Added support for trial periods.
  4. Increased maxMethods to 25.000 in TEST price plan.
  5. Bug fix in Warehouse when importing incomplete methods.
  6. Bug fix in Warehouse: ga('send', 'pageview') after navigation events.
  7. Upgraded to Spring Boot 1.5.7
  8. Redesigned Warehouse /home; made it more compact.
  9. Added Slack integration in CustomerServiceImpl.

0.21.4

  1. Implemented Status page in Codekvast Warehouse.
  2. Upgraded to Angular 4.3.2.
  3. Upgraded to Spring Boot 1.5.6, Jackson 2.9.0.
  4. Upgraded to Gradle 4.0.
  5. Upgraded Gradle plugins.
  6. Codekvast Agent avoids publishing empty invocation sets.

0.21.3

  1. Upgraded to Angular 4.2.4 and Webpack 3.0.0
  2. Added column users.lastActivityAt
  3. Now redirects to /logged-out after webapp session has expired
  4. Now redirects to /not-logged-in when an unauthenticated user clicks a link that requires login
  5. Bug fix: now deprovision works.
  6. Bug fix: the first invocation data is now uploaded very soon after start

0.21.2

  1. Added support for Spring Boot executable jars
  2. Upgraded to Angular 4.2.2

0.21.1

  1. Removed support for building a Docker image for Codekvast Warehouse.
  2. Adjusted logging to make it easier do document what to look for when starting the agent.

0.21.0

  1. Implemented price plan enforcements.
  2. NOTE: Backwards incompatible API change in AgentController.

0.20.3

  1. Fixed a OkHttp Response leak in java-agent

0.20.2

  1. Made Heroku add-on shareable across apps.

0.20.1

  1. Removed classifier 'all' from codekvast-javaagent-x.x.x.jar. It used to be named codekvast-javaagent-x.x.x-all.jar

0.20.0

  1. Merged codekvast-javaagent.jar and aspectjweaver.jar

0.19.0

  1. Warehouse: Added invocation statuses to method summary and method details page.
  2. Warehouse: Added settings editor.
  3. Warehouse: Implemented detection of inconsistent collector config.
  4. Warehouse: Added a landing page for feature voting, to make it simpler to use Google Analytics.
  5. Adopted Yarn instead of npm for installing Node dependencies.
  6. Eliminated the Codekvast Daemon.
  7. Renamed all packages from se.crisp.codekvast to io.codekvast.
  8. Bumped minimum Java version for the agent to Java 7.
  9. Renamed /api/v1/... endpoints to /webapp/v1/...
  10. Agent zip distribution build.
  11. Added provisioning/ containing Ansible playbooks for setting up an AWS stack per customer/environment.

0.18.6

  1. Restructured and cleaned up README.md
  2. Added /home to Warehouse.
  3. Improved Warehouse's /methods. Now the scrollbars work as expected.
  4. Implemented Warehouse's method details page. Ugly, but working.

0.18.5

  1. Implemented a simple web interface to Warehouse.
  2. Upgraded to Gradle 3.4.
  3. Upgraded to Angular 4, Typescript 2.
  4. Upgraded to Spring Boot 1.5.
  5. Improved codekvast-warehouse.sh to use environment variables.
  6. Switched to java:8-jre-alpine for codekvast-warehouse Docker image (reduced image size from 332 MB to 129 MB).
  7. Replaced Serenity with Geb + Spock.

0.18.4

  1. Warehouse: Switched from embedded Tomcat to Undertow.
  2. Warehouse: Switched from tomcat-jdbc to HikariCp.
  3. Warehouse: Runs Karma tests against PhantomJS, Firefox and Chrome unless headless environment.
  4. Bug fixes in build scripts.
  5. Upgraded to Gradle 2.14.

0.18.3

  1. Made the Ansible playbook for codekvast-daemon work with Ansible 1.5.4
  2. Implemented rudimentary web UI for showing warehouse data.
  3. Renamed codekvast-warehouse.docker-compose.yml to codekvast-warehouse.sh
  4. Switched to building frontend with Webpack

0.18.2

  1. New download URLs in Bintray
  2. Added support for unit testing TypeScript with Karma.

0.18.1

  1. Added support for developing Codekvast Warehouse web UI with Angular2 and TypeScript.
  2. Added a Serenity BDD- and Docker-based function test for Codekvast Warehouse.
  3. Added proper integration test for Codekvast Collector.
  4. Now Codekvast also tracks constructors.

0.18.0

  1. Refactored daemon; renamed many classes and packages.
  2. Made all @Scheduled parameters configurable.
  3. Fixed auto-commit bug in warehouse zip file import.
  4. Added Docker-based integration test for ScpFileUploader.
  5. Added ready-checker support in testsupport's DockerContainer.
  6. Warehouse integration tests now use MariaDB in a Docker container.
  7. Improved test coverage.
  8. Implemented simple REST API in Codekvast Warehouse: /api/v1/methods/
  9. Added Swagger UI in Codekvast Warehouse.

0.17.5

  1. Fixed bug in warehouse; now it can insert into import_file_info.
  2. Upgraded dependencies.

0.17.4

  1. Upgraded to Gradle 2.12
  2. Upgraded to Spring Boot 1.3.3.RELEASE

0.17.3

  1. Upgraded bintrayPlugin, added github info to Bintray metadata.

0.17.2

  1. Fixed ignored Flyway migrations (caused by misspelled file names).
  2. Tomcat and Jenkins now downloaded from their archive sites.
  3. Moved the playground stuff to the branch playground and removed it from master.
  4. Added Github Pages at http://crispab.github.io/codekvast/
  5. Now uploads codekvast-collector-x.x.x-*.jar to bintray

0.17.1

  1. Upgraded to Gradle 2.11
  2. Upgraded some dependencies: aspectj 1.8.8, h2database 1.4.191, opencsv 3.7, mariadb-java-client 1.3.5

0.17.0

  1. Now the warehouse contains all methods, even those that are excluded from collection. The confidence column tells why a certain signature was excluded.

0.16.1

  1. CollectorConfig now backward compatible with 0.15.6.
  2. Collector now excludes synthetic methods.

0.16.0

  1. Codekvast Daemon is now distributed as a Spring Boot executable jar (was: a Gradle application).
  2. Renamed CollectorConfig.packagePrefixes to CollectorConfig.packages.
  3. Renamed CollectorConfig.excludePackagePrefixes to CollectorConfig.excludePackages.

0.15.6

  1. Simplified config of SCP upload.
  2. Added fail-fast validation of DaemonConfig.uploadToHost. Now the daemon logs an ERROR if it fails to touch a file in the upload target.
  3. Changed default collector and daemon dataPath to /tmp/codekvast/.collector.

0.15.5

  1. Added Overview and Kick The Tyres sections to README.md.

0.15.4

  1. Corrected codekvast-daemon installation guide.
  2. Enabled color in console logging.
  3. Simplified default config.

0.15.3

  1. Upgraded to Spring Boot 1.3.0
  2. Refactored to use sprint-boot-starter-logging instead of home-rolled LoggingConfig.

0.15.2

  1. Default methodVisibility is now protected.

0.15.1

  1. Tripled the performance of codekvast-collector.

0.15.0

  1. Added CollectorConfig.excludePackagePrefixes that excludes (time-critical) code from weaving

0.14.6

  1. Simplified logging config. -Dcodekvast.logPath has highest precedence.
  2. The codekvast-database container now stores the MariaDB data in the host's /var/lib/codekvast-database.
  3. The codekvast-warehouse container logs in /var/log/codekvast.
  4. Made it possible to exec mysql in a running codekvast-database container.

0.14.5

  1. Switched to a smaller Docker base image for codekvast-warehouse
  2. Made codekvast-warehouse exit immediately if Docker container linking is misconfigured.
  3. ./gradlew :product:warehouse:build now also builds distDocker and tags the image with "latest" and "$version-$gitHash"

0.14.4

  1. Added docker-compose.sh

0.14.3

  1. Dockerized codekvast-warehouse.

0.14.2

  1. Added MIT license header to all source files.
  2. Fixed NPE in CollectorConfigLocator.

0.14.1

  1. Added support for SCP upload of daemon export files.

0.14.0

  1. Moved playground server and daemon parts to new playground folder.

0.13.8

  1. Corrected bug in CodeBase.readByteCodePatternsFrom()

0.13.7

  1. Corrected warehouse's application.properties: added missing "codekvast.importPathPollIntervalSeconds = 30"

0.13.6

  1. Corrected the names of the generated start scripts for daemon and warehouse.

0.13.5

  1. codekvast-warehouse-x.x.x.zip now uploads to bintray.

0.13.4

  1. Renamed warehouse table file_meta_info to import_file_info.

0.13.3

  1. Applied some Intellij inspections.

0.13.2

  1. Changed Central warehouse schema: replaced jvms.jvmDataJson with discrete fields.
  2. Added jvms.environment to central warehouse schema.
  3. Improved import performance.

0.13.1

  1. Improved logging.
  2. Made deletion of imported zip file optional.

0.13.0

  1. Created module product/warehouse, which has a dependency on mariadb-server. See README for installation instructions.

0.12.4

  1. Renamed modules and packages below product/agent

0.12.3

  1. Implemented daemon data export

0.12.2

  1. Now all except codekvast-collector requires JDK 8
  2. Upgraded angular-ui-bootstrap.js to 0.14.3

0.12.1

  1. Upgraded to Spring Boot 1.2.7
  2. Upgraded to Gradle 2.8
  3. Now requires JDK 1.7 for codekvast-daemon
  4. Improved logging

0.12.0

  1. Renamed codekvast-javaagent to codekvast-daemon

0.11.11

  1. Preparations for making it possible to use Codekvast for Java Web Started applications (incubating).
  2. Upgraded to Gradle 2.7

0.11.10

  1. Enabled static weaving of the Codekvast Daemon
  2. Codekvast Collector is now possible to initialize from a non-javaagent context.

0.11.9

  1. Upgraded to Spring Boot 1.2.5
  2. Upgraded dependencies
  3. Rewrote from ajc to @Aspect style (so that all modules can be compiled with a plain Java compiler)

0.11.8

  1. Implemented Delete collectors

0.11.7

  1. Upgraded dependencies

0.11.6

  1. Bug fix in Agent: now it handles more Guice-manipulated method names

0.11.5

  1. Capacity: Application statistics calculations are delayed by 5s (configurable). Requests for the same app during the delay are ignored.
  2. Capacity: Now Save Settings only recalculates actually changed applications.
  3. Bug: Clicking I icons in table header in collectors.html resorted the column
  4. Improvement: Now logging also shows the thread name
  5. Improvement: Better logging when backing up and restoring database.
  6. Improvement: Logs pending Flyway migrations at app startup.
  7. Improvement: Avoids backing up database immediately after restoring from restore-me.zip
  8. Bug: Redundant statistics recalculations for same app in different JVMs.
  9. Improvement: added timing logging to report generator.

0.11.4

  1. Replaced tooltips with popovers in application-statistics.html.
  2. Connected code-usage-report.html with live version data.
  3. Added filtering and sorting to collectors.html
  4. Now the code-usage-report form behaves correctly. Still no report though.
  5. Worked on code-usage-report. Still random fake data though.

0.11.3

  1. Added filter and column sorting to application-usage-statistics.html

0.11.2

  1. UI and database schema change; renamed application_statistics.num_probably_dead to num_possibly_dead. Database is migrated by Flyway.

0.11.1

  1. Simplified logback.xml
  2. Improved collectors.html so it now shows warning color for dead collectors.

0.11.0

  1. Keeps track of agent clock skew. Breaks compatibility of agent-API.

0.10.3

  1. Server now tracks uptime.

0.10.2

  1. Added Data Age to collectors.html.
  2. Added version info to codekvast-server web page footer.
  3. Added progress bar to statistics Usage Cycle column.

0.10.1

  1. Added Redhat 6 start script for codekvast-javaagent.

0.10.0

  1. Changed format of JvmData. Breaks compatibility between collector, agent and server.

0.9.5

  1. Bug fix in codekvast-javaagent: Method.millisSinceJvmStart was not correct.
  2. Implemented server-side support for application statistics.

0.9.4

  1. codekvast-server now requires JDK 8.

0.9.3

  1. Java compiler for 1.6 & 1.7 uses correct boot classpath.

0.9.2

  1. Now excludes trivial methods from tracking (equals(), hashCode(), toString(), compareTo(), getters, setters).

0.9.1

  1. Added a Gentoo start script for codekvast-server and codekvast-javaagent.

0.9.0

  1. Improved the installation procedures in CodekvastUserManual.
  2. Now CodekvastUserManual.html is self-contained. No more external images.
  3. codekvast-javaagent now runs on Java 6.

0.8.18

  1. Improved the server web interface.
  2. codekvast-javaagent now uses a private H2 database for storing not yet uploaded data.

0.8.17

  1. Added /etc/init.d scripts for agent and server.
  2. Documented installation of agent and server (work in progress).