Skip to content

Commit

Permalink
Update changelog for GitHub 0.13.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
aarolesl committed Mar 15, 2023
1 parent 8447e43 commit 7b0b70f
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 4 deletions.
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ Disco packages easier.
<dependency>
<groupId>software.amazon.disco</groupId>
<artifactId>disco-toolkit-bom</artifactId>
<version>0.12.0</version>
<version>0.13.0</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand All @@ -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
```
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit 7b0b70f

Please sign in to comment.