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
1 change: 1 addition & 0 deletions ddev/changelog.d/21167.fixed
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Handle changelog generation for removed integrations
13 changes: 11 additions & 2 deletions ddev/src/ddev/cli/release/agent/changelog.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,11 @@
'Mesos': 'Mesos Slave'
}

REMOVED_INTEGRATIONS = {
# name --> display name
'kaspersky': 'Kaspersky'
}


@click.command(
short_help="Provide a list of updated checks on a given Datadog Agent version, in changelog form",
Expand Down Expand Up @@ -69,8 +74,12 @@ def changelog(app: Application, since: str, to: str, write: bool, force: bool):
for entry in CHANGELOG_MANUAL_ENTRIES.get(agent, []):
changelog_contents.write(f'{entry}\n')
for name, ver in version_changes.items():
display_name = app.repo.integrations.get(name).display_name
display_name = DISPLAY_NAME_MAPPING.get(display_name, display_name)
try:
display_name = app.repo.integrations.get(name).display_name
display_name = DISPLAY_NAME_MAPPING.get(display_name, display_name)
# OSError is raised if the integration path does not exist - likely a deleted or migrated integration
except OSError:
display_name = REMOVED_INTEGRATIONS.get(name, name)

breaking_notice = " **BREAKING CHANGE**" if ver[1] else ""
changelog_url = check_changelog_url.format(name)
Expand Down
6 changes: 6 additions & 0 deletions mysql/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

<!-- towncrier release notes start -->

## 15.7.3 / 2025-08-25

***Fixed***:

* Change statement_rows to TTL cache to fix mysql memory leaks ([#21097](https://github.com/DataDog/integrations-core/pull/21097))

## 15.7.2 / 2025-08-07

***Fixed***:
Expand Down
1 change: 0 additions & 1 deletion mysql/changelog.d/21097.fixed

This file was deleted.

2 changes: 1 addition & 1 deletion mysql/datadog_checks/mysql/__about__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
# All rights reserved
# Licensed under a 3-clause BSD style license (see LICENSE)

__version__ = "15.7.2"
__version__ = "15.7.3"
2 changes: 1 addition & 1 deletion requirements-agent-release.txt
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ datadog-microsoft-dns==1.0.0; sys_platform == 'win32'
datadog-microsoft-sysmon==1.0.0; sys_platform == 'win32'
datadog-milvus==2.0.1
datadog-mongo==10.3.0
datadog-mysql==15.7.2
datadog-mysql==15.7.3
datadog-nagios==3.0.0
datadog-network==5.3.0
datadog-nfsstat==3.1.0; sys_platform == 'linux2'
Expand Down
Loading