Skip to content
This repository has been archived by the owner on Jan 9, 2024. It is now read-only.

Commit

Permalink
Merge pull request #131 from newrelic/update-changelog
Browse files Browse the repository at this point in the history
update core and changelog for release
  • Loading branch information
XiXiaPdx authored Jun 10, 2021
2 parents c0f87ed + 442f1bd commit 4fda469
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ 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.8.0] - TBD
- 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)!
- Update io.micrometer:micrometer-core to 1.7.0
- Update com.newrelic.telemetry:telemetry to com.newrelic.telemetry:telemetry-core 0.12.0

## [0.7.0] - 2021-02-18
- Update io.micrometer:micrometer-core to 1.6.4
Expand Down
12 changes: 10 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,9 @@ googleJavaFormat {
}

dependencies {
api("io.micrometer:micrometer-core:1.6.4")
api("io.micrometer:micrometer-core:1.7.0")
api("com.newrelic.telemetry:telemetry-core:0.12.0")
implementation("org.slf4j:slf4j-api:1.7.30")

testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.6.0")
testRuntimeOnly("org.slf4j:slf4j-simple:1.7.30")
testImplementation("org.junit.jupiter:junit-jupiter-api:5.6.0")
Expand All @@ -43,6 +42,15 @@ dependencies {
testImplementation("org.apache.httpcomponents:httpclient:4.5.13") {
because("previous versions trigger Snyk security warnings")
}
testImplementation("io.netty:netty-handler:4.1.59.Final") {
because ("snyk violations")
}
testImplementation("io.netty:netty-codec-http:4.1.59.Final") {
because ("snyk violations")
}
testImplementation("org.apache.velocity:velocity-engine-core:2.3") {
because ("snyk violations")
}
}

}
Expand Down

0 comments on commit 4fda469

Please sign in to comment.