Skip to content
Open
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
1 change: 1 addition & 0 deletions datadog_checks_dev/changelog.d/23653.changed
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Legacy migration: remove `validate config` from the legacy CLI; the command is now provided natively by ddev.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
from .agent_reqs import agent_reqs
from .agent_signature import legacy_signature
from .codeowners import codeowners
from .config import config
from .dashboards import dashboards
from .dep import dep
from .eula import eula
Expand All @@ -25,7 +24,6 @@
ALL_COMMANDS = (
agent_reqs,
codeowners,
config,
dashboards,
dep,
eula,
Expand Down

This file was deleted.

This file was deleted.

1 change: 1 addition & 0 deletions ddev/changelog.d/23653.added
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Legacy migration: `validate config` is now implemented natively in ddev (was previously delegated to datadog_checks_dev).
2 changes: 1 addition & 1 deletion ddev/src/ddev/cli/validate/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
from datadog_checks.dev.tooling.commands.validate.agent_reqs import agent_reqs
from datadog_checks.dev.tooling.commands.validate.agent_signature import legacy_signature
from datadog_checks.dev.tooling.commands.validate.codeowners import codeowners
from datadog_checks.dev.tooling.commands.validate.config import config
from datadog_checks.dev.tooling.commands.validate.dashboards import dashboards
from datadog_checks.dev.tooling.commands.validate.dep import dep
from datadog_checks.dev.tooling.commands.validate.eula import eula
Expand All @@ -22,6 +21,7 @@

from ddev.cli.validate.all import all
from ddev.cli.validate.ci import ci
from ddev.cli.validate.config import config
from ddev.cli.validate.http import http
from ddev.cli.validate.labeler import labeler
from ddev.cli.validate.licenses import licenses
Expand Down
Loading
Loading