Skip to content

Aarakke/release new integrations#23696

Closed
AAraKKe wants to merge 8 commits into
7.80.xfrom
aarakke/release-new-integrations
Closed

Aarakke/release new integrations#23696
AAraKKe wants to merge 8 commits into
7.80.xfrom
aarakke/release-new-integrations

Conversation

@AAraKKe
Copy link
Copy Markdown
Contributor

@AAraKKe AAraKKe commented May 13, 2026

What does this PR do?

Release new integrations for 7.80

Motivation

Review checklist (to be filled by reviewers)

  • Feature or bugfix MUST have appropriate tests (unit, integration, e2e)
  • Add the qa/skip-qa label if the PR doesn't need to be tested during QA.
  • If you need to backport this PR to another branch, you can add the backport/<branch-name> label to the PR and it will automatically open a backport PR once this one is merged

AAraKKe and others added 8 commits May 13, 2026 14:17
* [DOCS-13885] Note that Cisco Duo Federal is not supported

* Gate Duo Federal note to US1-FED site only
* add decibel-milliwatt canonical unit

* add changelog
* Add Supported OS::AIX classifier tag to AIX-bundled integrations

Marks the checks bundled in the AIX datadog-agent package as supporting AIX:
openmetrics, ibm_mq, ibm_ace, ibm_db2, ibm_i, ibm_was, lparstats.

* Update dependency resolution

* Update dependency resolution

---------

Co-authored-by: dd-agent-integrations-bot[bot] <dd-agent-integrations-bot[bot]@users.noreply.github.com>
* Fix release tooling to handle Supported OS::AIX classifier tag

* Rename changelog to match PR number

* Ignore unknown OS platforms in get_agent_requirement_line

* Use explicit exclusion set for platforms not in agent requirements

* Rename PLATFORMS_NOT_IN_AGENT_REQUIREMENTS to PLATFORMS_IGNORE

* Apply PLATFORMS_IGNORE filter after all platform collection paths

* Skip agent requirements line when an integration only supports ignored OSes

- Return `None` from `get_agent_requirement_line` when all parsed platforms are in `PLATFORMS_IGNORE` (e.g. AIX-only manifests), and raise `ManifestError` only when no supported OS was declared at all.
- In `release make`, skip the requirements update when the line is `None`.
- Add tests for the AIX-mixed, AIX-only, and empty-supported-OS cases on both the `tile.classifier_tags` and `supported_os` paths.

---------

Co-authored-by: Juanpe Araque <juanpedro.araque@datadoghq.com>
@AAraKKe AAraKKe closed this May 13, 2026
@AAraKKe AAraKKe deleted the aarakke/release-new-integrations branch May 13, 2026 16:09
@dd-octo-sts
Copy link
Copy Markdown
Contributor

dd-octo-sts Bot commented May 13, 2026

Validation Report

All 20 validations passed.

Show details
Validation Description Status
agent-reqs Verify check versions match the Agent requirements file
ci Validate CI configuration and Codecov settings
codeowners Validate every integration has a CODEOWNERS entry
config Validate default configuration files against spec.yaml
dep Verify dependency pins are consistent and Agent-compatible
http Validate integrations use the HTTP wrapper correctly
imports Validate check imports do not use deprecated modules
integration-style Validate check code style conventions
jmx-metrics Validate JMX metrics definition files and config
labeler Validate PR labeler config matches integration directories
legacy-signature Validate no integration uses the legacy Agent check signature
license-headers Validate Python files have proper license headers
licenses Validate third-party license attribution list
metadata Validate metadata.csv metric definitions
models Validate configuration data models match spec.yaml
openmetrics Validate OpenMetrics integrations disable the metric limit
package Validate Python package metadata and naming
readmes Validate README files have required sections
saved-views Validate saved view JSON file structure and fields
version Validate version consistency between package and changelog

View full run

Copy link
Copy Markdown

@chatgpt-codex-connector chatgpt-codex-connector Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Codex Review

Here are some automated review suggestions for this pull request.

Reviewed commit: 13c51aeffb

ℹ️ About Codex in GitHub

Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".

Comment on lines +200 to +201
else:
echo_info(f'Skipping Agent requirements update for {check}: no supported platforms to include.')
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Badge Remove stale requirement pins when skipping ignored platforms

When an integration that already has a requirements-agent-release.txt entry is later released as AIX-only, get_agent_requirement_line() now returns None and this branch only logs a skip. Because the existing pin is never removed from the requirements file, that release would continue shipping the unsupported package to the Linux/macOS/Windows Agent even though there are no included platforms left.

Useful? React with 👍 / 👎.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment