From 6a5050849d93b9949d0cdec6487750020d76b5e9 Mon Sep 17 00:00:00 2001 From: jasonjkeller Date: Fri, 27 May 2022 10:41:03 -0700 Subject: [PATCH] Update to telemetry sdk 0.13.2 to address CVE-2022-25647 --- CHANGELOG.md | 5 ++++- README.md | 4 ++-- gradle.properties | 2 +- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ce036c4..097b309 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [0.9.0] - TBD +## [0.10.0] - TBD + +## [0.9.0] - 2022-05-27 +- Update to telemetry sdk 0.13.2 to address [CVE-2022-25647](https://github.com/advisories/GHSA-4jrv-ppp4-jm57) ## [0.8.0] - 2021-06-09 - add `useLicenseKey` option to NewRelicRegistryConfig. The registry will now accept a New Relic license key to report data. Thank you [Greg Eales](https://github.com/0x006EA1E5)! diff --git a/README.md b/README.md index a9fd8f8..34b14a4 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ custom events. This implementation is intended to supersede that, as [dimensiona 1) via gradle: - `implementation 'com.newrelic.telemetry:micrometer-registry-new-relic:0.8.0'` + `implementation 'com.newrelic.telemetry:micrometer-registry-new-relic:0.9.0'` Note: you might need to also include a dependency on micrometer-core itself, for example: @@ -31,7 +31,7 @@ custom events. This implementation is intended to supersede that, as [dimensiona com.newrelic.telemetry micrometer-registry-new-relic - 0.8.0 + 0.9.0 ``` diff --git a/gradle.properties b/gradle.properties index 1066f5a..9b18620 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,4 +1,4 @@ -releaseVersion = 0.9.0 +releaseVersion = 0.10.0 # set this to true to enable using a local sonatype (for debugging publishing issues) # (start a local sonatype in docker with this command: $ docker run -d -p 8081:8081 --name nexus sonatype/nexus3)