diff --git a/istio/CHANGELOG.md b/istio/CHANGELOG.md index 6a22baedba53e..49db389ccbca1 100644 --- a/istio/CHANGELOG.md +++ b/istio/CHANGELOG.md @@ -2,6 +2,12 @@ +## 9.5.2 / 2026-05-20 + +***Fixed***: + +* Restore Istio ambient mode metric collection broken in 9.4.0: ztunnel counters are no longer silently dropped, proxy management metrics use the `workload_manager_*` names ztunnel actually emits, and the missing xDS message counters are now registered. ([#23707](https://github.com/DataDog/integrations-core/pull/23707)) + ## 9.5.1 / 2026-04-15 ***Fixed***: diff --git a/istio/changelog.d/23707.fixed b/istio/changelog.d/23707.fixed deleted file mode 100644 index 9d56891e1da4b..0000000000000 --- a/istio/changelog.d/23707.fixed +++ /dev/null @@ -1 +0,0 @@ -Restore Istio ambient mode metric collection broken in 9.4.0: ztunnel counters are no longer silently dropped, proxy management metrics use the `workload_manager_*` names ztunnel actually emits, and the missing xDS message counters are now registered. diff --git a/istio/datadog_checks/istio/__about__.py b/istio/datadog_checks/istio/__about__.py index 2782ec16c9a6c..f0cbc9aaab3d0 100644 --- a/istio/datadog_checks/istio/__about__.py +++ b/istio/datadog_checks/istio/__about__.py @@ -2,4 +2,4 @@ # All rights reserved # Licensed under a 3-clause BSD style license (see LICENSE) -__version__ = "9.5.1" +__version__ = "9.5.2" diff --git a/klaviyo/assets/account_config.json b/klaviyo/assets/account_config.json new file mode 100644 index 0000000000000..3c0eedd655aa0 --- /dev/null +++ b/klaviyo/assets/account_config.json @@ -0,0 +1,38 @@ +{ + "supported_auth_methods": [ + { + "auth_name": "oauth", + "auth_method": "oauth2_authorization_code", + "fields": [], + "authorization_server": { + "authorization_endpoint": "https://www.klaviyo.com/oauth/authorize" + }, + "authorization_request": { + "scopes": [ + "accounts:read", + "metrics:read", + "events:read", + "flows:read" + ], + "pkce": "required" + } + } + ], + "additional_config_fields": [ + { + "type": "tags", + "key": "tags", + "label": "Tags", + "help": "", + "editable": true, + "required": false + } + ], + "dataflow_config": [ + { + "dataflow_id": "klaviyo-logs", + "additional_config_fields": [] + } + ] + } + \ No newline at end of file diff --git a/n8n/CHANGELOG.md b/n8n/CHANGELOG.md index af203c0245f60..b1264175f7d00 100644 --- a/n8n/CHANGELOG.md +++ b/n8n/CHANGELOG.md @@ -2,6 +2,17 @@ +## 2.0.0 / 2026-05-20 + +***Changed***: + +* Improve the n8n metric coverage: + + - Correct missing or incorrect metrics. + - Add metrics introduced in n8n 2.x (workflow execution duration, audit events, authentication, workflow and user statistics, expression engine, and process memory). + - Track n8n's dynamic events (workflow cancellations, audit activity, AI nodes, user and credential changes, package and variable changes). + - Add support for monitoring n8n worker processes alongside the main process. ([#23635](https://github.com/DataDog/integrations-core/pull/23635)) + ## 1.1.2 / 2026-05-14 ***Fixed***: diff --git a/n8n/changelog.d/23635.changed b/n8n/changelog.d/23635.changed deleted file mode 100644 index 4707adc21dbb9..0000000000000 --- a/n8n/changelog.d/23635.changed +++ /dev/null @@ -1,6 +0,0 @@ -Improve the n8n metric coverage: - - - Correct missing or incorrect metrics. - - Add metrics introduced in n8n 2.x (workflow execution duration, audit events, authentication, workflow and user statistics, expression engine, and process memory). - - Track n8n's dynamic events (workflow cancellations, audit activity, AI nodes, user and credential changes, package and variable changes). - - Add support for monitoring n8n worker processes alongside the main process. diff --git a/n8n/datadog_checks/n8n/__about__.py b/n8n/datadog_checks/n8n/__about__.py index 9913c1d53cbd1..7ae1255646401 100644 --- a/n8n/datadog_checks/n8n/__about__.py +++ b/n8n/datadog_checks/n8n/__about__.py @@ -1,4 +1,4 @@ # (C) Datadog, Inc. 2026-present # All rights reserved # Licensed under a 3-clause BSD style license (see LICENSE) -__version__ = '1.1.2' +__version__ = '2.0.0' diff --git a/postgres/CHANGELOG.md b/postgres/CHANGELOG.md index 6fc8f10751cfc..4597be993f276 100644 --- a/postgres/CHANGELOG.md +++ b/postgres/CHANGELOG.md @@ -2,6 +2,12 @@ +## 23.8.1 / 2026-05-20 + +***Fixed***: + +* Fix a crash caused by cancel closing database connections while the check is still running. ([#23728](https://github.com/DataDog/integrations-core/pull/23728)) + ## 23.8.0 / 2026-05-14 ***Added***: diff --git a/postgres/changelog.d/23728.fixed b/postgres/changelog.d/23728.fixed deleted file mode 100644 index aec07d0c61155..0000000000000 --- a/postgres/changelog.d/23728.fixed +++ /dev/null @@ -1 +0,0 @@ -Fix a crash caused by cancel closing database connections while the check is still running. \ No newline at end of file diff --git a/postgres/datadog_checks/postgres/__about__.py b/postgres/datadog_checks/postgres/__about__.py index c0998b1f838ec..d2f14eee63e0e 100644 --- a/postgres/datadog_checks/postgres/__about__.py +++ b/postgres/datadog_checks/postgres/__about__.py @@ -2,4 +2,4 @@ # All rights reserved # Licensed under a 3-clause BSD style license (see LICENSE) -__version__ = "23.8.0" +__version__ = "23.8.1" diff --git a/requirements-agent-release.txt b/requirements-agent-release.txt index 5366092468de7..600b2dd7c1c93 100644 --- a/requirements-agent-release.txt +++ b/requirements-agent-release.txt @@ -113,7 +113,7 @@ datadog-ignite==3.4.0 datadog-iis==5.7.0; sys_platform == 'win32' datadog-impala==4.4.1 datadog-infiniband==1.6.0; sys_platform == 'linux2' -datadog-istio==9.5.1 +datadog-istio==9.5.2 datadog-ivanti-connect-secure==1.2.0 datadog-jboss-wildfly==3.4.0 datadog-journald==3.2.0 @@ -161,7 +161,7 @@ datadog-microsoft-sysmon==1.2.0; sys_platform == 'win32' datadog-milvus==2.5.1 datadog-mongo==10.10.1 datadog-mysql==15.17.0 -datadog-n8n==1.1.2 +datadog-n8n==2.0.0 datadog-nagios==3.4.0 datadog-network==5.7.0 datadog-nfsstat==3.5.0; sys_platform == 'linux2' @@ -185,7 +185,7 @@ datadog-pgbouncer==8.10.0; sys_platform != 'win32' datadog-php-fpm==6.4.1 datadog-ping-federate==2.2.0 datadog-postfix==3.4.1; sys_platform != 'win32' -datadog-postgres==23.8.0 +datadog-postgres==23.8.1 datadog-powerdns-recursor==5.4.0 datadog-prefect==1.0.1 datadog-presto==3.4.0 diff --git a/ringcentral/assets/account_config.json b/ringcentral/assets/account_config.json new file mode 100644 index 0000000000000..6bf9746d4c017 --- /dev/null +++ b/ringcentral/assets/account_config.json @@ -0,0 +1,79 @@ +{ + "supported_auth_methods": [ + { + "auth_name": "oauth", + "auth_method": "oauth2_authorization_code", + "fields": [], + "authorization_server": { + "authorization_endpoint": "https://platform.ringcentral.com/restapi/oauth/authorize" + }, + "authorization_request": { + "scopes": [ + "ReadAccounts", + "ReadCallLog", + "ReadContacts", + "ReadMessages", + "ReadPresence" + ], + "pkce": "required" + } + } + ], + "additional_config_fields": [ + { + "type": "tags", + "key": "tags", + "label": "Tags", + "help": "", + "editable": true, + "required": false + }, + { + "type": "checkbox", + "key": "get_voice_calls", + "label": "Voice calls", + "help": "", + "editable": true, + "required": false, + "default": true + }, + { + "type": "checkbox", + "key": "get_audit_logs", + "label": "Audit logs", + "help": "", + "editable": true, + "required": false, + "default": true + }, + { + "type": "checkbox", + "key": "get_analytics_metrics", + "label": "Analytics metrics", + "help": "", + "editable": true, + "required": false, + "default": true + }, + { + "type": "checkbox", + "key": "get_message_metrics", + "label": "SMS metrics", + "help": "", + "editable": true, + "required": false, + "default": true + } + ], + "dataflow_config": [ + { + "dataflow_id": "ringcentral-logs", + "additional_config_fields": [] + }, + { + "dataflow_id": "ringcentral-metrics", + "additional_config_fields": [] + } + ] + } + \ No newline at end of file diff --git a/ringcentral/assets/dataflows.yaml b/ringcentral/assets/dataflows.yaml new file mode 100644 index 0000000000000..bd5e2a3e9fbe2 --- /dev/null +++ b/ringcentral/assets/dataflows.yaml @@ -0,0 +1,11 @@ +provides: + - id: ringcentral-logs + always_on: true + granular: false + data_type: logs + direction: inbound + - id: ringcentral-metrics + always_on: true + granular: false + data_type: metrics + direction: inbound \ No newline at end of file