Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Preparing release 0.47.10 #466

Merged
merged 6 commits into from
Aug 10, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
Changelog
=========
# 0.47.10 / 2023-08-10

* [IMPROVEMENT] Improvements in how JMXFetch handles communicating back to the Agent. The TLS of the HTTP client used can now be configured, extra logging has been added around the SSL Context, and 'TLS' as min protocol version used in the `dummyTrustManager` (configurable using the flag `jmxfetch.min_tls_version`, e.g. `-Djmxfetch.min_tls_version=TLS`) [#436][]
* [BUGFIX] Fixed issue race condition where an exception is thrown if the Agent hasn't finished initializing before JMXFetch starts to shut down [#449][]
* [OTHER] Update management agent logic and comments for Java 7 vs 8 vs 9 [#457][]

# 0.47.9 / 2023-05-25

* [BUGFIX] Fixes thread leak in situations with persistent connection failures [#432][]
Expand Down Expand Up @@ -736,7 +742,10 @@ Changelog
[#424]: https://github.com/DataDog/jmxfetch/issues/424
[#431]: https://github.com/DataDog/jmxfetch/issues/431
[#432]: https://github.com/DataDog/jmxfetch/issues/432
[#436]: https://github.com/DataDog/jmxfetch/issues/436
[#437]: https://github.com/DataDog/jmxfetch/issues/437
[#457]: https://github.com/DataDog/jmxfetch/issues/457
[#449]: https://github.com/DataDog/jmxfetch/issues/449
[@alz]: https://github.com/alz
[@aoking]: https://github.com/aoking
[@arrawatia]: https://github.com/arrawatia
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[![Build Status](https://travis-ci.com/DataDog/jmxfetch.png?branch=master)](https://travis-ci.com/DataDog/jmxfetch)
[![Build Status](https://circleci.com/gh/DataDog/jmxfetch.svg?style=svg)](https://app.circleci.com/pipelines/github/DataDog/jmxfetch)

# [Change log](https://github.com/DataDog/jmxfetch/blob/master/CHANGELOG.md)

Expand Down Expand Up @@ -41,7 +41,7 @@ docker run -it --rm \
--name my-maven-project \
-v "$(pwd)":/usr/src/app \
-w /usr/src/app \
eclipse-temurin:8u382-b05-jdk ./mvnw -DskipTests clean package
eclipse-temurin:8-jdk ./mvnw -DskipTests clean package
```

## Coding standards
Expand Down Expand Up @@ -156,7 +156,7 @@ otherwise the subsequent publishes will fail.

```
Get help on usage:
java -jar jmxfetch-0.48.0-SNAPSHOT-jar-with-dependencies.jar --help
java -jar jmxfetch-0.47.10-SNAPSHOT-jar-with-dependencies.jar --help
```

## Updating Maven Wrapper
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>com.datadoghq</groupId>
<artifactId>jmxfetch</artifactId>
<version>0.48.0-SNAPSHOT</version>
<version>0.47.10</version>
<packaging>jar</packaging>

<name>jmxfetch</name>
Expand Down