From 7b0b70f50554269d57bf7b15ea54a6ac47d59e4e Mon Sep 17 00:00:00 2001 From: Aaron Leslie Date: Tue, 14 Mar 2023 14:20:50 +0000 Subject: [PATCH] Update changelog for GitHub 0.13.0 release --- CHANGELOG.md | 22 ++++++++++++++++++++++ README.md | 6 +++--- build.gradle.kts | 2 +- 3 files changed, 26 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 610bd4d..780a774 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,27 @@ # Change Log +## Version 0.13.0 - 03/09/2023 + +### Major new features + +* Introduced parallel instrumentation preprocessing to lower time spent preprocessing +* Introduced instrumentation preprocessing artifact caching to enable configurable artifact caching strategies to prevent redundant preprocessing +* Added support for JDK-17 by enabling building patched copy of ByteBuddy dependency + +### Minor new features + +* Deprecated HeaderRetrievable in favor of Activity/Downstream x Request/Response events and added corresponding Apache HttpClient downstream Request/Response header events +* Implemented Killswitch file mechanism +* Added additional logging to indicate when Signed Jars are preprocessed +* Extended ServiceEvent API to support Event IDs +* Implemented AgentConfig override via properties file + +### Bug fixes + +* Fixed mvn mysql-connector-java coordinates +* Fixed (Scheduled)ThreadPoolExecutor task removal +* Removed thread id comparison on thread enter to allow TX propagation during async workflows + ## Version 0.12.0 - 04/25/2022 ### Major new features diff --git a/README.md b/README.md index 5bc9245..43ac2b8 100644 --- a/README.md +++ b/README.md @@ -180,7 +180,7 @@ Disco packages easier. software.amazon.disco disco-toolkit-bom - 0.12.0 + 0.13.0 pom import @@ -197,14 +197,14 @@ Disco packages easier. #### Using Gradle's default DSL ```groovy -implementation platform('software.amazon.disco:disco-toolkit-bom:0.12.0') +implementation platform('software.amazon.disco:disco-toolkit-bom:0.13.0') implementation 'software.amazon.disco:disco-java-agent-api' // Other disco dependencies ``` #### Using Gradle's Kotlin DSL ```kotlin -implementation(platform("software.amazon.disco:disco-toolkit-bom:0.12.0")) +implementation(platform("software.amazon.disco:disco-toolkit-bom:0.13.0")) implementation("software.amazon.disco:disco-java-agent-api") // Other disco dependencies ``` diff --git a/build.gradle.kts b/build.gradle.kts index 2e3e995..f862b62 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -24,7 +24,7 @@ plugins { val standardOutputLoggerFactoryFQN by extra("software.amazon.disco.agent.reflect.logging.StandardOutputLoggerFactory") subprojects { - version = "0.12.0" + version = "0.13.0" repositories { mavenCentral()