Skip to content
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
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
run: ./mvnw clean package -DskipTests

- name: Run using JDK 7
run: docker run -i --rm -v $(pwd):/app -w /app azul/zulu-openjdk:7-latest java -jar ./target/jmxfetch-0.52.0-jar-with-dependencies.jar --help
run: docker run -i --rm -v $(pwd):/app -w /app azul/zulu-openjdk:7-latest java -jar ./target/jmxfetch-0.52.1-SNAPSHOT-jar-with-dependencies.jar --help

test:
name: Test (OpenJDK ${{ matrix.java-version }})
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
Changelog
=========
# 0.52.1 / TBC

# 0.52.0 / 2026-04-13
* [FEATURE] Add `key_property` support for `dynamic_tags` to extract tag values from JMX bean name key properties [#601][]
* [FEATURE] Add JMX metrics mappings for Generational Shenandoah GC [#596][] (Thanks [@krrg][])
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ otherwise the subsequent publishes will fail.

```
Get help on usage:
java -jar jmxfetch-0.52.0-jar-with-dependencies.jar --help
java -jar jmxfetch-0.52.1-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.52.0</version>
<version>0.52.1-SNAPSHOT</version>
<packaging>jar</packaging>

<name>jmxfetch</name>
Expand Down
Loading