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 .in-toto/tag.47c5a022.link

Large diffs are not rendered by default.

20 changes: 20 additions & 0 deletions datadog_checks_dev/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,26 @@

<!-- towncrier release notes start -->

## 39.0.0 / 2026-06-15

***Changed***:

* Make docker_run wait for Docker Compose service health by default. ([#23628](https://github.com/DataDog/integrations-core/pull/23628))
* Legacy migration: remove `validate jmx-metrics` from the legacy CLI; the command is now provided natively by ddev. ([#23652](https://github.com/DataDog/integrations-core/pull/23652))

***Added***:

* Add `include_total` option to the Windows perf-counter spec template, allowing integrations to opt in to collecting the `_Total` aggregate instance. ([#23530](https://github.com/DataDog/integrations-core/pull/23530))
* Modernize the `ddev create -t check` scaffold template to use Python 3.13 idioms. ([#23705](https://github.com/DataDog/integrations-core/pull/23705))
* Fail `ddev validate agent-reqs` when `requirements-agent-release.txt` pins a `datadog-*` package whose integration folder is no longer present in the repo. ([#23813](https://github.com/DataDog/integrations-core/pull/23813))

***Fixed***:

* Make `generate-profile-from-mibs` emit `symbol` instead of the deprecated `column` field on table metric tags, and accept `symbol` in `validate-profile`. ([#23543](https://github.com/DataDog/integrations-core/pull/23543))
* Fix `get_agent_requirement_line` to ignore unknown OS platforms (e.g. `Supported OS::AIX`) when computing agent requirement lines. ([#23608](https://github.com/DataDog/integrations-core/pull/23608))
* Restore the legacy `validate jmx-metrics` command file to keep the release pipeline's in-toto attestation valid; the command is still served by `ddev`. ([#23687](https://github.com/DataDog/integrations-core/pull/23687))
* Keep registry.datadoghq.com Agent 6 and 7 builds from receiving a Python suffix. ([#23790](https://github.com/DataDog/integrations-core/pull/23790))

## 38.0.0 / 2026-04-29

***Changed***:
Expand Down
1 change: 0 additions & 1 deletion datadog_checks_dev/changelog.d/23530.added

This file was deleted.

1 change: 0 additions & 1 deletion datadog_checks_dev/changelog.d/23543.fixed

This file was deleted.

1 change: 0 additions & 1 deletion datadog_checks_dev/changelog.d/23608.fixed

This file was deleted.

1 change: 0 additions & 1 deletion datadog_checks_dev/changelog.d/23628.changed

This file was deleted.

1 change: 0 additions & 1 deletion datadog_checks_dev/changelog.d/23652.changed

This file was deleted.

1 change: 0 additions & 1 deletion datadog_checks_dev/changelog.d/23687.fixed

This file was deleted.

1 change: 0 additions & 1 deletion datadog_checks_dev/changelog.d/23705.added

This file was deleted.

1 change: 0 additions & 1 deletion datadog_checks_dev/changelog.d/23790.fixed

This file was deleted.

1 change: 0 additions & 1 deletion datadog_checks_dev/changelog.d/23813.added

This file was deleted.

2 changes: 1 addition & 1 deletion datadog_checks_dev/datadog_checks/dev/__about__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# (C) Datadog, Inc. 2018-present
# All rights reserved
# Licensed under a 3-clause BSD style license (see LICENSE)
__version__ = '38.0.0'
__version__ = '39.0.0'
1 change: 1 addition & 0 deletions ddev/changelog.d/24050.fixed
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Bump datadog_checks_dev requirement.
2 changes: 1 addition & 1 deletion ddev/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ dependencies = [
"click~=8.1.6",
"coverage",
"datadog-api-client==2.20.0",
"datadog-checks-dev[cli]~=38.0",
"datadog-checks-dev[cli]~=39.0",
"hatch>=1.13.0",
"httpx",
"jsonpointer",
Expand Down
Loading