Releases: guizmaii-opensource/sbt-datadog
Releases · guizmaii-opensource/sbt-datadog
4.8.1
4.8.0
4.7.0
What's Changed
- Fix
datadogProfilingEnabled
anddatadogAllocationProfilingEnabled
configurations (#43) @guizmaii - Add
datadogProfilingEnabled
anddatadogAllocationProfilingEnabled
configuration, both enabled by default. (#42) @guizmaii
Updates
- Bump release-drafter/release-drafter from 5.20.0 to 5.20.1 (#41) @dependabot
- Update sbt-native-packager to 1.9.11 (#40) @github-actions
- Update scalafmt-core to 3.5.9 (#39) @github-actions
4.6.0
4.5.0
4.4.0
What's Changed
- Update sbt to 1.7.0 (#31) @github-actions
- Update scala-library to 2.12.16 (#30) @github-actions
- Update sbt-tpolecat to 0.3.3 (#29) @github-actions
- Update scalafmt-core to 3.5.8 (#28) @github-actions
- Update sbt-updates to 0.6.3 (#27) @github-actions
- Update scalafmt-core to 3.5.7 (#26) @github-actions
- Update scalafmt-core to 3.5.5 (#25) @github-actions
- Bump release-drafter/release-drafter from 5.19.0 to 5.20.0 (#23) @dependabot
- Update sbt-tpolecat to 0.3.1 (#20) @github-actions
- Update scalafmt-core to 3.5.4 (#24) @github-actions
- Update sbt-tpolecat to 0.2.3 (#17) @github-actions
- Update sbt-updates to 0.6.2 (#16) @github-actions
4.3.0
4.2.0
4.1.0
4.0.0
What's Changed
- Publish to Maven Central instead of Github Packages (which doesn't work) (#10) @guizmaii
- Fix release process (#9) @guizmaii
- Fix release process (#8) @guizmaii
- Fix release process (#7) @guizmaii
- Fix release process (#6) @guizmaii
- Update documentation (#5) @guizmaii
- Use the Unix Socket by default to connect to the Datadog agent (#4) @guizmaii
- Take back ownership of the plugin (#1) @guizmaii
Breaking changes
1. The namespace of the package has been changed from com.colisweb
to com.guizmaii
In your plugins.sbt
file, replace:
addSbtPlugin("com.colisweb" % "sbt-datadog" % "2.1.0")
with
addSbtPlugin("com.guizmaii" % "sbt-datadog" % "4.0.0")
2. datadogAgentHost
and datadogAgentPort
config key are now replaced by datadogAgentTraceUrl
The default way to connect to Datadog agent has been changed.
It now uses by default the Unix Socket /var/run/datadog/apm.socket
.
For more information, see https://docs.datadoghq.com/agent/kubernetes/apm/?tab=ipport#configure-your-application-pods-in-order-to-communicate-with-the-datadog-agent
To keep the previous default behaviour, set in your sbt-datadog
config:
datadogAgentTraceUrl := TraceAgentUrl.defaultHttpUrl
3. The datadogEnableNetty
and datadogEnableAkkaHttp
config keys have been removed
Datadog APM is smart enough now to detect them automatically