From 928fa6acf1873bb7a1bd87d613b329a23c8d86a1 Mon Sep 17 00:00:00 2001 From: Enrico Donnici Date: Tue, 26 Nov 2024 09:07:32 +0100 Subject: [PATCH 01/11] Move reused worflows to the "reusable" directory. --- .github/workflows/flaky-tests.yml | 2 +- .github/workflows/master.yml | 2 +- .github/workflows/pr.yml | 2 +- .github/workflows/publish-test-results-pr.yml | 2 +- .github/workflows/{ => reusable}/pr-test.yml | 2 +- .../{ => reusable}/run-validations.yml | 0 .../{ => reusable}/test-results-master.yml | 0 .../{ => reusable}/test-results-pr.yml | 0 .../workflows/{ => reusable}/test-target.yml | 0 .github/workflows/test-all.yml | 400 +++++++++--------- .github/workflows/validate.yml | 2 +- ddev/src/ddev/cli/validate/ci.py | 4 +- docs/developer/meta/ci/testing.md | 16 +- docs/developer/meta/ci/validation.md | 2 +- 14 files changed, 217 insertions(+), 217 deletions(-) rename .github/workflows/{ => reusable}/pr-test.yml (97%) rename .github/workflows/{ => reusable}/run-validations.yml (100%) rename .github/workflows/{ => reusable}/test-results-master.yml (100%) rename .github/workflows/{ => reusable}/test-results-pr.yml (100%) rename .github/workflows/{ => reusable}/test-target.yml (100%) diff --git a/.github/workflows/flaky-tests.yml b/.github/workflows/flaky-tests.yml index ef518b3a34aa1..3ced184fdba4b 100644 --- a/.github/workflows/flaky-tests.yml +++ b/.github/workflows/flaky-tests.yml @@ -36,7 +36,7 @@ jobs: concurrency: group: test-results - uses: ./.github/workflows/test-results-master.yml + uses: ./.github/workflows/reusable/test-results-master.yml secrets: inherit submit-traces: diff --git a/.github/workflows/master.yml b/.github/workflows/master.yml index 44e43b8592239..042399751d517 100644 --- a/.github/workflows/master.yml +++ b/.github/workflows/master.yml @@ -42,7 +42,7 @@ jobs: pull-requests: write contents: write - uses: ./.github/workflows/test-results-master.yml + uses: ./.github/workflows/reusable/test-results-master.yml secrets: inherit submit-traces: diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 7d11bfae7ff43..b9c5922cbd9e6 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -18,7 +18,7 @@ concurrency: jobs: test: - uses: ./.github/workflows/pr-test.yml + uses: ./.github/workflows/reusable/pr-test.yml with: repo: core secrets: inherit diff --git a/.github/workflows/publish-test-results-pr.yml b/.github/workflows/publish-test-results-pr.yml index 704ccf52941f7..df5aa7c64f4fe 100644 --- a/.github/workflows/publish-test-results-pr.yml +++ b/.github/workflows/publish-test-results-pr.yml @@ -10,7 +10,7 @@ on: jobs: publish: - uses: ./.github/workflows/test-results-pr.yml + uses: ./.github/workflows/reusable/test-results-pr.yml if: github.event.workflow_run.conclusion != 'skipped' permissions: checks: write diff --git a/.github/workflows/pr-test.yml b/.github/workflows/reusable/pr-test.yml similarity index 97% rename from .github/workflows/pr-test.yml rename to .github/workflows/reusable/pr-test.yml index 666cb2a549bb7..07d28472ea916 100644 --- a/.github/workflows/pr-test.yml +++ b/.github/workflows/reusable/pr-test.yml @@ -36,7 +36,7 @@ jobs: matrix: include: ${{ fromJson(needs.compute-matrix.outputs.matrix) }} - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: "${{ matrix.name }}" target: "${{ matrix.target }}" diff --git a/.github/workflows/run-validations.yml b/.github/workflows/reusable/run-validations.yml similarity index 100% rename from .github/workflows/run-validations.yml rename to .github/workflows/reusable/run-validations.yml diff --git a/.github/workflows/test-results-master.yml b/.github/workflows/reusable/test-results-master.yml similarity index 100% rename from .github/workflows/test-results-master.yml rename to .github/workflows/reusable/test-results-master.yml diff --git a/.github/workflows/test-results-pr.yml b/.github/workflows/reusable/test-results-pr.yml similarity index 100% rename from .github/workflows/test-results-pr.yml rename to .github/workflows/reusable/test-results-pr.yml diff --git a/.github/workflows/test-target.yml b/.github/workflows/reusable/test-target.yml similarity index 100% rename from .github/workflows/test-target.yml rename to .github/workflows/reusable/test-target.yml diff --git a/.github/workflows/test-all.yml b/.github/workflows/test-all.yml index 53fc9b5f077c9..408489375149e 100644 --- a/.github/workflows/test-all.yml +++ b/.github/workflows/test-all.yml @@ -55,7 +55,7 @@ on: jobs: jd316aba: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: ddev on Linux target: ddev @@ -75,7 +75,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j6712d43: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: ddev on Windows target: ddev @@ -95,7 +95,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit jb232c8c: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Datadog Checks Base on Linux target: datadog_checks_base @@ -115,7 +115,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit jda96080: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Datadog Checks Base on Windows target: datadog_checks_base @@ -135,7 +135,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j77217e9: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Datadog Checks Dev on Linux target: datadog_checks_dev @@ -155,7 +155,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j1176210: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Datadog Checks Dev on Windows target: datadog_checks_dev @@ -175,7 +175,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j8cdb65b: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Datadog Checks Downloader on Linux target: datadog_checks_downloader @@ -195,7 +195,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j8c73c41: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Datadog Checks Downloader on Windows target: datadog_checks_downloader @@ -215,7 +215,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit jd66e148: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Active Directory target: active_directory @@ -235,7 +235,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j02a4c95: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: ActiveMQ target: activemq @@ -255,7 +255,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit jb4c5802: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: ActiveMQ XML target: activemq_xml @@ -275,7 +275,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit jce7999e: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Aerospike target: aerospike @@ -295,7 +295,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit jd58222c: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Airflow target: airflow @@ -315,7 +315,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit jaaddf5e: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Amazon Kafka target: amazon_msk @@ -335,7 +335,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j9c53fc8: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Ambari target: ambari @@ -355,7 +355,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j87ec402: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Apache target: apache @@ -375,7 +375,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j89811be: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Appgate SDP target: appgate_sdp @@ -395,7 +395,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit jacbd843: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: ArangoDB target: arangodb @@ -415,7 +415,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j3650884: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Argo Rollouts target: argo_rollouts @@ -435,7 +435,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j14e797c: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Argo Workflows target: argo_workflows @@ -455,7 +455,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j92d42de: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: ArgoCD target: argocd @@ -475,7 +475,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j8c9f9aa: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: ASP.NET target: aspdotnet @@ -495,7 +495,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j924327f: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Avi Vantage target: avi_vantage @@ -515,7 +515,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit jeb3e097: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: AWS Neuron target: aws_neuron @@ -535,7 +535,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j8d83b0b: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Azure IoT Edge target: azure_iot_edge @@ -555,7 +555,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit jfcf4b1a: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Boundary target: boundary @@ -575,7 +575,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j2883ff0: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Btrfs target: btrfs @@ -595,7 +595,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j481d7ae: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Cacti target: cacti @@ -615,7 +615,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j47ac8c7: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Calico target: calico @@ -635,7 +635,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit je3297e4: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Cassandra target: cassandra @@ -655,7 +655,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit jf75679d: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Cassandra Nodetool target: cassandra_nodetool @@ -675,7 +675,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit jdffb064: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Ceph target: ceph @@ -695,7 +695,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit je6bb20d: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: cert-manager target: cert_manager @@ -715,7 +715,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit jeb29398: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Cilium target: cilium @@ -735,7 +735,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j3de8d1a: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Cisco ACI target: cisco_aci @@ -755,7 +755,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit jafd4d40: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Citrix Hypervisor target: citrix_hypervisor @@ -775,7 +775,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit jdee91dd: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: ClickHouse target: clickhouse @@ -795,7 +795,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j4131274: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Cloud Foundry API target: cloud_foundry_api @@ -815,7 +815,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j26f9a18: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Cloudera target: cloudera @@ -835,7 +835,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j7faf392: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: CockroachDB target: cockroachdb @@ -855,7 +855,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j89ec795: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Confluent Platform target: confluent_platform @@ -875,7 +875,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j13a53db: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Consul target: consul @@ -895,7 +895,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit jb67436a: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: CoreDNS target: coredns @@ -915,7 +915,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j483e815: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: CouchDB target: couch @@ -935,7 +935,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j1e84c35: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Couchbase target: couchbase @@ -955,7 +955,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit ja3692a6: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: CRI-O target: crio @@ -975,7 +975,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j2d21154: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Datadog Cluster Agent target: datadog_cluster_agent @@ -995,7 +995,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j69f9754: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: dcgm target: dcgm @@ -1015,7 +1015,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit jc8f84c3: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Directory target: directory @@ -1035,7 +1035,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j4b2fe2b: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Disk on Linux target: disk @@ -1055,7 +1055,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j92e8bce: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Disk on Windows target: disk @@ -1075,7 +1075,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j3e27604: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: DNS on Linux target: dns_check @@ -1095,7 +1095,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j301b42d: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: DNS on Windows target: dns_check @@ -1115,7 +1115,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit jc6b16d4: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: .NET CLR target: dotnetclr @@ -1135,7 +1135,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j274814f: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Druid target: druid @@ -1155,7 +1155,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j562bfe5: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Amazon ECS Fargate target: ecs_fargate @@ -1175,7 +1175,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j72f26c1: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: EKS Fargate target: eks_fargate @@ -1195,7 +1195,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j31c819b: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Elasticsearch target: elastic @@ -1215,7 +1215,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j93163a5: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Envoy target: envoy @@ -1235,7 +1235,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit jc4fef15: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: ESXi target: esxi @@ -1255,7 +1255,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit jc38cbd9: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: etcd target: etcd @@ -1275,7 +1275,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j284dfb9: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Exchange Server target: exchange_server @@ -1295,7 +1295,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j1856b23: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: External DNS target: external_dns @@ -1315,7 +1315,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j4f2c848: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Fluentd target: fluentd @@ -1335,7 +1335,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j6134697: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: fluxcd target: fluxcd @@ -1355,7 +1355,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j5018b0d: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Fly.io target: fly_io @@ -1375,7 +1375,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit jc364450: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: FoundationDB target: foundationdb @@ -1395,7 +1395,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j3becdbc: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Gearman target: gearmand @@ -1415,7 +1415,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j4ea3f09: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Gitlab target: gitlab @@ -1435,7 +1435,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j563739d: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Gitlab Runner target: gitlab_runner @@ -1455,7 +1455,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j16f5513: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: GlusterFS target: glusterfs @@ -1475,7 +1475,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j3399e09: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Go Expvar target: go_expvar @@ -1495,7 +1495,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j1fede0e: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Gunicorn target: gunicorn @@ -1515,7 +1515,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j5979923: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: HAProxy target: haproxy @@ -1535,7 +1535,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j8a8c654: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Harbor target: harbor @@ -1555,7 +1555,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j9cb9f66: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Hazelcast target: hazelcast @@ -1575,7 +1575,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j240a78b: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: HDFS Datanode target: hdfs_datanode @@ -1595,7 +1595,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j00a0dd6: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: HDFS Namenode target: hdfs_namenode @@ -1615,7 +1615,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit jaf48338: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Hive target: hive @@ -1635,7 +1635,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit je66898a: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: HiveMQ target: hivemq @@ -1655,7 +1655,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j56d6f32: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: HTTP target: http_check @@ -1675,7 +1675,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j95a2b08: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Hudi target: hudi @@ -1695,7 +1695,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j5a9585a: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: IBM ACE target: ibm_ace @@ -1715,7 +1715,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j60f59ae: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: IBM Db2 target: ibm_db2 @@ -1735,7 +1735,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j9accedb: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: IBM i target: ibm_i @@ -1755,7 +1755,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit jf4d06ee: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: IBM MQ on Linux target: ibm_mq @@ -1775,7 +1775,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j662406b: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: IBM MQ on Windows target: ibm_mq @@ -1795,7 +1795,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j440815a: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: IBM WAS target: ibm_was @@ -1815,7 +1815,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j0676988: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Ignite target: ignite @@ -1835,7 +1835,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j9267198: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: IIS target: iis @@ -1855,7 +1855,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j5dc7466: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Impala target: impala @@ -1875,7 +1875,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j0c16521: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Istio target: istio @@ -1895,7 +1895,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j46da136: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: JBoss_WildFly target: jboss_wildfly @@ -1915,7 +1915,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit je4a5f92: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Kafka target: kafka @@ -1935,7 +1935,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit jeaad214: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Kafka Consumer target: kafka_consumer @@ -1955,7 +1955,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j77f29c1: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Karpenter target: karpenter @@ -1975,7 +1975,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit jaee58c5: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Kong target: kong @@ -1995,7 +1995,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j92491f1: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Kubernetes API server metrics target: kube_apiserver_metrics @@ -2015,7 +2015,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j1ce0516: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Kubernetes Controller Manager target: kube_controller_manager @@ -2035,7 +2035,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j19a1b27: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Kube DNS target: kube_dns @@ -2055,7 +2055,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit jd1817b8: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Kube metrics server target: kube_metrics_server @@ -2075,7 +2075,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j5a98c4e: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Kube Proxy target: kube_proxy @@ -2095,7 +2095,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit jeebd4ae: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Kubernetes Scheduler target: kube_scheduler @@ -2115,7 +2115,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j89c297c: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Kubeflow target: kubeflow @@ -2135,7 +2135,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j24a5cff: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Kubelet target: kubelet @@ -2155,7 +2155,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j045310a: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Kubernetes Cluster Autoscaler target: kubernetes_cluster_autoscaler @@ -2175,7 +2175,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit jba841f0: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Kubernetes State target: kubernetes_state @@ -2195,7 +2195,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit jb0447e6: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: KubeVirt API target: kubevirt_api @@ -2215,7 +2215,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit jc4c1032: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: KubeVirt Controller target: kubevirt_controller @@ -2235,7 +2235,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j4f368cf: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: KubeVirt Handler target: kubevirt_handler @@ -2255,7 +2255,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j61e565f: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Kyoto Tycoon target: kyototycoon @@ -2275,7 +2275,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j6900ead: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: kyverno target: kyverno @@ -2295,7 +2295,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j1c6adb2: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Lighttpd target: lighttpd @@ -2315,7 +2315,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j8b3b099: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Linkerd target: linkerd @@ -2335,7 +2335,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j29dcd3a: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Linux proc extras target: linux_proc_extras @@ -2355,7 +2355,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit ja15251c: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: MapR target: mapr @@ -2375,7 +2375,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j141298e: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: MapReduce target: mapreduce @@ -2395,7 +2395,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j75f52a9: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Marathon target: marathon @@ -2415,7 +2415,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j8d5404b: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: MarkLogic target: marklogic @@ -2435,7 +2435,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j5b70138: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Memcached target: mcache @@ -2455,7 +2455,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit jbdadec9: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Mesos Master target: mesos_master @@ -2475,7 +2475,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j76c310f: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Mesos target: mesos_slave @@ -2495,7 +2495,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j91231ff: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: MongoDB target: mongo @@ -2515,7 +2515,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j211906c: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: MySQL target: mysql @@ -2535,7 +2535,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j5df646e: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Nagios target: nagios @@ -2555,7 +2555,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit jfc1e031: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Network on Linux target: network @@ -2575,7 +2575,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j7a1dfc6: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Network on Windows target: network @@ -2595,7 +2595,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j6a5b846: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: NFSstat target: nfsstat @@ -2615,7 +2615,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j93fea02: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: NGINX target: nginx @@ -2635,7 +2635,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit ja114815: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: NGINX Ingress Controller target: nginx_ingress_controller @@ -2655,7 +2655,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j74dc677: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Nvidia Triton target: nvidia_triton @@ -2675,7 +2675,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j2cf0a0a: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: OpenLDAP target: openldap @@ -2695,7 +2695,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit jaaa5727: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: OpenMetrics target: openmetrics @@ -2715,7 +2715,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j88ddb5b: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: OpenStack target: openstack @@ -2735,7 +2735,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j65171af: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: OpenStack Controller target: openstack_controller @@ -2755,7 +2755,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j4dff42c: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: PDH target: pdh_check @@ -2775,7 +2775,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j4a8166b: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: PGBouncer target: pgbouncer @@ -2795,7 +2795,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit jaa8b34b: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: PHP-FPM target: php_fpm @@ -2815,7 +2815,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j54fefc0: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Postfix target: postfix @@ -2835,7 +2835,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j44368ad: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Postgres target: postgres @@ -2855,7 +2855,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j8e38a40: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: PowerDNS Recursor target: powerdns_recursor @@ -2875,7 +2875,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit jaeea6e0: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Presto target: presto @@ -2895,7 +2895,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit je083bd8: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Process target: process @@ -2915,7 +2915,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit jbfa97cf: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Prometheus target: prometheus @@ -2935,7 +2935,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit jbb39de2: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: ProxySQL target: proxysql @@ -2955,7 +2955,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j5987374: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Pulsar target: pulsar @@ -2975,7 +2975,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j694032b: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: RabbitMQ target: rabbitmq @@ -2995,7 +2995,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit jcc172a7: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Ray target: ray @@ -3015,7 +3015,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit ja7f6415: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Redis target: redisdb @@ -3035,7 +3035,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j47000ee: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: RethinkDB target: rethinkdb @@ -3055,7 +3055,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit jdeada9f: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Riak target: riak @@ -3075,7 +3075,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j21f86cb: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: RiakCS target: riakcs @@ -3095,7 +3095,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j111b452: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: SAP HANA target: sap_hana @@ -3115,7 +3115,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j6a5cfa3: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Scylla target: scylla @@ -3135,7 +3135,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j6600bce: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Silk target: silk @@ -3155,7 +3155,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j02f6aa9: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: SingleStore target: singlestore @@ -3175,7 +3175,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j1e78283: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Slurm target: slurm @@ -3195,7 +3195,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j06ca546: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: SNMP target: snmp @@ -3215,7 +3215,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j1dbd59f: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Snowflake target: snowflake @@ -3235,7 +3235,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j2d7c8f5: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Solr target: solr @@ -3255,7 +3255,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j9485e6f: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: SonarQube target: sonarqube @@ -3275,7 +3275,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j529bc3b: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Spark target: spark @@ -3295,7 +3295,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j31a95c8: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: SQL Server on Windows target: sqlserver @@ -3315,7 +3315,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j3a8e004: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: SQL Server on Linux target: sqlserver @@ -3335,7 +3335,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit jaf4b616: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Squid target: squid @@ -3355,7 +3355,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j01c4d3c: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: SSH target: ssh_check @@ -3375,7 +3375,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j2981dbe: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: StatsD target: statsd @@ -3395,7 +3395,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j6f0ded4: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Strimzi target: strimzi @@ -3415,7 +3415,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit jf04a052: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Supervisord target: supervisord @@ -3435,7 +3435,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit jde3891f: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: System Core target: system_core @@ -3455,7 +3455,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j64445e6: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: System Swap target: system_swap @@ -3475,7 +3475,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j1eeafd2: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: TCP on Linux target: tcp_check @@ -3495,7 +3495,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j87dbe3f: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: TCP on Windows target: tcp_check @@ -3515,7 +3515,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j8217a3a: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: TeamCity target: teamcity @@ -3535,7 +3535,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit jf4a7e97: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Tekton target: tekton @@ -3555,7 +3555,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit je68b3b9: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Teleport target: teleport @@ -3575,7 +3575,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j840fec7: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Temporal target: temporal @@ -3595,7 +3595,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit jeefbe37: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Teradata target: teradata @@ -3615,7 +3615,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit jb4a6940: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: tibco_ems target: tibco_ems @@ -3635,7 +3635,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit jd1c18ec: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: TLS target: tls @@ -3655,7 +3655,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j9438e1d: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Tomcat target: tomcat @@ -3675,7 +3675,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j4baeba2: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: TorchServe target: torchserve @@ -3695,7 +3695,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j41a575a: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Traefik Mesh target: traefik_mesh @@ -3715,7 +3715,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j8a1b5bb: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Traffic Server target: traffic_server @@ -3735,7 +3735,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit jfc2bf01: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Twemproxy target: twemproxy @@ -3755,7 +3755,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit jd0626ef: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Twistlock target: twistlock @@ -3775,7 +3775,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j0c8fc90: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Varnish target: varnish @@ -3795,7 +3795,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j5d55c41: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Vault target: vault @@ -3815,7 +3815,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j9981b0b: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Vertica target: vertica @@ -3835,7 +3835,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit jeae0788: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: vLLM target: vllm @@ -3855,7 +3855,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit jb120af1: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: VoltDB target: voltdb @@ -3875,7 +3875,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j269c8a5: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: vSphere target: vsphere @@ -3895,7 +3895,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit je95095e: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Weaviate target: weaviate @@ -3915,7 +3915,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j40e5c98: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: WebLogic target: weblogic @@ -3935,7 +3935,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j70c9219: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Windows Event Log target: win32_event_log @@ -3955,7 +3955,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit jc1fb93c: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Windows performance counters target: windows_performance_counters @@ -3975,7 +3975,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j9798a89: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Windows Service target: windows_service @@ -3995,7 +3995,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit j25cdd56: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: WMI target: wmi_check @@ -4015,7 +4015,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit ja6bc642: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: Yarn target: yarn @@ -4035,7 +4035,7 @@ jobs: pytest-args: ${{ inputs.pytest-args }} secrets: inherit ja446cea: - uses: ./.github/workflows/test-target.yml + uses: ./.github/workflows/reusable/test-results-pr.yml with: job-name: ZooKeeper target: zk diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index ca39895538130..c9bc08782d7c5 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -12,7 +12,7 @@ concurrency: jobs: run: - uses: ./.github/workflows/run-validations.yml + uses: ./.github/workflows/reusable/run-validations.yml with: repo: core diff --git a/ddev/src/ddev/cli/validate/ci.py b/ddev/src/ddev/cli/validate/ci.py index 40ed9b26462e1..9871e1641c320 100644 --- a/ddev/src/ddev/cli/validate/ci.py +++ b/ddev/src/ddev/cli/validate/ci.py @@ -56,9 +56,9 @@ def ci(app: Application, sync: bool): is_core = app.repo.name == 'core' is_marketplace = app.repo.name == 'marketplace' test_workflow = ( - './.github/workflows/test-target.yml' + './.github/workflows/reusable/test-results-pr.yml' if app.repo.name == 'core' - else 'DataDog/integrations-core/.github/workflows/test-target.yml@master' + else 'DataDog/integrations-core/.github/workflows/reusable/test-results-pr.yml@master' ) jobs_workflow_path = app.repo.path / '.github' / 'workflows' / 'test-all.yml' original_jobs_workflow = jobs_workflow_path.read_text() if jobs_workflow_path.is_file() else '' diff --git a/docs/developer/meta/ci/testing.md b/docs/developer/meta/ci/testing.md index 3377cdfb58406..a65a31c90f58b 100644 --- a/docs/developer/meta/ci/testing.md +++ b/docs/developer/meta/ci/testing.md @@ -13,11 +13,11 @@ ## Reusable workflows -These can be [used](https://docs.github.com/en/actions/using-workflows/reusing-workflows) by other repositories. +The worflows in the .github/workflows/reusuable directory can be [used](https://docs.github.com/en/actions/using-workflows/reusing-workflows) by other repositories. Others workflows can be re-used too, but they might have unnanounced breaking changes. ### PR test -This [workflow](https://github.com/DataDog/integrations-core/blob/master/.github/workflows/pr-test.yml) is meant to be used on pull requests. +This [workflow](https://github.com/DataDog/integrations-core/blob/master/.github/workflows/reusable/pr-test.yml) is meant to be used on pull requests. First it [computes the job matrix](https://github.com/DataDog/integrations-core/blob/master/.github/workflows/compute-matrix.yml) based on what was changed. Since this is time sensitive, rather than fetching the entire history we use GitHub's API to find out the precise depth to fetch in order to reach the merge base. Then it runs the [test workflow](#test-target) for every job in the matrix. @@ -36,7 +36,7 @@ First it [computes the job matrix](https://github.com/DataDog/integrations-core/ ### Test target -This [workflow](https://github.com/DataDog/integrations-core/blob/master/.github/workflows/test-target.yml) runs a single job that is the foundation of how all tests are executed. Depending on the input parameters, the order of operations is as follows: +This [workflow](https://github.com/DataDog/integrations-core/blob/master/.github/workflows/reusable/test-results-pr.yml) runs a single job that is the foundation of how all tests are executed. Depending on the input parameters, the order of operations is as follows: - [Checkout](https://github.com/actions/checkout) code (on pull requests this is a [merge commit](https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#pull_request)) - [Set up](https://github.com/actions/setup-python) Python 2.7 @@ -69,7 +69,7 @@ Both the [PR test](#pr-test) and [Test target](#test-target) reusable workflows ```yaml jobs: test: - uses: DataDog/integrations-core/.github/workflows/pr-test.yml@master + uses: DataDog/integrations-core/.github/workflows/reusable/pr-test.yml@master with: repo: "" setup-env-vars: >- @@ -160,11 +160,11 @@ We maintain a [public dashboard](https://p.datadoghq.com/sb/yB5yjZ-e9572aadd5162 After all test jobs in a workflow complete we [publish](https://github.com/EnricoMi/publish-unit-test-result-action) the results. -On pull requests we [create](https://github.com/DataDog/integrations-core/blob/master/.github/workflows/test-results-pr.yml) a single comment that remains updated: +On pull requests we [create](https://github.com/DataDog/integrations-core/blob/master/.github/workflows/reusable/test-results-pr.yml) a single comment that remains updated: ![Example comment](../../assets/images/pr-test-results-comment.png){ loading=lazy } -On merges to the `master` branch we [generate](https://github.com/DataDog/integrations-core/blob/master/.github/workflows/test-results-master.yml) a [badge](https://github.com/DataDog/integrations-core/blob/badges/test-results.svg) with stats about all tests: +On merges to the `master` branch we [generate](https://github.com/DataDog/integrations-core/blob/master/.github/workflows/reusable/test-results-master.yml) a [badge](https://github.com/DataDog/integrations-core/blob/badges/test-results.svg) with stats about all tests: [![CI testing badge](https://raw.githubusercontent.com/DataDog/integrations-core/badges/test-results.svg){ loading=lazy }](https://github.com/DataDog/integrations-core/actions/workflows/master.yml) @@ -179,8 +179,8 @@ During [testing](#test-target) the cache is restored, with a fallback to an olde Tests by default use the Python version the Agent currently ships. This value must be changed in the following locations: - `PYTHON_VERSION` environment variable in [/.github/workflows/cache-shared-deps.yml](https://github.com/DataDog/integrations-core/blob/master/.github/workflows/cache-shared-deps.yml) -- `PYTHON_VERSION` environment variable in [/.github/workflows/run-validations.yml](https://github.com/DataDog/integrations-core/blob/master/.github/workflows/run-validations.yml) -- `PYTHON_VERSION` environment variable fallback in [/.github/workflows/test-target.yml](https://github.com/DataDog/integrations-core/blob/master/.github/workflows/test-target.yml) +- `PYTHON_VERSION` environment variable in [/.github/workflows/reusable/run-validations.yml](https://github.com/DataDog/integrations-core/blob/master/.github/workflows/reusable/run-validations.yml) +- `PYTHON_VERSION` environment variable fallback in [/.github/workflows/reusable/test-results-pr.yml](https://github.com/DataDog/integrations-core/blob/master/.github/workflows/reusable/test-results-pr.yml) ## Caveats diff --git a/docs/developer/meta/ci/validation.md b/docs/developer/meta/ci/validation.md index 99bc19f770449..c652028cccfca 100644 --- a/docs/developer/meta/ci/validation.md +++ b/docs/developer/meta/ci/validation.md @@ -2,7 +2,7 @@ ----- -Various validations are [ran](https://github.com/DataDog/integrations-core/blob/master/.github/workflows/validate.yml) to check for correctness. There is a [reusable workflow](https://github.com/DataDog/integrations-core/blob/master/.github/workflows/run-validations.yml) that repositories may call with input parameters defining which validations to use, with each input parameter corresponding to a subcommand under the `ddev validate` command group. +Various validations are [ran](https://github.com/DataDog/integrations-core/blob/master/.github/workflows/validate.yml) to check for correctness. There is a [reusable workflow](https://github.com/DataDog/integrations-core/blob/master/.github/workflows/resuable/run-validations.yml) that repositories may call with input parameters defining which validations to use, with each input parameter corresponding to a subcommand under the `ddev validate` command group. ## Agent requirements From 623a729e4c2ee14323f27b3bbcab98166786b1ef Mon Sep 17 00:00:00 2001 From: Enrico Donnici Date: Mon, 25 Nov 2024 11:28:05 +0100 Subject: [PATCH 02/11] Fix permissions in the "Publish test results for PRs" action. (#19122) * Add "contents: write" to publish-test-results-pr.yml * * Switch to contents: read for test-result-pr.ym and publish-rest-results-pr.yml * Add actions: read to the same worflows * Add comments explaining the motivations --- .github/workflows/publish-test-results-pr.yml | 4 +++- .github/workflows/reusable/test-results-pr.yml | 9 +++++---- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/.github/workflows/publish-test-results-pr.yml b/.github/workflows/publish-test-results-pr.yml index df5aa7c64f4fe..0e07455b869a1 100644 --- a/.github/workflows/publish-test-results-pr.yml +++ b/.github/workflows/publish-test-results-pr.yml @@ -12,7 +12,9 @@ jobs: publish: uses: ./.github/workflows/reusable/test-results-pr.yml if: github.event.workflow_run.conclusion != 'skipped' - permissions: + permissions: # These permissions need to match the ones in the included workflow, see test-results-pr.yml for details checks: write pull-requests: write + contents: read + actions: read secrets: inherit diff --git a/.github/workflows/reusable/test-results-pr.yml b/.github/workflows/reusable/test-results-pr.yml index a40f3dcfe41e7..5212bccb8d77a 100644 --- a/.github/workflows/reusable/test-results-pr.yml +++ b/.github/workflows/reusable/test-results-pr.yml @@ -12,10 +12,11 @@ jobs: name: Publish test results runs-on: ubuntu-22.04 - permissions: - checks: write - pull-requests: write - contents: write + permissions: + checks: write # For EnricoMi/publish-unit-test-result-action@v2 + pull-requests: write # For EnricoMi/publish-unit-test-result-action@v2 + contents: read # For EnricoMi/publish-unit-test-result-action@v2 + actions: read # For "Download and extract artifacts" steps: - name: Download and extract artifacts From b3df517204c413cc397a2be1eaabc430515fcebf Mon Sep 17 00:00:00 2001 From: Enrico Donnici Date: Mon, 25 Nov 2024 11:56:27 +0100 Subject: [PATCH 03/11] Fix permissions in the "Check PR" action. (#19124) * Add missing permissions or pr-check.yml * Add comments --- .github/workflows/pr-check.yml | 4 ++++ .github/workflows/pr-quick-check.yml | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pr-check.yml b/.github/workflows/pr-check.yml index a07e6c96fa7a1..c4f54320c246d 100644 --- a/.github/workflows/pr-check.yml +++ b/.github/workflows/pr-check.yml @@ -12,6 +12,10 @@ jobs: run: uses: ./.github/workflows/pr-quick-check.yml if: ${{ github.base_ref == 'master' }} + permissions: # These permissions need to match the ones in the included workflow, see pr-quick-check.yml for details + pull-requests: write + contents: read with: repo: core secrets: inherit + diff --git a/.github/workflows/pr-quick-check.yml b/.github/workflows/pr-quick-check.yml index 6caf5c6a1b2d5..9a1c5c2e2d792 100644 --- a/.github/workflows/pr-quick-check.yml +++ b/.github/workflows/pr-quick-check.yml @@ -21,8 +21,8 @@ jobs: runs-on: ubuntu-22.04 permissions: - pull-requests: write - contents: read + pull-requests: write # For the "Comment" step, read for the "Fetch script" and "Check changelog" steps + contents: read # For the "Fetch diff" and "Check changelog" steps steps: # Uncomment for testing purposes From c584049d3043f1b3e2e93b98c8c91b6ae6c35fdd Mon Sep 17 00:00:00 2001 From: HadhemiDD <43783545+HadhemiDD@users.noreply.github.com> Date: Mon, 25 Nov 2024 12:54:24 +0100 Subject: [PATCH 04/11] Port changes from 7.60 RC6 to master (#19127) * [Release] Bumped sqlserver version to 20.1.1 * [Release] Bumped slurm version to 1.0.1 * [Release] Bumped kafka_consumer version to 6.1.0 --- kafka_consumer/CHANGELOG.md | 6 ++++++ kafka_consumer/changelog.d/19099.security | 1 - kafka_consumer/datadog_checks/kafka_consumer/__about__.py | 2 +- requirements-agent-release.txt | 6 +++--- slurm/CHANGELOG.md | 6 ++++++ slurm/changelog.d/19117.fixed | 1 - slurm/datadog_checks/slurm/__about__.py | 2 +- sqlserver/CHANGELOG.md | 6 ++++++ sqlserver/changelog.d/19110.fixed | 1 - sqlserver/datadog_checks/sqlserver/__about__.py | 2 +- 10 files changed, 24 insertions(+), 9 deletions(-) delete mode 100644 kafka_consumer/changelog.d/19099.security delete mode 100644 slurm/changelog.d/19117.fixed delete mode 100644 sqlserver/changelog.d/19110.fixed diff --git a/kafka_consumer/CHANGELOG.md b/kafka_consumer/CHANGELOG.md index e6191714d124e..f51c5184d183c 100644 --- a/kafka_consumer/CHANGELOG.md +++ b/kafka_consumer/CHANGELOG.md @@ -2,6 +2,12 @@ +## 6.1.0 / 2024-11-25 + +***Security***: + +* Bump confluent-kafka to 2.6.1 ([#19099](https://github.com/DataDog/integrations-core/pull/19099)) + ## 6.0.0 / 2024-10-04 / Agent 7.59.0 ***Removed***: diff --git a/kafka_consumer/changelog.d/19099.security b/kafka_consumer/changelog.d/19099.security deleted file mode 100644 index 48e5443d8c3a5..0000000000000 --- a/kafka_consumer/changelog.d/19099.security +++ /dev/null @@ -1 +0,0 @@ -Bump confluent-kafka to 2.6.1 \ No newline at end of file diff --git a/kafka_consumer/datadog_checks/kafka_consumer/__about__.py b/kafka_consumer/datadog_checks/kafka_consumer/__about__.py index 91262416e46c9..34fa89c4d14c1 100644 --- a/kafka_consumer/datadog_checks/kafka_consumer/__about__.py +++ b/kafka_consumer/datadog_checks/kafka_consumer/__about__.py @@ -2,4 +2,4 @@ # All rights reserved # Licensed under a 3-clause BSD style license (see LICENSE) -__version__ = "6.0.0" +__version__ = "6.1.0" diff --git a/requirements-agent-release.txt b/requirements-agent-release.txt index 316f42c8a2c9a..85498b3337d42 100644 --- a/requirements-agent-release.txt +++ b/requirements-agent-release.txt @@ -91,7 +91,7 @@ datadog-impala==3.1.0 datadog-istio==8.0.0 datadog-jboss-wildfly==3.1.0 datadog-journald==3.0.0 -datadog-kafka-consumer==6.0.0 +datadog-kafka-consumer==6.1.0 datadog-kafka==4.0.0 datadog-karpenter==2.1.0 datadog-kong==5.0.0 @@ -159,13 +159,13 @@ datadog-scylla==4.0.0 datadog-sidekiq==3.0.0 datadog-silk==4.0.0 datadog-singlestore==4.0.0 -datadog-slurm==1.0.0; sys_platform == 'linux2' +datadog-slurm==1.0.1; sys_platform == 'linux2' datadog-snmp==9.0.0 datadog-snowflake==7.0.0 datadog-solr==2.1.0 datadog-sonarqube==5.0.0 datadog-spark==6.1.0 -datadog-sqlserver==20.1.0 +datadog-sqlserver==20.1.1 datadog-squid==4.0.0 datadog-ssh-check==4.0.0 datadog-statsd==3.0.0 diff --git a/slurm/CHANGELOG.md b/slurm/CHANGELOG.md index 63d0291de381b..2df8076b53349 100644 --- a/slurm/CHANGELOG.md +++ b/slurm/CHANGELOG.md @@ -2,6 +2,12 @@ +## 1.0.1 / 2024-11-25 + +***Fixed***: + +* Fix issue in which the sacct params kept growing with each iteration ([#19117](https://github.com/DataDog/integrations-core/pull/19117)) + ## 1.0.0 / 2024-11-06 ***Added***: diff --git a/slurm/changelog.d/19117.fixed b/slurm/changelog.d/19117.fixed deleted file mode 100644 index 11da713cd1f7d..0000000000000 --- a/slurm/changelog.d/19117.fixed +++ /dev/null @@ -1 +0,0 @@ -Fix issue in which the sacct params kept growing with each iteration diff --git a/slurm/datadog_checks/slurm/__about__.py b/slurm/datadog_checks/slurm/__about__.py index acbfd1c866b84..e0db4e56d553f 100644 --- a/slurm/datadog_checks/slurm/__about__.py +++ b/slurm/datadog_checks/slurm/__about__.py @@ -1,4 +1,4 @@ # (C) Datadog, Inc. 2024-present # All rights reserved # Licensed under a 3-clause BSD style license (see LICENSE) -__version__ = '1.0.0' +__version__ = '1.0.1' diff --git a/sqlserver/CHANGELOG.md b/sqlserver/CHANGELOG.md index 6958ccddfd01e..19d8334773f8d 100644 --- a/sqlserver/CHANGELOG.md +++ b/sqlserver/CHANGELOG.md @@ -2,6 +2,12 @@ +## 20.1.1 / 2024-11-25 + +***Fixed***: + +* Use alternative schema collection query for sqlserver 2016 and older due to STRING_AGG not being supported until SQLServer 2017 ([#19110](https://github.com/DataDog/integrations-core/pull/19110)) + ## 20.1.0 / 2024-10-31 ***Added***: diff --git a/sqlserver/changelog.d/19110.fixed b/sqlserver/changelog.d/19110.fixed deleted file mode 100644 index 5b971349edede..0000000000000 --- a/sqlserver/changelog.d/19110.fixed +++ /dev/null @@ -1 +0,0 @@ -Use alternative schema collection query for sqlserver 2016 and older due to STRING_AGG not being supported until SQLServer 2017 diff --git a/sqlserver/datadog_checks/sqlserver/__about__.py b/sqlserver/datadog_checks/sqlserver/__about__.py index 9d60babc50b9c..88c205094f084 100644 --- a/sqlserver/datadog_checks/sqlserver/__about__.py +++ b/sqlserver/datadog_checks/sqlserver/__about__.py @@ -2,4 +2,4 @@ # All rights reserved # Licensed under a 3-clause BSD style license (see LICENSE) -__version__ = '20.1.0' +__version__ = '20.1.1' From 8895fb3450eab9fae5bbd3405a4f34b6ad38e9db Mon Sep 17 00:00:00 2001 From: shubhamvekariya-crest <157569826+shubhamvekariya-crest@users.noreply.github.com> Date: Mon, 25 Nov 2024 20:23:36 +0530 Subject: [PATCH 05/11] DDS: Trend Micro Vision One Endpoint Security - README changes (#18933) * Update setup section of readme * Update readme steps for timezone * Address review comments --- .../README.md | 34 +++++++------------ 1 file changed, 13 insertions(+), 21 deletions(-) diff --git a/trend_micro_vision_one_endpoint_security/README.md b/trend_micro_vision_one_endpoint_security/README.md index 9f021643e84ef..beea3996ca03b 100644 --- a/trend_micro_vision_one_endpoint_security/README.md +++ b/trend_micro_vision_one_endpoint_security/README.md @@ -29,37 +29,29 @@ Use out-of-the-box dashboards to gain detailed insights into system events, netw #### Get Credentials of Trend Micro Vision One Endpoint Security 1. Log in to the Trend Micro Vision One console. -2. Go to **Endpoint Security** > **Standard Endpoint Protection** > **Administration** > **Settings** > **Automation API Access Settings**.
The Automation API Access Settings screen appears. +2. Go to **Endpoint Security** (Sidebar) > **Standard Endpoint Protection** > **Administration** > **Settings** > **Automation API Access Settings**. 3. Click **Add**.
The Application Access Settings section appears and displays the following information: - 1. **API URL**: The Host of the Trend Micro Vision One Endpoint Security console. + 1. **API URL**: The API Host of the Trend Micro Vision One Endpoint Security console. 2. **Application ID**: The Application ID of the Trend Micro Vision One Endpoint Security console. 3. **API key**: The API key of the Trend Micro Vision One Endpoint Security console. -4. Copy and store the API host, Application ID, and API key in a secure location. -5. Select **Enable application integration using Apex Central Automation APIs**. -6. Configure the following settings. +4. Tick the **Enable application integration using Apex Central Automation APIs** checkbox. +5. Configure the following settings. 1. **Application name**: Specify an easily identifiable name for the application. 2. **Communication time-out**: Select 120 seconds for a request to reach Apex Central after the application generates the request. -7. Click **Save**.
The Automation API Access Settings screen appears and displays the newly added application in the table. +6. Click **Save**. #### Get Timezone of Trend Micro Vision One console -1. Go to **Administration** (Sidebar) > **Console Settings**. -2. Check the timezone from **Current console time**. -3. Ensure this timezone is selected in the integration configuration. - -#### Configure the Trend Micro Vision One Endpoint Security and Datadog Integration - -Configure the Datadog endpoint to forward Trend Micro Vision One Endpoint Security logs to Datadog. +1. Log in to the Trend Micro Vision One console. +2. Go to **Administration** (Sidebar) > **Console Settings** > **Time Zone**. +3. Check the **Timezone** from **Current console time**. -1. Navigate to `Trend Micro Vision One Endpoint Security`. -2. Add your Trend Micro Vision One Endpoint Security credentials. +#### Add your Trend Micro Vision One Endpoint Security credentials -| Trend Micro Vision One Endpoint Security Parameters | Description | -| --------------------------------------------------- | ----------------------------------------------------------------------- | -| API Host | The API Host of Trend Micro Vision One Endpoint Security console. | -| Application ID | The Application ID of Trend Micro Vision One Endpoint Security console. | -| API Key | The API Key of of Trend Micro Vision One Endpoint Security console. | -| Time Zone | The Time Zone of the Trend Micro Vision One console. | +- API Host +- Application ID +- API Key +- Time Zone (This timezone should be the same as the Trend Vision One console.) ## Data Collected From 89564719669747a971227e966610a40607c7edaa Mon Sep 17 00:00:00 2001 From: yahya-mouman <103438582+yahya-mouman@users.noreply.github.com> Date: Mon, 25 Nov 2024 17:25:55 +0100 Subject: [PATCH 06/11] Yahya/create anthropic (#19024) * Anthropic skeleton code * Anthropic documentation * Anthropic label * Remove dashboards * Remove tabs * indentation * Update anthropic/manifest.json Co-authored-by: Barry Eom <31739208+barieom@users.noreply.github.com> * add dashboards * move dashboards * 1 line dashboard * Update anthropic/README.md Co-authored-by: DeForest Richards <56796055+drichards-87@users.noreply.github.com> * Update anthropic/README.md Co-authored-by: DeForest Richards <56796055+drichards-87@users.noreply.github.com> * Update anthropic/README.md Co-authored-by: DeForest Richards <56796055+drichards-87@users.noreply.github.com> * Update anthropic/README.md Co-authored-by: DeForest Richards <56796055+drichards-87@users.noreply.github.com> * Update anthropic/README.md Co-authored-by: DeForest Richards <56796055+drichards-87@users.noreply.github.com> * No Metrics * Remove images readme * Correction * Update anthropic/README.md Co-authored-by: DeForest Richards <56796055+drichards-87@users.noreply.github.com> * Add code owners * Update anthropic/manifest.json * Update anthropic/README.md Co-authored-by: Barry Eom <31739208+barieom@users.noreply.github.com> * Update dead sdk link * remove metrics * Delete anthropic/metadata.csv * remove dashboard * remove dashboard --------- Co-authored-by: Barry Eom <31739208+barieom@users.noreply.github.com> Co-authored-by: DeForest Richards <56796055+drichards-87@users.noreply.github.com> Co-authored-by: Steven Yuen --- .github/CODEOWNERS | 2 +- .github/workflows/config/labeler.yml | 2 + anthropic/CHANGELOG.md | 7 ++ anthropic/README.md | 127 +++++++++++++++++++++++++++ anthropic/assets/service_checks.json | 1 + anthropic/manifest.json | 43 +++++++++ 6 files changed, 181 insertions(+), 1 deletion(-) create mode 100644 anthropic/CHANGELOG.md create mode 100644 anthropic/README.md create mode 100644 anthropic/assets/service_checks.json create mode 100644 anthropic/manifest.json diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 7d760a9ef9174..cfcaedeab7410 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -200,7 +200,7 @@ datadog_checks_base/tests/**/test_db_statements.py @DataDog/database-monitoring # APM Integrations /langchain/ @DataDog/ml-observability @DataDog/agent-integrations @DataDog/documentation /openai/ @DataDog/ml-observability @DataDog/agent-integrations @DataDog/documentation - +/anthropic/ @DataDog/ml-observability @DataDog/agent-integrations @DataDog/documentation # Windows agent datadog_checks_base/datadog_checks/base/checks/win/ @DataDog/windows-agent @DataDog/agent-integrations diff --git a/.github/workflows/config/labeler.yml b/.github/workflows/config/labeler.yml index 580742a589edf..157f9d601aebc 100644 --- a/.github/workflows/config/labeler.yml +++ b/.github/workflows/config/labeler.yml @@ -317,6 +317,8 @@ integration/kyverno: - kyverno/**/* integration/langchain: - langchain/**/* +integration/anthropic: +- anthropic/**/* integration/lastpass: - lastpass/**/* integration/lighttpd: diff --git a/anthropic/CHANGELOG.md b/anthropic/CHANGELOG.md new file mode 100644 index 0000000000000..3de181c7e0654 --- /dev/null +++ b/anthropic/CHANGELOG.md @@ -0,0 +1,7 @@ +# CHANGELOG - Anthropic + +## 1.0.0 / 2024-11-08 + +***Added***: + +* Initial Release diff --git a/anthropic/README.md b/anthropic/README.md new file mode 100644 index 0000000000000..c15b4d9be6d33 --- /dev/null +++ b/anthropic/README.md @@ -0,0 +1,127 @@ +# Anthropic + +## Overview +Use the Anthropic integration to monitor, troubleshoot, and evaluate your LLM-powered applications, such as chatbots or data extraction tools, using Anthropic's models. + +If you are building LLM applications, use LLM Observability to investigate the root cause of issues, +monitor operational performance, and evaluate the quality, privacy, and safety of your LLM applications. + +See the [LLM Observability tracing view video](https://imgix.datadoghq.com/video/products/llm-observability/expedite-troubleshooting.mp4?fm=webm&fit=max) for an example of how you can investigate a trace. + +## Setup + +### LLM Observability: Get end-to-end visibility into your LLM application using Anthropic +You can enable LLM Observability in different environments. Follow the appropriate setup based on your scenario: + +#### Installation for Python + +##### If you do not have the Datadog Agent: +1. Install the `ddtrace` package: + + ```shell + pip install ddtrace + ``` + +2. Start your application using the following command to enable Agentless mode: + + ```shell + DD_SITE= DD_API_KEY= DD_LLMOBS_ENABLED=1 DD_LLMOBS_AGENTLESS_ENABLED=1 DD_LLMOBS_ML_APP= ddtrace-run python .py + ``` + +##### If you already have the Datadog Agent installed: +1. Make sure the Agent is running and that APM and StatsD are enabled. For example, use the following command with Docker: + + ```shell + docker run -d \ + --cgroupns host \ + --pid host \ + -v /var/run/docker.sock:/var/run/docker.sock:ro \ + -v /proc/:/host/proc/:ro \ + -v /sys/fs/cgroup/:/host/sys/fs/cgroup:ro \ + -e DD_API_KEY= \ + -p 127.0.0.1:8126:8126/tcp \ + -p 127.0.0.1:8125:8125/udp \ + -e DD_DOGSTATSD_NON_LOCAL_TRAFFIC=true \ + -e DD_APM_ENABLED=true \ + gcr.io/datadoghq/agent:latest + ``` + +2. If you haven't already, install the `ddtrace` package: + + ```shell + pip install ddtrace + ``` + +3. To automatically enable tracing, start your application using the `ddtrace-run` command: + + ```shell + DD_SITE= DD_API_KEY= DD_LLMOBS_ENABLED=1 DD_LLMOBS_ML_APP= ddtrace-run python .py + ``` + +**Note**: If the Agent is running on a custom host or port, set `DD_AGENT_HOST` and `DD_TRACE_AGENT_PORT` accordingly. + +##### If you are running LLM Observability in a serverless environment (AWS Lambda): +1. Install the **Datadog-Python** and **Datadog-Extension** Lambda layers as part of your AWS Lambda setup. +2. Enable LLM Observability by setting the following environment variables: + + ```shell + DD_SITE= DD_API_KEY= DD_LLMOBS_ENABLED=1 DD_LLMOBS_ML_APP= + ``` + +**Note**: In serverless environments, Datadog automatically flushes spans at the end of the Lambda function. + +##### Automatic Anthropic tracing + +The Anthropic integration allows for automatic tracing of chat message calls made by the Anthropic Python SDK, capturing latency, errors, input/output messages, and token usage during Anthropic operations. + +The following methods are traced for both synchronous and asynchronous Anthropic operations: +- Chat messages (including streamed calls): `Anthropic().messages.create()`, `AsyncAnthropic().messages.create()` +- Streamed chat messages: `Anthropic().messages.stream()`, `AsyncAnthropic().messages.stream()` + +No additional setup is required for these methods. + +##### Validation + +Validate that LLM Observability is properly capturing spans by checking your application logs for successful span creation. You can also run the following command to check the status of the `dd-trace` integration: + + ```shell + ddtrace-run --info + ``` + +Look for the following message to confirm the setup: + + ```shell + Agent error: None + ``` + +##### Debugging + +If you encounter issues during setup, enable debug logging by passing the `--debug` flag: + + ```shell + ddtrace-run --debug + ``` + +This displays any errors related to data transmission or instrumentation, including issues with Anthropic traces. + +## Data Collected + +### Metrics + +The Anthropic integration does not include any custom metrics. + +### Service Checks + +The Anthropic integration does not include any service checks. + +### Events + +The Anthropic integration does not include any events. + +## Troubleshooting + +Need help? Contact [Datadog support][2]. + +[1]: https://docs.datadoghq.com/integrations/anthropic/ +[2]: https://docs.datadoghq.com/help/ + diff --git a/anthropic/assets/service_checks.json b/anthropic/assets/service_checks.json new file mode 100644 index 0000000000000..fe51488c7066f --- /dev/null +++ b/anthropic/assets/service_checks.json @@ -0,0 +1 @@ +[] diff --git a/anthropic/manifest.json b/anthropic/manifest.json new file mode 100644 index 0000000000000..082d9d8c046be --- /dev/null +++ b/anthropic/manifest.json @@ -0,0 +1,43 @@ +{ + "manifest_version": "2.0.0", + "app_uuid": "53fe7c3e-57eb-42ca-8e43-ec92c04b6160", + "app_id": "anthropic", + "display_on_public_website": true, + "tile": { + "overview": "README.md#Overview", + "configuration": "README.md#Setup", + "support": "README.md#Support", + "changelog": "CHANGELOG.md", + "description": "Monitor Anthropic usage and health at the application level", + "title": "Anthropic", + "media": [], + "classifier_tags": [ + "Category::AI/ML", + "Category::Metrics", + "Submitted Data Type::Traces", + "Supported OS::Linux", + "Supported OS::Windows", + "Supported OS::macOS", + "Offering::Integration" + ] + }, + "assets": { + "integration": { + "auto_install": false, + "source_type_id": 31102434, + "source_type_name": "Anthropic", + "events": { + "creates_events": false + }, + "service_checks": { + "metadata_path": "assets/service_checks.json" + } + } + }, + "author": { + "support_email": "help@datadoghq.com", + "name": "Datadog", + "homepage": "https://www.datadoghq.com", + "sales_email": "info@datadoghq.com" + } +} From d0cbb3533fcb33afd6719ce8e88701f9119e0b47 Mon Sep 17 00:00:00 2001 From: Jen Gilbert Date: Mon, 25 Nov 2024 11:40:36 -0600 Subject: [PATCH 07/11] Include integration installation step (#18976) * Include integration installation step * Integrate feedback --- windows_service/README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/windows_service/README.md b/windows_service/README.md index b7431301f7e47..3e1ebad4a6ad1 100644 --- a/windows_service/README.md +++ b/windows_service/README.md @@ -8,7 +8,7 @@ This check monitors the state of any Windows Service and submits a service check ### Installation -The Windows Service check is included in the [Datadog Agent][1] package, so you don't need to install anything else on your Windows hosts. +The Windows Service check is installed by default with the [Datadog Agent][1], but is not configured. Please see the next section to configure the check. ### Configuration @@ -136,3 +136,4 @@ If the service is present in the output, permissions are the issue. To give the [15]: https://docs.datadoghq.com/agent/guide/windows-agent-ddagent-user/ [16]: https://learn.microsoft.com/en-US/troubleshoot/windows-server/group-policy/configure-group-policies-set-security [17]: https://learn.microsoft.com/en-us/windows/win32/services/service-trigger-events +[18]: https://app.datadoghq.com/integrations/windows-service?search=windows%20service From c11b6c8cb5d855bcf7e6906f5a911e6b74c60481 Mon Sep 17 00:00:00 2001 From: Seth Samuel Date: Mon, 25 Nov 2024 14:21:00 -0500 Subject: [PATCH 08/11] Submit database_hostname with database_instance (#18969) * database_hostname * Lint * Add database_hostname to tags * _database_hostname * Tests * Changelog * MySQL tests * Tests * Lint * Fix * Fix * Fix * Mysql * Lint * Fix * Python * Test * Flaky * Test * Lint * Revert * Stub * WIP * Fix * Lint --- mysql/changelog.d/18969.added | 1 + mysql/datadog_checks/mysql/mysql.py | 11 ++++++ mysql/tests/tags.py | 19 ++++++++-- mysql/tests/test_metadata.py | 1 + mysql/tests/test_mysql.py | 16 ++++---- mysql/tests/test_query_activity.py | 2 + mysql/tests/test_statements.py | 2 + mysql/tests/test_unit.py | 38 +++++++++++++++++-- postgres/changelog.d/18969.added | 1 + postgres/datadog_checks/postgres/postgres.py | 11 ++++++ postgres/tests/common.py | 2 +- postgres/tests/test_e2e.py | 3 ++ postgres/tests/test_pg_integration.py | 7 +--- postgres/tests/test_unit.py | 2 + sqlserver/changelog.d/18969.added | 1 + .../datadog_checks/sqlserver/sqlserver.py | 12 ++++++ 16 files changed, 107 insertions(+), 22 deletions(-) create mode 100644 mysql/changelog.d/18969.added create mode 100644 postgres/changelog.d/18969.added create mode 100644 sqlserver/changelog.d/18969.added diff --git a/mysql/changelog.d/18969.added b/mysql/changelog.d/18969.added new file mode 100644 index 0000000000000..dfc29ca0f7645 --- /dev/null +++ b/mysql/changelog.d/18969.added @@ -0,0 +1 @@ +Submit database_hostname with database instance and metrics for MySQL, Postgres, and SQLServer diff --git a/mysql/datadog_checks/mysql/mysql.py b/mysql/datadog_checks/mysql/mysql.py index 69e40133a0a09..23f571a09368a 100644 --- a/mysql/datadog_checks/mysql/mysql.py +++ b/mysql/datadog_checks/mysql/mysql.py @@ -109,6 +109,7 @@ def __init__(self, name, init_config, instances): self.is_mariadb = None self._resolved_hostname = None self._agent_hostname = None + self._database_hostname = None self._is_aurora = None self._config = MySQLConfig(self.instance, init_config) self.tags = self._config.tags @@ -170,7 +171,16 @@ def agent_hostname(self): self._agent_hostname = datadog_agent.get_hostname() return self._agent_hostname + @property + def database_hostname(self): + # type: () -> str + if self._database_hostname is None: + self._database_hostname = self.resolve_db_host() + return self._database_hostname + def set_resource_tags(self): + self.tags.append("database_hostname:{}".format(self.database_hostname)) + if self.cloud_metadata.get("gcp") is not None: self.tags.append( "dd.internal.resource:gcp_sql_database_instance:{}:{}".format( @@ -1303,6 +1313,7 @@ def _send_database_instance_metadata(self): event = { "host": self.resolved_hostname, "port": self._config.port, + "database_hostname": self.database_hostname, "agent_version": datadog_agent.get_version(), "dbms": "mysql", "kind": "database_instance", diff --git a/mysql/tests/tags.py b/mysql/tests/tags.py index 0543af7c2bbdf..4cd89f39fcc81 100644 --- a/mysql/tests/tags.py +++ b/mysql/tests/tags.py @@ -3,12 +3,16 @@ # Licensed under a 3-clause BSD style license (see LICENSE) from . import common -DATABASE_INSTANCE_RESOURCE_TAG = 'dd.internal.resource:database_instance:{hostname}' + +def database_instance_resource_tags(hostname): + return [f'dd.internal.resource:database_instance:{hostname}', f'database_hostname:{hostname}'] + + METRIC_TAGS = ['tag1:value1', 'tag2:value2'] METRIC_TAGS_WITH_RESOURCE = [ 'tag1:value1', 'tag2:value2', - DATABASE_INSTANCE_RESOURCE_TAG.format(hostname='stubbed.hostname'), + *database_instance_resource_tags('stubbed.hostname'), 'dbms_flavor:{}'.format(common.MYSQL_FLAVOR.lower()), ] SC_TAGS = [ @@ -16,11 +20,18 @@ 'tag1:value1', 'tag2:value2', ] -SC_TAGS_MIN = ['port:' + str(common.PORT), DATABASE_INSTANCE_RESOURCE_TAG.format(hostname='stubbed.hostname')] +SC_TAGS_MIN = [ + 'port:' + str(common.PORT), + *database_instance_resource_tags('stubbed.hostname'), +] SC_TAGS_REPLICA = [ 'port:' + str(common.SLAVE_PORT), 'tag1:value1', 'tag2:value2', 'dd.internal.resource:database_instance:stubbed.hostname', + 'database_hostname:stubbed.hostname', +] +SC_FAILURE_TAGS = [ + 'port:unix_socket', + *database_instance_resource_tags('stubbed.hostname'), ] -SC_FAILURE_TAGS = ['port:unix_socket', DATABASE_INSTANCE_RESOURCE_TAG.format(hostname='stubbed.hostname')] diff --git a/mysql/tests/test_metadata.py b/mysql/tests/test_metadata.py index d49451c026e0c..648fe032a6d36 100644 --- a/mysql/tests/test_metadata.py +++ b/mysql/tests/test_metadata.py @@ -676,6 +676,7 @@ def test_collect_schemas(aggregator, dd_run_check, dbm_instance): assert schema_event.get("dbms_version") is not None assert (schema_event.get("flavor") == "MariaDB") or (schema_event.get("flavor") == "MySQL") assert sorted(schema_event["tags"]) == [ + 'database_hostname:stubbed.hostname', 'dbms_flavor:{}'.format(common.MYSQL_FLAVOR.lower()), 'dd.internal.resource:database_instance:stubbed.hostname', 'port:13306', diff --git a/mysql/tests/test_mysql.py b/mysql/tests/test_mysql.py index 4073428187122..f8214ee777781 100644 --- a/mysql/tests/test_mysql.py +++ b/mysql/tests/test_mysql.py @@ -101,7 +101,7 @@ def test_complex_config(aggregator, dd_run_check, instance_complex): _assert_complex_config( aggregator, - tags.SC_TAGS + [tags.DATABASE_INSTANCE_RESOURCE_TAG.format(hostname='stubbed.hostname')], + tags.SC_TAGS + tags.database_instance_resource_tags('stubbed.hostname'), tags.METRIC_TAGS_WITH_RESOURCE, ) aggregator.assert_metrics_using_metadata( @@ -116,8 +116,8 @@ def test_e2e(dd_agent_check, dd_default_hostname, instance_complex): aggregator = dd_agent_check(instance_complex) _assert_complex_config( aggregator, - tags.SC_TAGS + [tags.DATABASE_INSTANCE_RESOURCE_TAG.format(hostname=dd_default_hostname)], - tags.METRIC_TAGS + ['dbms_flavor:{}'.format(MYSQL_FLAVOR.lower())], + tags.SC_TAGS + tags.database_instance_resource_tags(dd_default_hostname), + tags.METRIC_TAGS + [f'database_hostname:{dd_default_hostname}', 'dbms_flavor:{}'.format(MYSQL_FLAVOR.lower())], hostname=dd_default_hostname, e2e=True, ) @@ -414,12 +414,10 @@ def test_correct_hostname(dbm_enabled, reported_hostname, expected_hostname, agg with mock.patch('datadog_checks.mysql.MySql.resolve_db_host', return_value='resolved.hostname') as resolve_db_host: mysql_check = MySql(common.CHECK_NAME, {}, [instance_basic]) dd_run_check(mysql_check) - if reported_hostname: - assert resolve_db_host.called is False, 'Expected resolve_db_host.called to be False' - else: - assert resolve_db_host.called is True + assert resolve_db_host.called is True expected_tags = [ + 'database_hostname:{}'.format(mysql_check.database_hostname), 'server:{}'.format(HOST), 'port:{}'.format(PORT), 'dd.internal.resource:database_instance:{}'.format(expected_hostname), @@ -710,7 +708,8 @@ def test_set_resources(aggregator, dd_run_check, instance_basic, cloud_metadata, for m in metric_names: aggregator.assert_metric_has_tag("mysql.net.connections", m) aggregator.assert_metric_has_tag( - "mysql.net.connections", tags.DATABASE_INSTANCE_RESOURCE_TAG.format(hostname=mysql_check.resolved_hostname) + "mysql.net.connections", + f'dd.internal.resource:database_instance:{mysql_check.resolved_hostname}', ) @@ -793,6 +792,7 @@ def test_propagate_agent_tags( expected_tags = ( instance_basic.get('tags', []) + [ + 'database_hostname:stubbed.hostname', 'server:{}'.format(HOST), 'port:{}'.format(PORT), 'dd.internal.resource:database_instance:forced_hostname', diff --git a/mysql/tests/test_query_activity.py b/mysql/tests/test_query_activity.py index 5189f4b23be6e..6571e60c6d820 100644 --- a/mysql/tests/test_query_activity.py +++ b/mysql/tests/test_query_activity.py @@ -113,6 +113,7 @@ def _run_blocking(conn): assert activity['ddsource'] == 'mysql' assert activity['ddagentversion'], "missing agent version" assert set(activity['ddtags']) == { + 'database_hostname:stubbed.hostname', 'tag1:value1', 'tag2:value2', 'port:13306', @@ -525,6 +526,7 @@ def test_events_wait_current_disabled_no_warning_azure_flexible_server( # directly to metrics-intake, so they should also be properly tagged with a resource def _expected_dbm_job_err_tags(dbm_instance): return dbm_instance['tags'] + [ + 'database_hostname:stubbed.hostname', 'job:query-activity', 'port:{}'.format(PORT), 'dd.internal.resource:database_instance:stubbed.hostname', diff --git a/mysql/tests/test_statements.py b/mysql/tests/test_statements.py index 0f667e164c2af..8269073ea517a 100644 --- a/mysql/tests/test_statements.py +++ b/mysql/tests/test_statements.py @@ -854,6 +854,7 @@ def test_async_job_cancel(aggregator, dd_run_check, dbm_instance): def _expected_dbm_instance_tags(dbm_instance): return dbm_instance.get('tags', []) + [ + 'database_hostname:{}'.format('stubbed.hostname'), 'server:{}'.format(common.HOST), 'port:{}'.format(common.PORT), 'dbms_flavor:{}'.format(MYSQL_FLAVOR.lower()), @@ -864,6 +865,7 @@ def _expected_dbm_instance_tags(dbm_instance): # directly to metrics-intake, so they should also be properly tagged with a resource def _expected_dbm_job_err_tags(dbm_instance): return dbm_instance['tags'] + [ + 'database_hostname:{}'.format('stubbed.hostname'), 'port:{}'.format(common.PORT), 'server:{}'.format(common.HOST), 'dd.internal.resource:database_instance:stubbed.hostname', diff --git a/mysql/tests/test_unit.py b/mysql/tests/test_unit.py index 94ae3912e4197..ac84bbf83d4fb 100644 --- a/mysql/tests/test_unit.py +++ b/mysql/tests/test_unit.py @@ -298,14 +298,44 @@ def cursor(self): @pytest.mark.parametrize( 'disable_generic_tags, hostname, expected_tags', [ - (True, None, {'port:unix_socket', 'dd.internal.resource:database_instance:stubbed.hostname'}), + ( + True, + None, + { + 'port:unix_socket', + 'database_hostname:stubbed.hostname', + 'dd.internal.resource:database_instance:stubbed.hostname', + }, + ), ( False, None, - {'port:unix_socket', 'server:localhost', 'dd.internal.resource:database_instance:stubbed.hostname'}, + { + 'port:unix_socket', + 'server:localhost', + 'database_hostname:stubbed.hostname', + 'dd.internal.resource:database_instance:stubbed.hostname', + }, + ), + ( + True, + 'foo', + { + 'port:unix_socket', + 'database_hostname:stubbed.hostname', + 'dd.internal.resource:database_instance:stubbed.hostname', + }, + ), + ( + False, + 'foo', + { + 'port:unix_socket', + 'server:foo', + 'database_hostname:stubbed.hostname', + 'dd.internal.resource:database_instance:stubbed.hostname', + }, ), - (True, 'foo', {'port:unix_socket', 'dd.internal.resource:database_instance:stubbed.hostname'}), - (False, 'foo', {'port:unix_socket', 'server:foo', 'dd.internal.resource:database_instance:stubbed.hostname'}), ], ) def test_service_check(disable_generic_tags, expected_tags, hostname): diff --git a/postgres/changelog.d/18969.added b/postgres/changelog.d/18969.added new file mode 100644 index 0000000000000..dfc29ca0f7645 --- /dev/null +++ b/postgres/changelog.d/18969.added @@ -0,0 +1 @@ +Submit database_hostname with database instance and metrics for MySQL, Postgres, and SQLServer diff --git a/postgres/datadog_checks/postgres/postgres.py b/postgres/datadog_checks/postgres/postgres.py index 28f6e32a73197..3f20801a9a399 100644 --- a/postgres/datadog_checks/postgres/postgres.py +++ b/postgres/datadog_checks/postgres/postgres.py @@ -97,6 +97,7 @@ def __init__(self, name, init_config, instances): super(PostgreSql, self).__init__(name, init_config, instances) self._resolved_hostname = None self._agent_hostname = None + self._database_hostname = None self._db = None self.version = None self.raw_version = None @@ -168,6 +169,8 @@ def _build_autodiscovery(self): return discovery def set_resource_tags(self): + self.tags.append("database_hostname:{}".format(self.database_hostname)) + if self.cloud_metadata.get("gcp") is not None: self.tags.append( "dd.internal.resource:gcp_sql_database_instance:{}:{}".format( @@ -476,6 +479,13 @@ def agent_hostname(self): self._agent_hostname = datadog_agent.get_hostname() return self._agent_hostname + @property + def database_hostname(self): + # type: () -> str + if self._database_hostname is None: + self._database_hostname = self.resolve_db_host() + return self._database_hostname + def resolve_db_host(self): return agent_host_resolver(self._config.host) @@ -912,6 +922,7 @@ def _send_database_instance_metadata(self): event = { "host": self.resolved_hostname, "port": self._config.port, + "database_hostname": self.database_hostname, "agent_version": datadog_agent.get_version(), "dbms": "postgres", "kind": "database_instance", diff --git a/postgres/tests/common.py b/postgres/tests/common.py index f051d673bacc3..df966caf3201a 100644 --- a/postgres/tests/common.py +++ b/postgres/tests/common.py @@ -151,7 +151,7 @@ def _get_expected_tags( role='master', **kwargs, ): - base_tags = pg_instance['tags'] + [f'port:{pg_instance["port"]}'] + base_tags = pg_instance['tags'] + [f'port:{pg_instance["port"]}'] + [f'database_hostname:{check.database_hostname}'] if role: base_tags.append(f'replication_role:{role}') if with_db: diff --git a/postgres/tests/test_e2e.py b/postgres/tests/test_e2e.py index 461f020e80c98..3a0ae87e7b798 100644 --- a/postgres/tests/test_e2e.py +++ b/postgres/tests/test_e2e.py @@ -2,6 +2,8 @@ # All rights reserved # Licensed under Simplified BSD License (see LICENSE) +import socket + import pytest from .common import _get_expected_tags, check_bgw_metrics, check_common_metrics @@ -23,6 +25,7 @@ def test_e2e(check, dd_agent_check, pg_instance): cur.execute("SHOW cluster_name;") check.cluster_name = cur.fetchone()[0] + check._database_hostname = socket.gethostname().lower() expected_tags = _get_expected_tags(check, pg_instance, with_host=False) check_bgw_metrics(aggregator, expected_tags) check_common_metrics(aggregator, expected_tags=expected_tags, count=None) diff --git a/postgres/tests/test_pg_integration.py b/postgres/tests/test_pg_integration.py index 53fad5c8d29c9..b5c27a830530f 100644 --- a/postgres/tests/test_pg_integration.py +++ b/postgres/tests/test_pg_integration.py @@ -463,7 +463,7 @@ def test_activity_vacuum_excluded(aggregator, integration_check, pg_instance): thread.join() -@pytest.mark.flaky(max_runs=5) +@pytest.mark.flaky(max_runs=10) def test_backend_transaction_age(aggregator, integration_check, pg_instance): pg_instance['collect_activity_metrics'] = True check = integration_check(pg_instance) @@ -731,10 +731,7 @@ def test_correct_hostname(dbm_enabled, reported_hostname, expected_hostname, agg ) as resolve_db_host: check = PostgreSql('test_instance', {}, [pg_instance]) check.run() - if reported_hostname: - assert resolve_db_host.called is False, 'Expected resolve_db_host.called to be False' - else: - assert resolve_db_host.called is True + assert resolve_db_host.called is True expected_tags_no_db = _get_expected_tags(check, pg_instance, server=HOST) expected_tags_with_db = expected_tags_no_db + ['db:datadog_test'] diff --git a/postgres/tests/test_unit.py b/postgres/tests/test_unit.py index 1fa3164fa1f22..79ea811764ca7 100644 --- a/postgres/tests/test_unit.py +++ b/postgres/tests/test_unit.py @@ -142,6 +142,7 @@ def test_query_timeout_connection_string(aggregator, integration_check, pg_insta 'port:5432', 'foo:bar', 'dd.internal.resource:database_instance:stubbed.hostname', + 'database_hostname:stubbed.hostname', }, ), ( @@ -152,6 +153,7 @@ def test_query_timeout_connection_string(aggregator, integration_check, pg_insta 'port:5432', 'server:localhost', 'dd.internal.resource:database_instance:stubbed.hostname', + 'database_hostname:stubbed.hostname', }, ), ], diff --git a/sqlserver/changelog.d/18969.added b/sqlserver/changelog.d/18969.added new file mode 100644 index 0000000000000..dfc29ca0f7645 --- /dev/null +++ b/sqlserver/changelog.d/18969.added @@ -0,0 +1 @@ +Submit database_hostname with database instance and metrics for MySQL, Postgres, and SQLServer diff --git a/sqlserver/datadog_checks/sqlserver/sqlserver.py b/sqlserver/datadog_checks/sqlserver/sqlserver.py index c9ba81885363d..6016f5fa6f95f 100644 --- a/sqlserver/datadog_checks/sqlserver/sqlserver.py +++ b/sqlserver/datadog_checks/sqlserver/sqlserver.py @@ -116,6 +116,7 @@ def __init__(self, name, init_config, instances): self._resolved_hostname = None self._agent_hostname = None + self._database_hostname = None self.connection = None self.failed_connections = {} self.instance_metrics = [] @@ -202,6 +203,8 @@ def set_resolved_hostname_metadata(self): self.set_metadata("resolved_hostname", self.resolved_hostname) def set_resource_tags(self): + self.tags.append("database_hostname:{}".format(self.database_hostname)) + if self._config.cloud_metadata.get("gcp") is not None: self.tags.append( "dd.internal.resource:gcp_sql_database_instance:{}:{}".format( @@ -284,6 +287,14 @@ def set_resolved_hostname(self): def resolved_hostname(self): return self._resolved_hostname + @property + def database_hostname(self): + # type: () -> str + if self._database_hostname is None: + host, _ = split_sqlserver_host_port(self.instance.get("host")) + self._database_hostname = resolve_db_host(host) + return self._database_hostname + def load_static_information(self): engine_edition_reloaded = False expected_keys = {STATIC_INFO_VERSION, STATIC_INFO_MAJOR_VERSION, STATIC_INFO_ENGINE_EDITION, STATIC_INFO_RDS} @@ -959,6 +970,7 @@ def _send_database_instance_metadata(self): if self.resolved_hostname not in self._database_instance_emitted: event = { "host": self.resolved_hostname, + "database_hostname": self.database_hostname, "agent_version": datadog_agent.get_version(), "dbms": "sqlserver", "kind": "database_instance", From 2b397fa6bd95e3aaedec950da174dd6434e65b85 Mon Sep 17 00:00:00 2001 From: Zhengda Lu Date: Mon, 25 Nov 2024 16:46:03 -0500 Subject: [PATCH 09/11] [mongo] Resolve deprecated collStats command in oplog size collection (#19133) * deprecate collStats in oplog size collection * fix lint * fix replication oplog size * add changelog * typos --- mongo/changelog.d/19133.fixed | 1 + mongo/datadog_checks/mongo/api.py | 35 ++- .../mongo/collectors/coll_stats.py | 20 +- .../mongo/collectors/replication_info.py | 24 ++- mongo/tests/fixtures/$collStats-oplog.rs | 201 ++++++++++++++++++ 5 files changed, 253 insertions(+), 28 deletions(-) create mode 100644 mongo/changelog.d/19133.fixed create mode 100644 mongo/tests/fixtures/$collStats-oplog.rs diff --git a/mongo/changelog.d/19133.fixed b/mongo/changelog.d/19133.fixed new file mode 100644 index 0000000000000..76ffde6492d4d --- /dev/null +++ b/mongo/changelog.d/19133.fixed @@ -0,0 +1 @@ +Resolved deprecation warning for `collStats` by using `$collStats` aggregation pipeline to collect oplog size in MongoDB 6.2+. diff --git a/mongo/datadog_checks/mongo/api.py b/mongo/datadog_checks/mongo/api.py index f302c925f4f4c..45bdd3d280d73 100644 --- a/mongo/datadog_checks/mongo/api.py +++ b/mongo/datadog_checks/mongo/api.py @@ -67,6 +67,9 @@ def __init__(self, config, log, replicaset: str = None): self._cli = MongoClient(**options) self.__hostname = None + # Check if the server supports the $collStats aggregation pipeline stage. + self.coll_stats_pipeline_supported = True + def __getitem__(self, item): return self._cli[item] @@ -95,21 +98,39 @@ def current_op(self, session=None): # The $currentOp stage returns a cursor over a stream of documents, each of which reports a single operation. return self["admin"].aggregate([{'$currentOp': {'allUsers': True}}], session=session) - def coll_stats(self, db_name, coll_name, session=None): + def get_collection_stats(self, db_name, coll_name, stats=None, session=None): + if not self.coll_stats_pipeline_supported: + return [self.coll_stats_compatible(db_name, coll_name, session)] + try: + return self.coll_stats(db_name, coll_name, stats, session) + except OperationFailure as e: + if e.code == 13: + # Unauthorized to run $collStats, do not try use the compatible mode, raise the exception + raise e + # Failed to get collection stats using $collStats aggregation + self._log.debug( + "Failed to collect stats for collection %s with $collStats, fallback to collStats command", + coll_name, + e.details, + ) + self.coll_stats_pipeline_supported = False + return [self.coll_stats_compatible(db_name, coll_name, session)] + + def coll_stats(self, db_name, coll_name, stats=None, session=None): + if not stats: + stats = {"latencyStats", "storageStats", "queryExecStats"} + stats = {stat: {} for stat in stats} + return self[db_name][coll_name].aggregate( [ { - "$collStats": { - "latencyStats": {}, - "storageStats": {}, - "queryExecStats": {}, - } + "$collStats": stats, }, ], session=session, ) - def coll_stats_compatable(self, db_name, coll_name, session=None): + def coll_stats_compatible(self, db_name, coll_name, session=None): # collStats is deprecated in MongoDB 6.2. Use the $collStats aggregation stage instead. return self[db_name].command({'collStats': coll_name}, session=session) diff --git a/mongo/datadog_checks/mongo/collectors/coll_stats.py b/mongo/datadog_checks/mongo/collectors/coll_stats.py index 9deaf36084df8..d0f0c971de9ce 100644 --- a/mongo/datadog_checks/mongo/collectors/coll_stats.py +++ b/mongo/datadog_checks/mongo/collectors/coll_stats.py @@ -19,7 +19,6 @@ def __init__(self, check, db_name, tags, coll_names=None): self.coll_names = coll_names self.db_name = db_name self.max_collections_per_database = check._config.database_autodiscovery_config['max_collections_per_database'] - self.coll_stats_pipeline_supported = True self._collection_interval = check._config.metrics_collection_interval['collection'] self._collector_key = (self.__class__.__name__, db_name) # db_name is part of collector key @@ -40,22 +39,7 @@ def __calculate_oplatency_avg(self, latency_stats): return latency_stats def _get_collection_stats(self, api, coll_name): - if not self.coll_stats_pipeline_supported: - return [api.coll_stats_compatable(self.db_name, coll_name)] - try: - return api.coll_stats(self.db_name, coll_name) - except OperationFailure as e: - if e.code == 13: - # Unauthorized to run $collStats, do not try use the compatible mode, raise the exception - raise e - # Failed to get collection stats using $collStats aggregation - self.log.debug( - "Failed not collect stats for collection %s with $collStats, fallback to collStats command", - coll_name, - e.details, - ) - self.coll_stats_pipeline_supported = False - return [api.coll_stats_compatable(self.db_name, coll_name)] + return api.get_collection_stats(self.db_name, coll_name) @collection_interval_checker def collect(self, api): @@ -83,7 +67,7 @@ def collect(self, api): # If the collection is sharded, add the shard tag additional_tags.append("shard:%s" % coll_stats['shard']) # Submit the metrics - if self.coll_stats_pipeline_supported: + if api.coll_stats_pipeline_supported: storage_stats = coll_stats.get('storageStats', {}) latency_stats = coll_stats.get('latencyStats', {}) query_stats = coll_stats.get('queryExecStats', {}) diff --git a/mongo/datadog_checks/mongo/collectors/replication_info.py b/mongo/datadog_checks/mongo/collectors/replication_info.py index 69b86043c39ea..db5fbdc8da23d 100644 --- a/mongo/datadog_checks/mongo/collectors/replication_info.py +++ b/mongo/datadog_checks/mongo/collectors/replication_info.py @@ -25,6 +25,24 @@ def compatible_with(self, deployment): return True + def _get_oplog_size(self, api, oplog_collection_name): + try: + oplog_storage_stats = api.get_collection_stats("local", oplog_collection_name, stats=["storageStats"])[0] + except pymongo.errors.OperationFailure as e: + self.log.warning( + "Could not collect oplog used size for collection %s: %s", oplog_collection_name, e.details + ) + return + except Exception as e: + self.log.error( + "Unexpected error when fetch oplog used size for collection %s: %s", oplog_collection_name, e + ) + return + + if api.coll_stats_pipeline_supported: + return oplog_storage_stats.get("storageStats", {}).get("size") + return oplog_storage_stats.get('size') + def collect(self, api): # Fetch information analogous to Mongo's db.getReplicationInfo() localdb = api["local"] @@ -46,9 +64,9 @@ def collect(self, api): oplog = localdb[collection_name] - oplog_data['usedSizeMB'] = round_value( - localdb.command("collstats", collection_name)['size'] / 2.0**20, 2 - ) + oplog_data_size = self._get_oplog_size(api, collection_name) + if oplog_data_size is not None: + oplog_data['usedSizeMB'] = round_value(oplog_data_size / 2.0**20, 2) op_asc_cursor = oplog.find({"ts": {"$exists": 1}}).sort("$natural", pymongo.ASCENDING).limit(1) op_dsc_cursor = oplog.find({"ts": {"$exists": 1}}).sort("$natural", pymongo.DESCENDING).limit(1) diff --git a/mongo/tests/fixtures/$collStats-oplog.rs b/mongo/tests/fixtures/$collStats-oplog.rs new file mode 100644 index 0000000000000..0e2b6a429cd63 --- /dev/null +++ b/mongo/tests/fixtures/$collStats-oplog.rs @@ -0,0 +1,201 @@ +[ + { + "ns": "local.oplog.rs", + "host": "7515219d9503:27017", + "localTime": { + "$date": "2024-07-01T20:36:49.358Z" + }, + "storageStats": { + "size": 907806, + "count": 4341, + "avgObjSize": 209, + "storageSize": 196608, + "capped": true, + "max": 10, + "maxSize": 16777216, + "sleepCount": 0, + "sleepMS": 0, + "wiredTiger": { + "metadata": { + "formatVersion": 1, + "oplogKeyExtractionVersion": 1 + }, + "creationString": "access_pattern_hint=none,allocation_size=4KB,app_metadata=(formatVersion=1,oplogKeyExtractionVersion=1),assert=(commit_timestamp=none,durable_timestamp=none,read_timestamp=none),block_allocation=best,block_compressor=snappy,cache_resident=false,checksum=on,colgroups=,collator=,columns=,dictionary=0,encryption=(keyid=,name=),exclusive=false,extractor=,format=btree,huffman_key=,huffman_value=,ignore_in_memory_cache_size=false,immutable=false,internal_item_max=0,internal_key_max=0,internal_key_truncate=true,internal_page_max=4KB,key_format=q,key_gap=10,leaf_item_max=0,leaf_key_max=0,leaf_page_max=32KB,leaf_value_max=64MB,log=(enabled=true),lsm=(auto_throttle=true,bloom=true,bloom_bit_count=16,bloom_config=,bloom_hash_count=8,bloom_oldest=false,chunk_count_limit=0,chunk_max=5GB,chunk_size=10MB,merge_custom=(prefix=,start_generation=0,suffix=),merge_max=15,merge_min=0),memory_page_image_max=0,memory_page_max=10m,os_cache_dirty_max=0,os_cache_max=0,prefix_compression=false,prefix_compression_min=4,source=,split_deepen_min_child=0,split_deepen_per_child=0,split_pct=90,type=file,value_format=u", + "type": "file", + "uri": "statistics:table:collection-8--9025131032214742726", + "LSM": { + "bloom filter false positives": 0, + "bloom filter hits": 0, + "bloom filter misses": 0, + "bloom filter pages evicted from cache": 0, + "bloom filter pages read into cache": 0, + "bloom filters in the LSM tree": 0, + "chunks in the LSM tree": 0, + "highest merge generation in the LSM tree": 0, + "queries that could have benefited from a Bloom filter that did not exist": 0, + "sleep for LSM checkpoint throttle": 0, + "sleep for LSM merge throttle": 0, + "total size of bloom filters": 0 + }, + "block-manager": { + "allocations requiring file extension": 56, + "blocks allocated": 577, + "blocks freed": 146, + "checkpoint size": 151552, + "file allocation unit size": 4096, + "file bytes available for reuse": 28672, + "file magic number": 120897, + "file major version number": 1, + "file size in bytes": 196608, + "minor version number": 0 + }, + "btree": { + "btree checkpoint generation": 143, + "column-store fixed-size leaf pages": 0, + "column-store internal pages": 0, + "column-store variable-size RLE encoded values": 0, + "column-store variable-size deleted values": 0, + "column-store variable-size leaf pages": 0, + "fixed-record size": 0, + "maximum internal page key size": 368, + "maximum internal page size": 4096, + "maximum leaf page key size": 2867, + "maximum leaf page size": 32768, + "maximum leaf page value size": 67108864, + "maximum tree depth": 3, + "number of key/value pairs": 0, + "overflow pages": 0, + "pages rewritten by compaction": 0, + "row-store empty values": 0, + "row-store internal pages": 0, + "row-store leaf pages": 0 + }, + "cache": { + "bytes currently in the cache": 1412447, + "bytes dirty in the cache cumulative": 79714225, + "bytes read into cache": 0, + "bytes written from cache": 14326498, + "checkpoint blocked page eviction": 0, + "data source pages selected for eviction unable to be evicted": 0, + "eviction walk passes of a file": 0, + "eviction walk target pages histogram - 0-9": 0, + "eviction walk target pages histogram - 10-31": 0, + "eviction walk target pages histogram - 128 and higher": 0, + "eviction walk target pages histogram - 32-63": 0, + "eviction walk target pages histogram - 64-128": 0, + "eviction walks abandoned": 0, + "eviction walks gave up because they restarted their walk twice": 0, + "eviction walks gave up because they saw too many pages and found no candidates": 0, + "eviction walks gave up because they saw too many pages and found too few candidates": 0, + "eviction walks reached end of tree": 0, + "eviction walks started from root of tree": 0, + "eviction walks started from saved location in tree": 0, + "hazard pointer blocked page eviction": 0, + "in-memory page passed criteria to be split": 0, + "in-memory page splits": 0, + "internal pages evicted": 0, + "internal pages split during eviction": 0, + "leaf pages split during eviction": 0, + "modified pages evicted": 0, + "overflow pages read into cache": 0, + "page split during eviction deepened the tree": 0, + "page written requiring cache overflow records": 0, + "pages read into cache": 0, + "pages read into cache after truncate": 1, + "pages read into cache after truncate in prepare state": 0, + "pages read into cache requiring cache overflow entries": 0, + "pages requested from the cache": 11348, + "pages seen by eviction walk": 0, + "pages written from cache": 296, + "pages written requiring in-memory restoration": 0, + "tracked dirty bytes in the cache": 1411928, + "unmodified pages evicted": 0 + }, + "cache_walk": { + "Average difference between current eviction generation when the page was last considered": 0, + "Average on-disk page image size seen": 0, + "Average time in cache for pages that have been visited by the eviction server": 0, + "Average time in cache for pages that have not been visited by the eviction server": 0, + "Clean pages currently in cache": 0, + "Current eviction generation": 0, + "Dirty pages currently in cache": 0, + "Entries in the root page": 0, + "Internal pages currently in cache": 0, + "Leaf pages currently in cache": 0, + "Maximum difference between current eviction generation when the page was last considered": 0, + "Maximum page size seen": 0, + "Minimum on-disk page image size seen": 0, + "Number of pages never visited by eviction server": 0, + "On-disk page image sizes smaller than a single allocation unit": 0, + "Pages created in memory and never written": 0, + "Pages currently queued for eviction": 0, + "Pages that could not be queued for eviction": 0, + "Refs skipped during cache traversal": 0, + "Size of the root page": 0, + "Total number of pages currently in cache": 0 + }, + "compression": { + "compressed page maximum internal page size prior to compression": 4096, + "compressed page maximum leaf page size prior to compression ": 131072, + "compressed pages read": 0, + "compressed pages written": 154, + "page written failed to compress": 0, + "page written was too small to compress": 142 + }, + "cursor": { + "bulk loaded cursor insert calls": 0, + "cache cursors reuse count": 2843, + "close calls that result in cache": 0, + "create calls": 62, + "insert calls": 4341, + "insert key and value bytes": 946875, + "modify": 0, + "modify key and value bytes affected": 0, + "modify value bytes modified": 0, + "next calls": 9366, + "open cursor count": 0, + "operation restarted": 1, + "prev calls": 20, + "remove calls": 0, + "remove key bytes removed": 0, + "reserve calls": 0, + "reset calls": 12395, + "search calls": 6969, + "search near calls": 14, + "truncate calls": 0, + "update calls": 0, + "update key and value bytes": 0, + "update value size change": 0 + }, + "reconciliation": { + "dictionary matches": 0, + "fast-path pages deleted": 0, + "internal page key bytes discarded using suffix compression": 1409, + "internal page multi-block writes": 0, + "internal-page overflow keys": 0, + "leaf page key bytes discarded using prefix compression": 0, + "leaf page multi-block writes": 120, + "leaf-page overflow keys": 0, + "maximum blocks required for a page": 1, + "overflow values written": 0, + "page checksum matches": 431, + "page reconciliation calls": 282, + "page reconciliation calls for eviction": 0, + "pages deleted": 0 + }, + "session": { + "object compaction": 0 + }, + "transaction": { + "update conflicts": 0 + } + }, + "nindexes": 0, + "indexDetails": {}, + "indexBuilds": [], + "totalIndexSize": 0, + "indexSizes": {}, + "scaleFactor": 1 + } + } +] \ No newline at end of file From d1b5391cacd8cba173a50be3b3a8d73d317465af Mon Sep 17 00:00:00 2001 From: Kyle Neale Date: Mon, 25 Nov 2024 18:22:32 -0500 Subject: [PATCH 10/11] Fix integration CHANGELOG.md (#19131) * Fix all integration CHANGELOG.MD * squash added changelogs * small fixes * validate changelogs * Finalize --- active_directory/CHANGELOG.md | 8 ++++---- activemq/CHANGELOG.md | 8 ++++---- activemq_xml/CHANGELOG.md | 8 ++++---- aerospike/CHANGELOG.md | 8 ++++---- airflow/CHANGELOG.md | 8 ++++---- amazon_msk/CHANGELOG.md | 8 ++++---- ambari/CHANGELOG.md | 8 ++++---- apache/CHANGELOG.md | 8 ++++---- arangodb/CHANGELOG.md | 8 ++++---- argo_rollouts/CHANGELOG.md | 8 ++++---- argo_workflows/CHANGELOG.md | 8 ++++---- argocd/CHANGELOG.md | 8 ++++---- aspdotnet/CHANGELOG.md | 8 ++++---- avi_vantage/CHANGELOG.md | 8 ++++---- aws_neuron/CHANGELOG.md | 4 ++++ azure_iot_edge/CHANGELOG.md | 8 ++++---- boundary/CHANGELOG.md | 8 ++++---- btrfs/CHANGELOG.md | 5 +---- cacti/CHANGELOG.md | 8 ++++---- calico/CHANGELOG.md | 8 ++++---- cassandra/CHANGELOG.md | 8 ++++---- cassandra_nodetool/CHANGELOG.md | 8 ++++---- ceph/CHANGELOG.md | 8 ++++---- cert_manager/CHANGELOG.md | 8 ++++---- cilium/CHANGELOG.md | 8 ++++---- cisco_aci/CHANGELOG.md | 8 ++++---- citrix_hypervisor/CHANGELOG.md | 8 ++++---- clickhouse/CHANGELOG.md | 8 ++++---- cloud_foundry_api/CHANGELOG.md | 8 ++++---- cloudera/CHANGELOG.md | 8 ++++---- cockroachdb/CHANGELOG.md | 8 ++++---- confluent_platform/CHANGELOG.md | 8 ++++---- consul/CHANGELOG.md | 8 ++++---- coredns/CHANGELOG.md | 8 ++++---- couch/CHANGELOG.md | 8 ++++---- couchbase/CHANGELOG.md | 8 ++++---- crio/CHANGELOG.md | 8 ++++---- datadog_checks_base/CHANGELOG.md | 10 +++++----- datadog_checks_dependency_provider/CHANGELOG.md | 8 ++++---- datadog_checks_downloader/CHANGELOG.md | 8 ++++---- datadog_cluster_agent/CHANGELOG.md | 8 ++++---- dcgm/CHANGELOG.md | 7 ++++--- directory/CHANGELOG.md | 8 ++++---- disk/CHANGELOG.md | 5 +---- dns_check/CHANGELOG.md | 8 ++++---- dotnetclr/CHANGELOG.md | 8 ++++---- druid/CHANGELOG.md | 8 ++++---- ecs_fargate/CHANGELOG.md | 8 ++++---- eks_fargate/CHANGELOG.md | 8 ++++---- elastic/CHANGELOG.md | 8 ++++---- envoy/CHANGELOG.md | 8 ++++---- esxi/CHANGELOG.md | 8 ++++---- etcd/CHANGELOG.md | 8 ++++---- exchange_server/CHANGELOG.md | 8 ++++---- external_dns/CHANGELOG.md | 8 ++++---- flink/CHANGELOG.md | 8 ++++---- fluentd/CHANGELOG.md | 8 ++++---- fluxcd/CHANGELOG.md | 8 ++++---- fly_io/CHANGELOG.md | 4 ++++ foundationdb/CHANGELOG.md | 8 ++++---- gearmand/CHANGELOG.md | 8 ++++---- gitlab/CHANGELOG.md | 8 ++++---- gitlab_runner/CHANGELOG.md | 8 ++++---- glusterfs/CHANGELOG.md | 8 ++++---- go_expvar/CHANGELOG.md | 8 ++++---- gunicorn/CHANGELOG.md | 5 +---- haproxy/CHANGELOG.md | 8 ++++---- harbor/CHANGELOG.md | 8 ++++---- hazelcast/CHANGELOG.md | 8 ++++---- hdfs_datanode/CHANGELOG.md | 8 ++++---- hdfs_namenode/CHANGELOG.md | 8 ++++---- hive/CHANGELOG.md | 8 ++++---- hivemq/CHANGELOG.md | 8 ++++---- http_check/CHANGELOG.md | 8 ++++---- hudi/CHANGELOG.md | 8 ++++---- hyperv/CHANGELOG.md | 8 ++++---- ibm_ace/CHANGELOG.md | 8 ++++---- ibm_db2/CHANGELOG.md | 8 ++++---- ibm_i/CHANGELOG.md | 8 ++++---- ibm_mq/CHANGELOG.md | 5 +---- ibm_was/CHANGELOG.md | 5 +---- ignite/CHANGELOG.md | 8 ++++---- iis/CHANGELOG.md | 8 ++++---- impala/CHANGELOG.md | 8 ++++---- istio/CHANGELOG.md | 8 ++++---- jboss_wildfly/CHANGELOG.md | 8 ++++---- journald/CHANGELOG.md | 8 ++++---- kafka/CHANGELOG.md | 8 ++++---- kafka_consumer/CHANGELOG.md | 8 ++++---- karpenter/CHANGELOG.md | 8 ++++---- kong/CHANGELOG.md | 8 ++++---- kube_apiserver_metrics/CHANGELOG.md | 4 ++++ kube_controller_manager/CHANGELOG.md | 8 ++++---- kube_dns/CHANGELOG.md | 8 ++++---- kube_metrics_server/CHANGELOG.md | 8 ++++---- kube_proxy/CHANGELOG.md | 8 ++++---- kube_scheduler/CHANGELOG.md | 8 ++++---- kubelet/CHANGELOG.md | 8 ++++---- kubernetes_cluster_autoscaler/CHANGELOG.md | 8 ++++---- kubernetes_state/CHANGELOG.md | 8 ++++---- kyototycoon/CHANGELOG.md | 8 ++++---- kyverno/CHANGELOG.md | 8 ++++---- lighttpd/CHANGELOG.md | 8 ++++---- linkerd/CHANGELOG.md | 8 ++++---- linux_proc_extras/CHANGELOG.md | 8 ++++---- mapr/CHANGELOG.md | 8 ++++---- mapreduce/CHANGELOG.md | 8 ++++---- marathon/CHANGELOG.md | 8 ++++---- marklogic/CHANGELOG.md | 8 ++++---- mcache/CHANGELOG.md | 8 ++++---- mesos_master/CHANGELOG.md | 8 ++++---- mesos_slave/CHANGELOG.md | 8 ++++---- mongo/CHANGELOG.md | 5 +---- mysql/CHANGELOG.md | 8 ++++---- nagios/CHANGELOG.md | 8 ++++---- network/CHANGELOG.md | 5 +---- nfsstat/CHANGELOG.md | 8 ++++---- nginx/CHANGELOG.md | 8 ++++---- nginx_ingress_controller/CHANGELOG.md | 4 ++++ nvidia_triton/CHANGELOG.md | 8 ++++---- openldap/CHANGELOG.md | 8 ++++---- openmetrics/CHANGELOG.md | 8 ++++---- openstack/CHANGELOG.md | 8 ++++---- openstack_controller/CHANGELOG.md | 8 ++++---- oracle/CHANGELOG.md | 4 ++++ ossec_security/CHANGELOG.md | 4 ++++ pan_firewall/CHANGELOG.md | 8 ++++---- pdh_check/CHANGELOG.md | 8 ++++---- pgbouncer/CHANGELOG.md | 8 ++++---- php_fpm/CHANGELOG.md | 8 ++++---- ping_federate/CHANGELOG.md | 4 ++++ postfix/CHANGELOG.md | 8 ++++---- postgres/CHANGELOG.md | 8 ++++---- powerdns_recursor/CHANGELOG.md | 8 ++++---- presto/CHANGELOG.md | 8 ++++---- process/CHANGELOG.md | 5 +---- prometheus/CHANGELOG.md | 8 ++++---- proxysql/CHANGELOG.md | 8 ++++---- pulsar/CHANGELOG.md | 8 ++++---- rabbitmq/CHANGELOG.md | 8 ++++---- ray/CHANGELOG.md | 8 ++++---- redisdb/CHANGELOG.md | 8 ++++---- rethinkdb/CHANGELOG.md | 5 +---- riak/CHANGELOG.md | 8 ++++---- riakcs/CHANGELOG.md | 8 ++++---- sap_hana/CHANGELOG.md | 8 ++++---- scylla/CHANGELOG.md | 8 ++++---- sidekiq/CHANGELOG.md | 8 ++++---- silk/CHANGELOG.md | 8 ++++---- singlestore/CHANGELOG.md | 8 ++++---- snmp/CHANGELOG.md | 8 ++++---- snowflake/CHANGELOG.md | 8 ++++---- solr/CHANGELOG.md | 8 ++++---- sonarqube/CHANGELOG.md | 8 ++++---- spark/CHANGELOG.md | 8 ++++---- sqlserver/CHANGELOG.md | 1 + squid/CHANGELOG.md | 8 ++++---- ssh_check/CHANGELOG.md | 8 ++++---- statsd/CHANGELOG.md | 8 ++++---- strimzi/CHANGELOG.md | 8 ++++---- supervisord/CHANGELOG.md | 8 ++++---- suricata/CHANGELOG.md | 4 ++++ system_core/CHANGELOG.md | 5 +---- system_swap/CHANGELOG.md | 5 +---- tcp_check/CHANGELOG.md | 8 ++++---- teamcity/CHANGELOG.md | 8 ++++---- tekton/CHANGELOG.md | 8 ++++---- teleport/CHANGELOG.md | 8 ++++---- temporal/CHANGELOG.md | 8 ++++---- tenable/CHANGELOG.md | 8 ++++---- teradata/CHANGELOG.md | 8 ++++---- tibco_ems/CHANGELOG.md | 4 ++++ tls/CHANGELOG.md | 8 ++++---- tomcat/CHANGELOG.md | 8 ++++---- torchserve/CHANGELOG.md | 8 ++++---- traefik_mesh/CHANGELOG.md | 8 ++++---- traffic_server/CHANGELOG.md | 8 ++++---- twemproxy/CHANGELOG.md | 8 ++++---- twistlock/CHANGELOG.md | 8 ++++---- varnish/CHANGELOG.md | 8 ++++---- vault/CHANGELOG.md | 8 ++++---- vertica/CHANGELOG.md | 8 ++++---- vllm/CHANGELOG.md | 8 ++++---- voltdb/CHANGELOG.md | 8 ++++---- vsphere/CHANGELOG.md | 8 ++++---- weaviate/CHANGELOG.md | 8 ++++---- weblogic/CHANGELOG.md | 8 ++++---- win32_event_log/CHANGELOG.md | 8 ++++---- windows_performance_counters/CHANGELOG.md | 8 ++++---- windows_service/CHANGELOG.md | 8 ++++---- wmi_check/CHANGELOG.md | 8 ++++---- yarn/CHANGELOG.md | 8 ++++---- zk/CHANGELOG.md | 8 ++++---- 193 files changed, 737 insertions(+), 732 deletions(-) diff --git a/active_directory/CHANGELOG.md b/active_directory/CHANGELOG.md index 13c254d31edcf..cb0e301a84ccf 100644 --- a/active_directory/CHANGELOG.md +++ b/active_directory/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 2.1.1 / 2024-07-05 / Agent 7.55.0 ***Fixed***: diff --git a/activemq/CHANGELOG.md b/activemq/CHANGELOG.md index 24555f9c7146b..ff16f98e3a7da 100644 --- a/activemq/CHANGELOG.md +++ b/activemq/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 3.1.0 / 2024-01-05 / Agent 7.51.0 ***Added***: diff --git a/activemq_xml/CHANGELOG.md b/activemq_xml/CHANGELOG.md index 1dfc95909e296..58b5f04a59778 100644 --- a/activemq_xml/CHANGELOG.md +++ b/activemq_xml/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 3.2.1 / 2024-05-31 / Agent 7.55.0 ***Fixed***: diff --git a/aerospike/CHANGELOG.md b/aerospike/CHANGELOG.md index 46df5dd094c6c..ceb3be456ee3c 100644 --- a/aerospike/CHANGELOG.md +++ b/aerospike/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 2.2.2 / 2024-07-05 / Agent 7.55.0 ***Fixed***: diff --git a/airflow/CHANGELOG.md b/airflow/CHANGELOG.md index a7b72659850db..9dc1367093190 100644 --- a/airflow/CHANGELOG.md +++ b/airflow/CHANGELOG.md @@ -4,10 +4,6 @@ ## 6.1.0 / 2024-10-04 / Agent 7.59.0 -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -18,6 +14,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 5.0.1 / 2024-05-31 / Agent 7.55.0 ***Fixed***: diff --git a/amazon_msk/CHANGELOG.md b/amazon_msk/CHANGELOG.md index acf11d9f7d4db..262bdbdd5c747 100644 --- a/amazon_msk/CHANGELOG.md +++ b/amazon_msk/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 4.11.0 / 2024-09-05 ***Added***: diff --git a/ambari/CHANGELOG.md b/ambari/CHANGELOG.md index 93aae52ccbfbb..8a44654aeb176 100644 --- a/ambari/CHANGELOG.md +++ b/ambari/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 4.2.1 / 2024-05-31 / Agent 7.55.0 ***Fixed***: diff --git a/apache/CHANGELOG.md b/apache/CHANGELOG.md index 2b0a2e89bd9ea..6cdc38bdd57dd 100644 --- a/apache/CHANGELOG.md +++ b/apache/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 4.5.1 / 2024-05-31 / Agent 7.55.0 ***Fixed***: diff --git a/arangodb/CHANGELOG.md b/arangodb/CHANGELOG.md index 77cb1eb5b6cdc..42d0305de98ff 100644 --- a/arangodb/CHANGELOG.md +++ b/arangodb/CHANGELOG.md @@ -4,10 +4,6 @@ ## 3.1.0 / 2024-10-04 / Agent 7.59.0 -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -18,6 +14,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 2.2.2 / 2024-07-05 / Agent 7.55.0 ***Fixed***: diff --git a/argo_rollouts/CHANGELOG.md b/argo_rollouts/CHANGELOG.md index 97667d845c968..be61fd665c804 100644 --- a/argo_rollouts/CHANGELOG.md +++ b/argo_rollouts/CHANGELOG.md @@ -4,10 +4,6 @@ ## 2.1.0 / 2024-10-04 / Agent 7.59.0 -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -18,6 +14,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 1.0.2 / 2024-07-05 / Agent 7.55.0 ***Fixed***: diff --git a/argo_workflows/CHANGELOG.md b/argo_workflows/CHANGELOG.md index 3bf6d1556da79..87367097f6daf 100644 --- a/argo_workflows/CHANGELOG.md +++ b/argo_workflows/CHANGELOG.md @@ -4,10 +4,6 @@ ## 2.1.0 / 2024-10-04 / Agent 7.59.0 -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -18,6 +14,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 1.0.2 / 2024-07-05 / Agent 7.55.0 ***Fixed***: diff --git a/argocd/CHANGELOG.md b/argocd/CHANGELOG.md index 1581158313cf8..3cc0337f4903a 100644 --- a/argocd/CHANGELOG.md +++ b/argocd/CHANGELOG.md @@ -4,10 +4,6 @@ ## 3.1.0 / 2024-10-04 / Agent 7.59.0 -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -18,6 +14,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 2.4.3 / 2024-08-09 / Agent 7.57.0 ***Fixed***: diff --git a/aspdotnet/CHANGELOG.md b/aspdotnet/CHANGELOG.md index 788923364964c..01e32c3905aa4 100644 --- a/aspdotnet/CHANGELOG.md +++ b/aspdotnet/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 2.1.1 / 2024-07-05 / Agent 7.55.0 ***Fixed***: diff --git a/avi_vantage/CHANGELOG.md b/avi_vantage/CHANGELOG.md index 2a45ce165fd38..2d07d6515c6a8 100644 --- a/avi_vantage/CHANGELOG.md +++ b/avi_vantage/CHANGELOG.md @@ -4,10 +4,6 @@ ## 5.1.0 / 2024-10-04 / Agent 7.59.0 -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -18,6 +14,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 4.2.2 / 2024-07-05 / Agent 7.55.0 ***Fixed***: diff --git a/aws_neuron/CHANGELOG.md b/aws_neuron/CHANGELOG.md index a0da8741ab583..756a46568676d 100644 --- a/aws_neuron/CHANGELOG.md +++ b/aws_neuron/CHANGELOG.md @@ -14,6 +14,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 1.0.0 / 2024-08-09 / Agent 7.57.0 ***Added***: diff --git a/azure_iot_edge/CHANGELOG.md b/azure_iot_edge/CHANGELOG.md index 8ecdf432f8e8b..5433e26f426f7 100644 --- a/azure_iot_edge/CHANGELOG.md +++ b/azure_iot_edge/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 4.2.1 / 2024-05-31 / Agent 7.55.0 ***Fixed***: diff --git a/boundary/CHANGELOG.md b/boundary/CHANGELOG.md index 4a804adad66d7..deb00eea36b6c 100644 --- a/boundary/CHANGELOG.md +++ b/boundary/CHANGELOG.md @@ -4,10 +4,6 @@ ## 3.1.0 / 2024-10-04 / Agent 7.59.0 -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -18,6 +14,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 2.2.3 / 2024-07-05 / Agent 7.55.0 ***Fixed***: diff --git a/btrfs/CHANGELOG.md b/btrfs/CHANGELOG.md index 93dc7758feb1d..280a378d615db 100644 --- a/btrfs/CHANGELOG.md +++ b/btrfs/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -24,6 +20,7 @@ ***Added***: +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) * Upgrade psutil to 6.0.0 to fix performance issues addressed ([#18688](https://github.com/DataDog/integrations-core/pull/18688)) ## 2.4.0 / 2024-09-05 diff --git a/cacti/CHANGELOG.md b/cacti/CHANGELOG.md index 43d6a0a9ffb4e..b60517eaf2d23 100644 --- a/cacti/CHANGELOG.md +++ b/cacti/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 2.1.1 / 2024-06-11 / Agent 7.54.1 ***Fixed***: diff --git a/calico/CHANGELOG.md b/calico/CHANGELOG.md index e3470955b9d44..6c07cdc75e47d 100644 --- a/calico/CHANGELOG.md +++ b/calico/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 2.2.2 / 2024-07-05 / Agent 7.55.0 ***Fixed***: diff --git a/cassandra/CHANGELOG.md b/cassandra/CHANGELOG.md index 294ae6280917d..8d1683fab8097 100644 --- a/cassandra/CHANGELOG.md +++ b/cassandra/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 1.18.0 / 2024-01-05 / Agent 7.51.0 ***Added***: diff --git a/cassandra_nodetool/CHANGELOG.md b/cassandra_nodetool/CHANGELOG.md index 92d2ee82546c9..7028c3e51edfa 100644 --- a/cassandra_nodetool/CHANGELOG.md +++ b/cassandra_nodetool/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 1.13.0 / 2024-01-05 / Agent 7.51.0 ***Added***: diff --git a/ceph/CHANGELOG.md b/ceph/CHANGELOG.md index ba99397bf55e0..231155b3cdf22 100644 --- a/ceph/CHANGELOG.md +++ b/ceph/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 2.10.0 / 2024-01-05 / Agent 7.51.0 ***Added***: diff --git a/cert_manager/CHANGELOG.md b/cert_manager/CHANGELOG.md index 92e959ebde765..ba99029aa92c5 100644 --- a/cert_manager/CHANGELOG.md +++ b/cert_manager/CHANGELOG.md @@ -4,10 +4,6 @@ ## 5.1.0 / 2024-10-04 / Agent 7.59.0 -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -18,6 +14,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 4.1.2 / 2024-07-05 / Agent 7.55.0 ***Fixed***: diff --git a/cilium/CHANGELOG.md b/cilium/CHANGELOG.md index b35ca231fd005..72bbe96abef97 100644 --- a/cilium/CHANGELOG.md +++ b/cilium/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 3.6.0 / 2024-09-05 ***Added***: diff --git a/cisco_aci/CHANGELOG.md b/cisco_aci/CHANGELOG.md index 609c0c8931b1f..2d3253e73220a 100644 --- a/cisco_aci/CHANGELOG.md +++ b/cisco_aci/CHANGELOG.md @@ -17,10 +17,6 @@ ***Removed***: * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) - -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) * [NDM] [Cisco ACI] Add check metrics ([#18748](https://github.com/DataDog/integrations-core/pull/18748)) ***Fixed***: @@ -37,6 +33,10 @@ * Bump version of cryptography to 43.0.1 to address vulnerability ([#18656](https://github.com/DataDog/integrations-core/pull/18656)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 2.12.0 / 2024-09-06 ***Added***: diff --git a/citrix_hypervisor/CHANGELOG.md b/citrix_hypervisor/CHANGELOG.md index 875d0b36642e3..5a68710d5cd6b 100644 --- a/citrix_hypervisor/CHANGELOG.md +++ b/citrix_hypervisor/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 3.2.1 / 2024-05-31 / Agent 7.55.0 ***Fixed***: diff --git a/clickhouse/CHANGELOG.md b/clickhouse/CHANGELOG.md index c187df280fc98..7db58d203c20d 100644 --- a/clickhouse/CHANGELOG.md +++ b/clickhouse/CHANGELOG.md @@ -7,10 +7,6 @@ ***Removed***: * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) - -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) * Add ability to pass a CA cert to Clickhouse ([#18677](https://github.com/DataDog/integrations-core/pull/18677)) ***Fixed***: @@ -23,6 +19,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 3.7.0 / 2024-09-05 ***Added***: diff --git a/cloud_foundry_api/CHANGELOG.md b/cloud_foundry_api/CHANGELOG.md index 7748191513e53..1ba110ec2b142 100644 --- a/cloud_foundry_api/CHANGELOG.md +++ b/cloud_foundry_api/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 3.3.1 / 2024-05-31 / Agent 7.55.0 ***Fixed***: diff --git a/cloudera/CHANGELOG.md b/cloudera/CHANGELOG.md index bc86862e17b3b..bff7948ba4942 100644 --- a/cloudera/CHANGELOG.md +++ b/cloudera/CHANGELOG.md @@ -10,10 +10,6 @@ ## 3.1.0 / 2024-10-04 / Agent 7.59.0 -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -24,6 +20,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 2.2.0 / 2024-06-12 / Agent 7.56.0 ***Added***: diff --git a/cockroachdb/CHANGELOG.md b/cockroachdb/CHANGELOG.md index e94baaa727500..e8f9b4738bb1c 100644 --- a/cockroachdb/CHANGELOG.md +++ b/cockroachdb/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 3.3.2 / 2024-07-05 / Agent 7.55.0 ***Fixed***: diff --git a/confluent_platform/CHANGELOG.md b/confluent_platform/CHANGELOG.md index 91a1ad55526ab..8a7e8b8537043 100644 --- a/confluent_platform/CHANGELOG.md +++ b/confluent_platform/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 1.10.2 / 2024-05-31 / Agent 7.55.0 ***Fixed***: diff --git a/consul/CHANGELOG.md b/consul/CHANGELOG.md index 7a82f96a15b76..54d58068a9ff5 100644 --- a/consul/CHANGELOG.md +++ b/consul/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 2.6.1 / 2024-05-31 / Agent 7.55.0 ***Fixed***: diff --git a/coredns/CHANGELOG.md b/coredns/CHANGELOG.md index 29bc362b3e00d..d48a80cf7fadb 100644 --- a/coredns/CHANGELOG.md +++ b/coredns/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 3.2.3 / 2024-07-05 / Agent 7.55.0 ***Fixed***: diff --git a/couch/CHANGELOG.md b/couch/CHANGELOG.md index 7dc1bf06c07e6..e874921a86cdc 100644 --- a/couch/CHANGELOG.md +++ b/couch/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 6.2.1 / 2024-05-31 / Agent 7.55.0 ***Fixed***: diff --git a/couchbase/CHANGELOG.md b/couchbase/CHANGELOG.md index fa25c5c48aa4d..ac685227c8925 100644 --- a/couchbase/CHANGELOG.md +++ b/couchbase/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 3.2.1 / 2024-05-31 / Agent 7.55.0 ***Fixed***: diff --git a/crio/CHANGELOG.md b/crio/CHANGELOG.md index 341bc9a7bc3b6..5953f2b4a56fc 100644 --- a/crio/CHANGELOG.md +++ b/crio/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 2.6.1 / 2024-05-31 / Agent 7.55.0 ***Fixed***: diff --git a/datadog_checks_base/CHANGELOG.md b/datadog_checks_base/CHANGELOG.md index cede60bff2a11..e16e506896b63 100644 --- a/datadog_checks_base/CHANGELOG.md +++ b/datadog_checks_base/CHANGELOG.md @@ -8,22 +8,22 @@ * Added Postgres cross-org telemetry metrics. ([#18758](https://github.com/DataDog/integrations-core/pull/18758)) -## 37.0.0 / 2024-09-19 / Agent 7.58.0 +## 37.0.0 / 2024-09-19 ***Removed***: * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ## 36.16.0 / 2024-09-30 / Agent 7.58.0 ***Security***: * Bump version of cryptography to 43.0.1 to address vulnerability ([#18656](https://github.com/DataDog/integrations-core/pull/18656)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) + ## 36.15.0 / 2024-09-05 ***Added***: diff --git a/datadog_checks_dependency_provider/CHANGELOG.md b/datadog_checks_dependency_provider/CHANGELOG.md index e516e0af3578a..aa80aab7abafa 100644 --- a/datadog_checks_dependency_provider/CHANGELOG.md +++ b/datadog_checks_dependency_provider/CHANGELOG.md @@ -8,16 +8,16 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ## 2.0.0 / 2024-10-01 / Agent 7.58.0 ***Changed***: * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 1.4.0 / 2024-01-05 / Agent 7.51.0 ***Added***: diff --git a/datadog_checks_downloader/CHANGELOG.md b/datadog_checks_downloader/CHANGELOG.md index 8f794c5cca15c..84b75d6309dda 100644 --- a/datadog_checks_downloader/CHANGELOG.md +++ b/datadog_checks_downloader/CHANGELOG.md @@ -14,16 +14,16 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ## 5.0.0 / 2024-10-01 / Agent 7.58.0 ***Changed***: * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 4.7.0 / 2024-07-05 / Agent 7.55.0 ***Security***: diff --git a/datadog_cluster_agent/CHANGELOG.md b/datadog_cluster_agent/CHANGELOG.md index 67aec4358128e..ada595d90c490 100644 --- a/datadog_cluster_agent/CHANGELOG.md +++ b/datadog_cluster_agent/CHANGELOG.md @@ -14,10 +14,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -28,6 +24,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 3.2.0 / 2024-08-09 / Agent 7.57.0 ***Added***: diff --git a/dcgm/CHANGELOG.md b/dcgm/CHANGELOG.md index 4ca425b9ac34f..a496522d5fd39 100644 --- a/dcgm/CHANGELOG.md +++ b/dcgm/CHANGELOG.md @@ -4,9 +4,6 @@ ## 3.1.0 / 2024-10-04 / Agent 7.59.0 -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) * Align OMv2 labels with Kubernetes agent tags ([#18654](https://github.com/DataDog/integrations-core/pull/18654)) ***Fixed***: @@ -19,6 +16,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 2.3.2 / 2024-07-05 / Agent 7.55.0 ***Fixed***: diff --git a/directory/CHANGELOG.md b/directory/CHANGELOG.md index db85d91a30c3f..99c1e1e78a858 100644 --- a/directory/CHANGELOG.md +++ b/directory/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 2.1.1 / 2024-02-16 / Agent 7.52.0 ***Fixed***: diff --git a/disk/CHANGELOG.md b/disk/CHANGELOG.md index c768cd40a0b2e..d3b96a84d2716 100644 --- a/disk/CHANGELOG.md +++ b/disk/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -24,6 +20,7 @@ ***Added***: +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) * Upgrade psutil to 6.0.0 to fix performance issues addressed ([#18688](https://github.com/DataDog/integrations-core/pull/18688)) ## 5.4.0 / 2024-09-05 diff --git a/dns_check/CHANGELOG.md b/dns_check/CHANGELOG.md index 42f98d2c86001..13690f92ee70a 100644 --- a/dns_check/CHANGELOG.md +++ b/dns_check/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 3.3.0 / 2024-03-22 / Agent 7.53.0 ***Added***: diff --git a/dotnetclr/CHANGELOG.md b/dotnetclr/CHANGELOG.md index 2a035c938ca1a..b7407151c0ea2 100644 --- a/dotnetclr/CHANGELOG.md +++ b/dotnetclr/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 2.1.1 / 2024-07-05 / Agent 7.55.0 ***Fixed***: diff --git a/druid/CHANGELOG.md b/druid/CHANGELOG.md index 446ac6974c60d..e2fd2ecc6770b 100644 --- a/druid/CHANGELOG.md +++ b/druid/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 2.5.1 / 2024-05-31 / Agent 7.55.0 ***Fixed***: diff --git a/ecs_fargate/CHANGELOG.md b/ecs_fargate/CHANGELOG.md index e51e736c0489e..fef9b4d71491c 100644 --- a/ecs_fargate/CHANGELOG.md +++ b/ecs_fargate/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 4.3.1 / 2024-05-31 / Agent 7.55.0 ***Fixed***: diff --git a/eks_fargate/CHANGELOG.md b/eks_fargate/CHANGELOG.md index 5e5348cc7f0ff..b5b7b0679cc3c 100644 --- a/eks_fargate/CHANGELOG.md +++ b/eks_fargate/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 4.2.1 / 2024-05-31 / Agent 7.55.0 ***Fixed***: diff --git a/elastic/CHANGELOG.md b/elastic/CHANGELOG.md index ad73e96bc264a..6ebb1ab9190e2 100644 --- a/elastic/CHANGELOG.md +++ b/elastic/CHANGELOG.md @@ -7,10 +7,6 @@ ***Removed***: * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) - -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) * Add functionality to not use `host` and `port` tags in service checks ([#18687](https://github.com/DataDog/integrations-core/pull/18687)) ***Fixed***: @@ -23,6 +19,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 6.3.1 / 2024-05-31 / Agent 7.55.0 ***Fixed***: diff --git a/envoy/CHANGELOG.md b/envoy/CHANGELOG.md index a8a4ec786a0e8..c1a808b7ecbbf 100644 --- a/envoy/CHANGELOG.md +++ b/envoy/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 3.6.0 / 2024-09-10 ***Added***: diff --git a/esxi/CHANGELOG.md b/esxi/CHANGELOG.md index 31b6fdeeca8c0..67dc8aa2d8777 100644 --- a/esxi/CHANGELOG.md +++ b/esxi/CHANGELOG.md @@ -8,16 +8,16 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ## 2.0.0 / 2024-10-01 / Agent 7.58.0 ***Changed***: * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 1.2.0 / 2024-07-05 / Agent 7.56.0 ***Added***: diff --git a/etcd/CHANGELOG.md b/etcd/CHANGELOG.md index 114766ab7d325..142b844503f43 100644 --- a/etcd/CHANGELOG.md +++ b/etcd/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 6.2.2 / 2024-07-05 / Agent 7.56.0 ***Fixed***: diff --git a/exchange_server/CHANGELOG.md b/exchange_server/CHANGELOG.md index 38e3f0bba21c1..36068c903fcab 100644 --- a/exchange_server/CHANGELOG.md +++ b/exchange_server/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 2.1.1 / 2024-07-05 / Agent 7.55.0 ***Fixed***: diff --git a/external_dns/CHANGELOG.md b/external_dns/CHANGELOG.md index d21d1962cb9c4..91c2ab04fee44 100644 --- a/external_dns/CHANGELOG.md +++ b/external_dns/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 3.2.1 / 2024-05-31 / Agent 7.55.0 ***Fixed***: diff --git a/flink/CHANGELOG.md b/flink/CHANGELOG.md index 4c19b66d8b61a..f758a13003b47 100644 --- a/flink/CHANGELOG.md +++ b/flink/CHANGELOG.md @@ -8,16 +8,16 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ## 2.0.0 / 2024-10-01 / Agent 7.58.0 ***Changed***: * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 1.5.0 / 2024-01-05 / Agent 7.51.0 ***Added***: diff --git a/fluentd/CHANGELOG.md b/fluentd/CHANGELOG.md index f0af9a8419eec..af6e92f9dba8a 100644 --- a/fluentd/CHANGELOG.md +++ b/fluentd/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 3.2.1 / 2024-05-31 / Agent 7.55.0 ***Fixed***: diff --git a/fluxcd/CHANGELOG.md b/fluxcd/CHANGELOG.md index 3d8a89841b093..f29a7269c7199 100644 --- a/fluxcd/CHANGELOG.md +++ b/fluxcd/CHANGELOG.md @@ -4,10 +4,6 @@ ## 2.1.0 / 2024-10-04 / Agent 7.59.0 -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -18,6 +14,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 1.2.2 / 2024-07-05 / Agent 7.55.0 ***Fixed***: diff --git a/fly_io/CHANGELOG.md b/fly_io/CHANGELOG.md index d361c83c0808f..b9e299749115d 100644 --- a/fly_io/CHANGELOG.md +++ b/fly_io/CHANGELOG.md @@ -14,6 +14,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 1.0.1 / 2024-09-05 ***Fixed***: diff --git a/foundationdb/CHANGELOG.md b/foundationdb/CHANGELOG.md index f3c83f8e84200..589742db02d09 100644 --- a/foundationdb/CHANGELOG.md +++ b/foundationdb/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 1.4.0 / 2024-01-05 / Agent 7.51.0 ***Added***: diff --git a/gearmand/CHANGELOG.md b/gearmand/CHANGELOG.md index 928e3d772702b..4b463f42324b3 100644 --- a/gearmand/CHANGELOG.md +++ b/gearmand/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 3.1.0 / 2024-01-05 / Agent 7.51.0 ***Added***: diff --git a/gitlab/CHANGELOG.md b/gitlab/CHANGELOG.md index b0faa6f9fdc2e..6366910d279c0 100644 --- a/gitlab/CHANGELOG.md +++ b/gitlab/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 7.3.2 / 2024-07-05 / Agent 7.55.0 ***Fixed***: diff --git a/gitlab_runner/CHANGELOG.md b/gitlab_runner/CHANGELOG.md index 752ac541dc686..1bedca43d6a45 100644 --- a/gitlab_runner/CHANGELOG.md +++ b/gitlab_runner/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 4.2.1 / 2024-05-31 / Agent 7.55.0 ***Fixed***: diff --git a/glusterfs/CHANGELOG.md b/glusterfs/CHANGELOG.md index c7fd2a6c7c1ea..84fa435b0bae2 100644 --- a/glusterfs/CHANGELOG.md +++ b/glusterfs/CHANGELOG.md @@ -14,10 +14,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -28,6 +24,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 1.8.0 / 2024-09-05 ***Added***: diff --git a/go_expvar/CHANGELOG.md b/go_expvar/CHANGELOG.md index d43e20a28a403..5011e954beb95 100644 --- a/go_expvar/CHANGELOG.md +++ b/go_expvar/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 2.5.1 / 2024-05-31 / Agent 7.55.0 ***Fixed***: diff --git a/gunicorn/CHANGELOG.md b/gunicorn/CHANGELOG.md index 9a6b65b1362a2..833104b7f47f3 100644 --- a/gunicorn/CHANGELOG.md +++ b/gunicorn/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -24,6 +20,7 @@ ***Added***: +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) * Upgrade psutil to 6.0.0 to fix performance issues addressed ([#18688](https://github.com/DataDog/integrations-core/pull/18688)) ## 2.8.0 / 2024-09-05 diff --git a/haproxy/CHANGELOG.md b/haproxy/CHANGELOG.md index 602e7b1fc6fbd..1577c73c09b3e 100644 --- a/haproxy/CHANGELOG.md +++ b/haproxy/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 5.2.2 / 2024-07-05 / Agent 7.55.0 ***Fixed***: diff --git a/harbor/CHANGELOG.md b/harbor/CHANGELOG.md index 4bd2c82f8db34..9a0545ee646bf 100644 --- a/harbor/CHANGELOG.md +++ b/harbor/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 3.2.2 / 2024-05-31 / Agent 7.55.0 ***Fixed***: diff --git a/hazelcast/CHANGELOG.md b/hazelcast/CHANGELOG.md index 2d94d7dbfcb62..dff74deef6f98 100644 --- a/hazelcast/CHANGELOG.md +++ b/hazelcast/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 4.1.0 / 2024-09-06 ***Added***: diff --git a/hdfs_datanode/CHANGELOG.md b/hdfs_datanode/CHANGELOG.md index c9269221368eb..068f38546f4fa 100644 --- a/hdfs_datanode/CHANGELOG.md +++ b/hdfs_datanode/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 4.2.1 / 2024-05-31 / Agent 7.55.0 ***Fixed***: diff --git a/hdfs_namenode/CHANGELOG.md b/hdfs_namenode/CHANGELOG.md index 71d0ae2aeb44a..0cdea872d5c34 100644 --- a/hdfs_namenode/CHANGELOG.md +++ b/hdfs_namenode/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 4.2.1 / 2024-05-31 / Agent 7.55.0 ***Fixed***: diff --git a/hive/CHANGELOG.md b/hive/CHANGELOG.md index f1faf2ecc73dc..6be6028c43f16 100644 --- a/hive/CHANGELOG.md +++ b/hive/CHANGELOG.md @@ -4,10 +4,6 @@ ## 2.1.0 / 2024-10-04 / Agent 7.59.0 -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -18,6 +14,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 1.10.0 / 2024-01-05 / Agent 7.51.0 ***Added***: diff --git a/hivemq/CHANGELOG.md b/hivemq/CHANGELOG.md index 938bedd2ba91e..f1c175bf859d2 100644 --- a/hivemq/CHANGELOG.md +++ b/hivemq/CHANGELOG.md @@ -4,10 +4,6 @@ ## 2.1.0 / 2024-10-04 / Agent 7.59.0 -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -18,6 +14,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 1.8.0 / 2024-01-05 / Agent 7.51.0 ***Added***: diff --git a/http_check/CHANGELOG.md b/http_check/CHANGELOG.md index 3026cb27a8262..dae4d86a8b0ea 100644 --- a/http_check/CHANGELOG.md +++ b/http_check/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ***Security***: * Bump version of cryptography to 43.0.1 to address vulnerability ([#18656](https://github.com/DataDog/integrations-core/pull/18656)) diff --git a/hudi/CHANGELOG.md b/hudi/CHANGELOG.md index f484afed7625c..2fbce75e93832 100644 --- a/hudi/CHANGELOG.md +++ b/hudi/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 2.3.0 / 2024-01-05 / Agent 7.51.0 ***Added***: diff --git a/hyperv/CHANGELOG.md b/hyperv/CHANGELOG.md index 0f2538e828b05..b3d0b88b08508 100644 --- a/hyperv/CHANGELOG.md +++ b/hyperv/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 1.11.1 / 2024-07-05 / Agent 7.55.0 ***Fixed***: diff --git a/ibm_ace/CHANGELOG.md b/ibm_ace/CHANGELOG.md index eb771d2dd6f51..5f134181fa122 100644 --- a/ibm_ace/CHANGELOG.md +++ b/ibm_ace/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 2.2.2 / 2024-04-26 / Agent 7.54.0 ***Fixed***: diff --git a/ibm_db2/CHANGELOG.md b/ibm_db2/CHANGELOG.md index b31c24b608408..61a94adcc26e6 100644 --- a/ibm_db2/CHANGELOG.md +++ b/ibm_db2/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 2.2.0 / 2024-01-05 / Agent 7.51.0 ***Added***: diff --git a/ibm_i/CHANGELOG.md b/ibm_i/CHANGELOG.md index bb42a4a224626..5d0788a96cf26 100644 --- a/ibm_i/CHANGELOG.md +++ b/ibm_i/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 2.2.0 / 2024-02-16 / Agent 7.52.0 ***Added***: diff --git a/ibm_mq/CHANGELOG.md b/ibm_mq/CHANGELOG.md index c39f37d2e197d..aea1f33056f3d 100644 --- a/ibm_mq/CHANGELOG.md +++ b/ibm_mq/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -24,6 +20,7 @@ ***Added***: +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) * Upgrade psutil to 6.0.0 to fix performance issues addressed ([#18688](https://github.com/DataDog/integrations-core/pull/18688)) ## 6.4.0 / 2024-09-05 diff --git a/ibm_was/CHANGELOG.md b/ibm_was/CHANGELOG.md index 59d1efa33626d..af40b435fa179 100644 --- a/ibm_was/CHANGELOG.md +++ b/ibm_was/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -24,6 +20,7 @@ ***Added***: +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) * Bump lxml version for py3.12 E2E tests ([#18637](https://github.com/DataDog/integrations-core/pull/18637)) ## 3.3.2 / 2024-08-28 / Agent 7.57.0 diff --git a/ignite/CHANGELOG.md b/ignite/CHANGELOG.md index cf8218d1cb91a..a3d477413991b 100644 --- a/ignite/CHANGELOG.md +++ b/ignite/CHANGELOG.md @@ -4,10 +4,6 @@ ## 3.1.0 / 2024-10-04 / Agent 7.59.0 -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -18,6 +14,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 2.4.0 / 2024-01-05 / Agent 7.51.0 ***Added***: diff --git a/iis/CHANGELOG.md b/iis/CHANGELOG.md index cc8f2a6a368b6..7d122302a165e 100644 --- a/iis/CHANGELOG.md +++ b/iis/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 3.1.1 / 2024-07-05 / Agent 7.55.0 ***Fixed***: diff --git a/impala/CHANGELOG.md b/impala/CHANGELOG.md index fcbbb30121c84..fdbd196d6633b 100644 --- a/impala/CHANGELOG.md +++ b/impala/CHANGELOG.md @@ -4,10 +4,6 @@ ## 3.1.0 / 2024-10-04 / Agent 7.59.0 -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -18,6 +14,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 2.2.2 / 2024-07-05 / Agent 7.55.0 ***Fixed***: diff --git a/istio/CHANGELOG.md b/istio/CHANGELOG.md index 537689df67076..bfe5ca8ccf67c 100644 --- a/istio/CHANGELOG.md +++ b/istio/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 6.1.2 / 2024-07-05 / Agent 7.55.0 ***Fixed***: diff --git a/jboss_wildfly/CHANGELOG.md b/jboss_wildfly/CHANGELOG.md index add07da148de4..5d6008353c7f4 100644 --- a/jboss_wildfly/CHANGELOG.md +++ b/jboss_wildfly/CHANGELOG.md @@ -4,10 +4,6 @@ ## 3.1.0 / 2024-10-04 / Agent 7.59.0 -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -18,6 +14,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 2.2.0 / 2024-01-05 / Agent 7.51.0 ***Added***: diff --git a/journald/CHANGELOG.md b/journald/CHANGELOG.md index 076ec25714dd6..1c85c0721ec5b 100644 --- a/journald/CHANGELOG.md +++ b/journald/CHANGELOG.md @@ -8,16 +8,16 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ## 2.0.0 / 2024-10-01 / Agent 7.58.0 ***Changed***: * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 1.2.0 / 2024-01-05 / Agent 7.51.0 ***Added***: diff --git a/kafka/CHANGELOG.md b/kafka/CHANGELOG.md index 3f8dcab5d9540..32295bbad7d4b 100644 --- a/kafka/CHANGELOG.md +++ b/kafka/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 2.16.0 / 2024-05-31 / Agent 7.55.0 ***Added***: diff --git a/kafka_consumer/CHANGELOG.md b/kafka_consumer/CHANGELOG.md index f51c5184d183c..33716717ce50e 100644 --- a/kafka_consumer/CHANGELOG.md +++ b/kafka_consumer/CHANGELOG.md @@ -14,10 +14,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -28,6 +24,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 4.6.1 / 2024-09-05 ***Fixed***: diff --git a/karpenter/CHANGELOG.md b/karpenter/CHANGELOG.md index b28cf677e974d..4449d023b6150 100644 --- a/karpenter/CHANGELOG.md +++ b/karpenter/CHANGELOG.md @@ -4,10 +4,6 @@ ## 2.1.0 / 2024-10-04 / Agent 7.59.0 -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -18,6 +14,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 1.6.0 / 2024-09-23 ***Added***: diff --git a/kong/CHANGELOG.md b/kong/CHANGELOG.md index 9a649188f0a00..8af351bd063b1 100644 --- a/kong/CHANGELOG.md +++ b/kong/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 3.2.2 / 2024-07-05 / Agent 7.55.0 ***Fixed***: diff --git a/kube_apiserver_metrics/CHANGELOG.md b/kube_apiserver_metrics/CHANGELOG.md index e1ff1a8c1560c..f8c3e58842219 100644 --- a/kube_apiserver_metrics/CHANGELOG.md +++ b/kube_apiserver_metrics/CHANGELOG.md @@ -23,6 +23,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 4.3.1 / 2024-05-31 / Agent 7.55.0 ***Fixed***: diff --git a/kube_controller_manager/CHANGELOG.md b/kube_controller_manager/CHANGELOG.md index ee42fc661a2d6..e7169db8de71c 100644 --- a/kube_controller_manager/CHANGELOG.md +++ b/kube_controller_manager/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 5.1.1 / 2024-05-31 / Agent 7.55.0 ***Fixed***: diff --git a/kube_dns/CHANGELOG.md b/kube_dns/CHANGELOG.md index 1194de7980a2e..576b386963dcb 100644 --- a/kube_dns/CHANGELOG.md +++ b/kube_dns/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 4.4.1 / 2024-05-31 / Agent 7.55.0 ***Fixed***: diff --git a/kube_metrics_server/CHANGELOG.md b/kube_metrics_server/CHANGELOG.md index ea5c0b53fca0f..df967873766a5 100644 --- a/kube_metrics_server/CHANGELOG.md +++ b/kube_metrics_server/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 3.3.1 / 2024-05-31 / Agent 7.55.0 ***Fixed***: diff --git a/kube_proxy/CHANGELOG.md b/kube_proxy/CHANGELOG.md index fd4be2028653b..85f498a299594 100644 --- a/kube_proxy/CHANGELOG.md +++ b/kube_proxy/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 6.3.1 / 2024-05-31 / Agent 7.55.0 ***Fixed***: diff --git a/kube_scheduler/CHANGELOG.md b/kube_scheduler/CHANGELOG.md index 4f0dadb9d13c2..73c70354de149 100644 --- a/kube_scheduler/CHANGELOG.md +++ b/kube_scheduler/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 4.10.1 / 2024-05-31 / Agent 7.55.0 ***Fixed***: diff --git a/kubelet/CHANGELOG.md b/kubelet/CHANGELOG.md index 45b605e8b2df6..0f8d3df2a871b 100644 --- a/kubelet/CHANGELOG.md +++ b/kubelet/CHANGELOG.md @@ -8,16 +8,16 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ## 8.0.0 / 2024-10-01 / Agent 7.58.0 ***Changed***: * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 7.13.2 / 2024-05-31 / Agent 7.55.0 ***Fixed***: diff --git a/kubernetes_cluster_autoscaler/CHANGELOG.md b/kubernetes_cluster_autoscaler/CHANGELOG.md index a781ea4bc9ce7..aec66b04cddeb 100644 --- a/kubernetes_cluster_autoscaler/CHANGELOG.md +++ b/kubernetes_cluster_autoscaler/CHANGELOG.md @@ -4,10 +4,6 @@ ## 2.1.0 / 2024-10-04 / Agent 7.59.0 -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -18,6 +14,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 1.0.1 / 2024-07-05 / Agent 7.55.0 ***Fixed***: diff --git a/kubernetes_state/CHANGELOG.md b/kubernetes_state/CHANGELOG.md index fa780ce429b1a..9853802b31fea 100644 --- a/kubernetes_state/CHANGELOG.md +++ b/kubernetes_state/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 8.1.1 / 2024-05-31 / Agent 7.55.0 ***Fixed***: diff --git a/kyototycoon/CHANGELOG.md b/kyototycoon/CHANGELOG.md index 015656cee87fc..484df0919e797 100644 --- a/kyototycoon/CHANGELOG.md +++ b/kyototycoon/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 2.5.1 / 2024-05-31 / Agent 7.55.0 ***Fixed***: diff --git a/kyverno/CHANGELOG.md b/kyverno/CHANGELOG.md index d7331651c7d2c..53af87b19b594 100644 --- a/kyverno/CHANGELOG.md +++ b/kyverno/CHANGELOG.md @@ -4,10 +4,6 @@ ## 2.1.0 / 2024-10-04 / Agent 7.59.0 -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -18,6 +14,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 1.0.2 / 2024-07-31 / Agent 7.56.0 ***Fixed***: diff --git a/lighttpd/CHANGELOG.md b/lighttpd/CHANGELOG.md index 10be3e35795c8..c26809adc3230 100644 --- a/lighttpd/CHANGELOG.md +++ b/lighttpd/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 3.5.1 / 2024-05-31 / Agent 7.55.0 ***Fixed***: diff --git a/linkerd/CHANGELOG.md b/linkerd/CHANGELOG.md index eedb343d0ba63..455bccecd15b7 100644 --- a/linkerd/CHANGELOG.md +++ b/linkerd/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 4.2.2 / 2024-07-05 / Agent 7.55.0 ***Fixed***: diff --git a/linux_proc_extras/CHANGELOG.md b/linux_proc_extras/CHANGELOG.md index e6633c937dac5..5b3812622571f 100644 --- a/linux_proc_extras/CHANGELOG.md +++ b/linux_proc_extras/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 2.5.0 / 2024-01-05 / Agent 7.51.0 ***Added***: diff --git a/mapr/CHANGELOG.md b/mapr/CHANGELOG.md index 34d17b06e9c9c..84da53694a1a3 100644 --- a/mapr/CHANGELOG.md +++ b/mapr/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 1.11.0 / 2024-01-05 / Agent 7.51.0 ***Added***: diff --git a/mapreduce/CHANGELOG.md b/mapreduce/CHANGELOG.md index a2f0a06fbc62a..7e5af27d9fc03 100644 --- a/mapreduce/CHANGELOG.md +++ b/mapreduce/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 4.2.1 / 2024-05-31 / Agent 7.55.0 ***Fixed***: diff --git a/marathon/CHANGELOG.md b/marathon/CHANGELOG.md index b0984e57954df..0152edd5841a6 100644 --- a/marathon/CHANGELOG.md +++ b/marathon/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 2.3.1 / 2024-05-31 / Agent 7.55.0 ***Fixed***: diff --git a/marklogic/CHANGELOG.md b/marklogic/CHANGELOG.md index 2f3c74f664ae7..974518be9ddaa 100644 --- a/marklogic/CHANGELOG.md +++ b/marklogic/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 4.2.1 / 2024-05-31 / Agent 7.55.0 ***Fixed***: diff --git a/mcache/CHANGELOG.md b/mcache/CHANGELOG.md index 56c05bbaa71d7..97f53001d2de0 100644 --- a/mcache/CHANGELOG.md +++ b/mcache/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 4.1.0 / 2024-01-05 / Agent 7.51.0 ***Added***: diff --git a/mesos_master/CHANGELOG.md b/mesos_master/CHANGELOG.md index 2955a6bb9f11f..f30ce7106d362 100644 --- a/mesos_master/CHANGELOG.md +++ b/mesos_master/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 3.3.1 / 2024-05-31 / Agent 7.55.0 ***Fixed***: diff --git a/mesos_slave/CHANGELOG.md b/mesos_slave/CHANGELOG.md index 8d76b4a785b94..ebbc24993cd1a 100644 --- a/mesos_slave/CHANGELOG.md +++ b/mesos_slave/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 3.3.1 / 2024-05-31 / Agent 7.55.0 ***Fixed***: diff --git a/mongo/CHANGELOG.md b/mongo/CHANGELOG.md index 443834f9bfde0..78a233b39855b 100644 --- a/mongo/CHANGELOG.md +++ b/mongo/CHANGELOG.md @@ -30,10 +30,6 @@ ***Removed***: * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) - -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) * Bump datadog-checks-base dependency ([#18583](https://github.com/DataDog/integrations-core/pull/18583)) * Add `mongodb.system.cpu.percent` metric to track total CPU usage of the MongoDB process on self-hosted instances (only available on self-hosted MongoDB running on the same host as the Agent). ([#18618](https://github.com/DataDog/integrations-core/pull/18618)) * Always emit `database_instance` metadata regardless of DBM status; previously emitted only when DBM was enabled. ([#18750](https://github.com/DataDog/integrations-core/pull/18750)) @@ -51,6 +47,7 @@ ***Added***: +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) * Upgrade psutil to 6.0.0 to fix performance issues addressed ([#18688](https://github.com/DataDog/integrations-core/pull/18688)) ## 6.11.0 / 2024-09-10 diff --git a/mysql/CHANGELOG.md b/mysql/CHANGELOG.md index 3547c67c68d54..54c9711ebb1a6 100644 --- a/mysql/CHANGELOG.md +++ b/mysql/CHANGELOG.md @@ -28,10 +28,6 @@ ***Removed***: * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) - -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) * Update the `propagate_agent_tags` setting. When set to `true`, the tags from the agent host are now added to the check's tags for all instances. ([#18400](https://github.com/DataDog/integrations-core/pull/18400)) ***Fixed***: @@ -48,6 +44,10 @@ * Bump version of cryptography to 43.0.1 to address vulnerability ([#18656](https://github.com/DataDog/integrations-core/pull/18656)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 12.8.0 / 2024-09-05 ***Added***: diff --git a/nagios/CHANGELOG.md b/nagios/CHANGELOG.md index 7bd7b40f61ad2..355b10560e7ff 100644 --- a/nagios/CHANGELOG.md +++ b/nagios/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 1.13.0 / 2024-01-05 / Agent 7.51.0 ***Added***: diff --git a/network/CHANGELOG.md b/network/CHANGELOG.md index 7f343bb2e6437..ee06a54a087e3 100644 --- a/network/CHANGELOG.md +++ b/network/CHANGELOG.md @@ -14,10 +14,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -36,6 +32,7 @@ ***Added***: +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) * Upgrade psutil to 6.0.0 to fix performance issues addressed ([#18688](https://github.com/DataDog/integrations-core/pull/18688)) ## 3.4.0 / 2024-09-05 diff --git a/nfsstat/CHANGELOG.md b/nfsstat/CHANGELOG.md index f0a3086537b07..2ee0f4464afbd 100644 --- a/nfsstat/CHANGELOG.md +++ b/nfsstat/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 1.13.0 / 2024-01-05 / Agent 7.51.0 ***Added***: diff --git a/nginx/CHANGELOG.md b/nginx/CHANGELOG.md index 22fd3f5399c01..e4619d46162d8 100644 --- a/nginx/CHANGELOG.md +++ b/nginx/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 6.3.1 / 2024-05-31 / Agent 7.55.0 ***Fixed***: diff --git a/nginx_ingress_controller/CHANGELOG.md b/nginx_ingress_controller/CHANGELOG.md index 7a56d7c237053..d136636c95aab 100644 --- a/nginx_ingress_controller/CHANGELOG.md +++ b/nginx_ingress_controller/CHANGELOG.md @@ -23,6 +23,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 2.6.1 / 2024-05-31 / Agent 7.55.0 ***Fixed***: diff --git a/nvidia_triton/CHANGELOG.md b/nvidia_triton/CHANGELOG.md index 42ba6664d93b5..07a911a43cfec 100644 --- a/nvidia_triton/CHANGELOG.md +++ b/nvidia_triton/CHANGELOG.md @@ -4,10 +4,6 @@ ## 2.1.0 / 2024-10-04 / Agent 7.59.0 -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -18,6 +14,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 1.2.2 / 2024-07-05 / Agent 7.55.0 ***Fixed***: diff --git a/openldap/CHANGELOG.md b/openldap/CHANGELOG.md index 03e4ee219a7dc..9d6366c8f311b 100644 --- a/openldap/CHANGELOG.md +++ b/openldap/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 1.12.0 / 2024-01-05 / Agent 7.51.0 ***Added***: diff --git a/openmetrics/CHANGELOG.md b/openmetrics/CHANGELOG.md index 01154a3552f75..9c0393d7cf3d2 100644 --- a/openmetrics/CHANGELOG.md +++ b/openmetrics/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 4.2.2 / 2024-07-05 / Agent 7.55.0 ***Fixed***: diff --git a/openstack/CHANGELOG.md b/openstack/CHANGELOG.md index ef39c1512c661..2e3361b25b5b6 100644 --- a/openstack/CHANGELOG.md +++ b/openstack/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 2.0.0 / 2024-01-05 / Agent 7.51.0 ***Changed***: diff --git a/openstack_controller/CHANGELOG.md b/openstack_controller/CHANGELOG.md index 3da3a8b274510..5c03d3494bcde 100644 --- a/openstack_controller/CHANGELOG.md +++ b/openstack_controller/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 6.9.0 / 2024-08-09 / Agent 7.57.0 ***Added***: diff --git a/oracle/CHANGELOG.md b/oracle/CHANGELOG.md index 2a3d81e4ba022..e871cd2804ee1 100644 --- a/oracle/CHANGELOG.md +++ b/oracle/CHANGELOG.md @@ -8,6 +8,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 5.2.0 / 2024-03-22 / Agent 7.53.0 ***Deprecated***: diff --git a/ossec_security/CHANGELOG.md b/ossec_security/CHANGELOG.md index 713f506d40c13..57fa73dad058d 100644 --- a/ossec_security/CHANGELOG.md +++ b/ossec_security/CHANGELOG.md @@ -8,6 +8,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 1.0.0 / 2024-08-09 / Agent 7.57.0 ***Added***: diff --git a/pan_firewall/CHANGELOG.md b/pan_firewall/CHANGELOG.md index 431eea2116116..b51fc38f17992 100644 --- a/pan_firewall/CHANGELOG.md +++ b/pan_firewall/CHANGELOG.md @@ -8,16 +8,16 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ## 2.0.0 / 2024-10-01 / Agent 7.58.0 ***Changed***: * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 1.2.0 / 2024-01-05 / Agent 7.51.0 ***Added***: diff --git a/pdh_check/CHANGELOG.md b/pdh_check/CHANGELOG.md index 8840b8c5f0806..57aa3798bb182 100644 --- a/pdh_check/CHANGELOG.md +++ b/pdh_check/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 2.1.0 / 2024-01-05 / Agent 7.51.0 ***Added***: diff --git a/pgbouncer/CHANGELOG.md b/pgbouncer/CHANGELOG.md index 1f6b9a6f51adb..45e0357593394 100644 --- a/pgbouncer/CHANGELOG.md +++ b/pgbouncer/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 6.2.0 / 2024-01-05 / Agent 7.51.0 ***Added***: diff --git a/php_fpm/CHANGELOG.md b/php_fpm/CHANGELOG.md index e681bf8494f11..dfe360c68b5f6 100644 --- a/php_fpm/CHANGELOG.md +++ b/php_fpm/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 3.3.1 / 2024-05-31 / Agent 7.55.0 ***Fixed***: diff --git a/ping_federate/CHANGELOG.md b/ping_federate/CHANGELOG.md index 1a15386e3ff1a..1a1b18c0a7aa0 100644 --- a/ping_federate/CHANGELOG.md +++ b/ping_federate/CHANGELOG.md @@ -8,6 +8,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 1.0.0 / 2024-08-09 / Agent 7.57.0 ***Added***: diff --git a/postfix/CHANGELOG.md b/postfix/CHANGELOG.md index 530deea25b3cc..3419fe148522e 100644 --- a/postfix/CHANGELOG.md +++ b/postfix/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 1.14.0 / 2024-01-05 / Agent 7.51.0 ***Added***: diff --git a/postgres/CHANGELOG.md b/postgres/CHANGELOG.md index dc8dd7b06804c..fd5c3d3d7f62b 100644 --- a/postgres/CHANGELOG.md +++ b/postgres/CHANGELOG.md @@ -42,10 +42,6 @@ ***Removed***: * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) - -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) * Add `keep_json_path` to `obfuscator_options` to allow users to control whether JSON paths following JSON operators in SQL statements should be obfuscated. By default, these paths are treated as literals and are obfuscated to `?`. ([#18726](https://github.com/DataDog/integrations-core/pull/18726)) * Add additional debug logging to help with schema collection investigations ([#18754](https://github.com/DataDog/integrations-core/pull/18754)) * Add Postgres cross-org telemetry metrics. ([#18758](https://github.com/DataDog/integrations-core/pull/18758)) @@ -60,6 +56,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 20.0.0 / 2024-09-05 ***Changed***: diff --git a/powerdns_recursor/CHANGELOG.md b/powerdns_recursor/CHANGELOG.md index 889ff01a435ef..f3f7339d9a413 100644 --- a/powerdns_recursor/CHANGELOG.md +++ b/powerdns_recursor/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 2.5.1 / 2024-05-31 / Agent 7.55.0 ***Fixed***: diff --git a/presto/CHANGELOG.md b/presto/CHANGELOG.md index 83ff4312f7d7d..a66e7d6ee52cf 100644 --- a/presto/CHANGELOG.md +++ b/presto/CHANGELOG.md @@ -4,10 +4,6 @@ ## 3.1.0 / 2024-10-04 / Agent 7.59.0 -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -18,6 +14,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 2.8.0 / 2024-01-05 / Agent 7.51.0 ***Added***: diff --git a/process/CHANGELOG.md b/process/CHANGELOG.md index 3c834000f8220..7942368d14c37 100644 --- a/process/CHANGELOG.md +++ b/process/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -24,6 +20,7 @@ ***Added***: +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) * Upgrade psutil to 6.0.0 to fix performance issues addressed ([#18688](https://github.com/DataDog/integrations-core/pull/18688)) ## 3.5.0 / 2024-09-05 diff --git a/prometheus/CHANGELOG.md b/prometheus/CHANGELOG.md index 10c0b00eaecba..1b838e6341257 100644 --- a/prometheus/CHANGELOG.md +++ b/prometheus/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 3.6.0 / 2024-01-05 / Agent 7.51.0 ***Added***: diff --git a/proxysql/CHANGELOG.md b/proxysql/CHANGELOG.md index 1939ee58e6f40..23d8e0491f04c 100644 --- a/proxysql/CHANGELOG.md +++ b/proxysql/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 5.1.1 / 2024-06-11 / Agent 7.54.1 ***Fixed***: diff --git a/pulsar/CHANGELOG.md b/pulsar/CHANGELOG.md index 2d28e1f125cd2..876e715f6a870 100644 --- a/pulsar/CHANGELOG.md +++ b/pulsar/CHANGELOG.md @@ -4,10 +4,6 @@ ## 3.1.0 / 2024-10-04 / Agent 7.59.0 -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -18,6 +14,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 2.2.2 / 2024-07-05 / Agent 7.55.0 ***Fixed***: diff --git a/rabbitmq/CHANGELOG.md b/rabbitmq/CHANGELOG.md index b0d70707d02fa..87727df760663 100644 --- a/rabbitmq/CHANGELOG.md +++ b/rabbitmq/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 5.3.2 / 2024-07-05 / Agent 7.55.0 ***Fixed***: diff --git a/ray/CHANGELOG.md b/ray/CHANGELOG.md index b55ba28294f13..dcf756eea5b3d 100644 --- a/ray/CHANGELOG.md +++ b/ray/CHANGELOG.md @@ -4,10 +4,6 @@ ## 2.1.0 / 2024-10-04 / Agent 7.59.0 -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -18,6 +14,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 1.2.2 / 2024-07-05 / Agent 7.55.0 ***Fixed***: diff --git a/redisdb/CHANGELOG.md b/redisdb/CHANGELOG.md index 141d970a21936..5c11b27d25849 100644 --- a/redisdb/CHANGELOG.md +++ b/redisdb/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 5.7.0 / 2024-08-09 / Agent 7.57.0 ***Added***: diff --git a/rethinkdb/CHANGELOG.md b/rethinkdb/CHANGELOG.md index b593410168b49..c7e8149039315 100644 --- a/rethinkdb/CHANGELOG.md +++ b/rethinkdb/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -24,6 +20,7 @@ ***Added***: +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) * Bump RethinkDB version for py3.12 E2E tests ([#18636](https://github.com/DataDog/integrations-core/pull/18636)) ## 3.1.0 / 2024-01-05 / Agent 7.51.0 diff --git a/riak/CHANGELOG.md b/riak/CHANGELOG.md index 95daf0a813439..230d2060e7352 100644 --- a/riak/CHANGELOG.md +++ b/riak/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 3.5.1 / 2024-05-31 / Agent 7.55.0 ***Fixed***: diff --git a/riakcs/CHANGELOG.md b/riakcs/CHANGELOG.md index 86af4c57e7e60..215864fe3aa68 100644 --- a/riakcs/CHANGELOG.md +++ b/riakcs/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 2.12.0 / 2024-09-05 ***Added***: diff --git a/sap_hana/CHANGELOG.md b/sap_hana/CHANGELOG.md index 1bdd37a7e5432..6aa0d9bfffde0 100644 --- a/sap_hana/CHANGELOG.md +++ b/sap_hana/CHANGELOG.md @@ -8,16 +8,16 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ## 4.0.0 / 2024-10-01 / Agent 7.58.0 ***Changed***: * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 3.3.0 / 2024-08-09 / Agent 7.57.0 ***Added***: diff --git a/scylla/CHANGELOG.md b/scylla/CHANGELOG.md index f92b14e1a58ee..97ec9b5fe7474 100644 --- a/scylla/CHANGELOG.md +++ b/scylla/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 2.7.2 / 2024-07-05 / Agent 7.55.0 ***Fixed***: diff --git a/sidekiq/CHANGELOG.md b/sidekiq/CHANGELOG.md index 1c220c5a4d26b..6f0eb4ff9750e 100644 --- a/sidekiq/CHANGELOG.md +++ b/sidekiq/CHANGELOG.md @@ -8,16 +8,16 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ## 2.0.0 / 2024-10-01 / Agent 7.58.0 ***Changed***: * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 1.4.0 / 2024-01-05 / Agent 7.51.0 ***Added***: diff --git a/silk/CHANGELOG.md b/silk/CHANGELOG.md index f971e63aa65f2..28b33834c7b8d 100644 --- a/silk/CHANGELOG.md +++ b/silk/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 2.2.1 / 2024-05-31 / Agent 7.55.0 ***Fixed***: diff --git a/singlestore/CHANGELOG.md b/singlestore/CHANGELOG.md index 7dc941dd26c79..f971b53bf7f1b 100644 --- a/singlestore/CHANGELOG.md +++ b/singlestore/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 2.2.1 / 2024-06-11 / Agent 7.54.1 ***Fixed***: diff --git a/snmp/CHANGELOG.md b/snmp/CHANGELOG.md index 518b1fc3a0ec3..34638ae4e8f8f 100644 --- a/snmp/CHANGELOG.md +++ b/snmp/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 7.5.0 / 2024-09-05 ***Added***: diff --git a/snowflake/CHANGELOG.md b/snowflake/CHANGELOG.md index 8aa76fe5925a0..b909256429882 100644 --- a/snowflake/CHANGELOG.md +++ b/snowflake/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 5.9.0 / 2024-09-05 ***Added***: diff --git a/solr/CHANGELOG.md b/solr/CHANGELOG.md index ff2ae7a629cde..cc506ca03655c 100644 --- a/solr/CHANGELOG.md +++ b/solr/CHANGELOG.md @@ -4,10 +4,6 @@ ## 2.1.0 / 2024-10-04 / Agent 7.59.0 -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -18,6 +14,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 1.13.0 / 2024-01-05 / Agent 7.51.0 ***Added***: diff --git a/sonarqube/CHANGELOG.md b/sonarqube/CHANGELOG.md index af1606963c974..ed7433e548344 100644 --- a/sonarqube/CHANGELOG.md +++ b/sonarqube/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 3.2.2 / 2024-05-31 / Agent 7.55.0 ***Fixed***: diff --git a/spark/CHANGELOG.md b/spark/CHANGELOG.md index b83f5dcda3502..bb19a1f1f438e 100644 --- a/spark/CHANGELOG.md +++ b/spark/CHANGELOG.md @@ -14,10 +14,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -28,6 +24,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 4.3.1 / 2024-05-31 / Agent 7.55.0 ***Fixed***: diff --git a/sqlserver/CHANGELOG.md b/sqlserver/CHANGELOG.md index 19d8334773f8d..b9771578f65eb 100644 --- a/sqlserver/CHANGELOG.md +++ b/sqlserver/CHANGELOG.md @@ -76,6 +76,7 @@ ***Added***: +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) * Bump lxml version for py3.12 E2E tests ([#18637](https://github.com/DataDog/integrations-core/pull/18637)) ***Fixed***: diff --git a/squid/CHANGELOG.md b/squid/CHANGELOG.md index 76ff4b1ef2b1a..93880d788518b 100644 --- a/squid/CHANGELOG.md +++ b/squid/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 2.5.1 / 2024-05-31 / Agent 7.55.0 ***Fixed***: diff --git a/ssh_check/CHANGELOG.md b/ssh_check/CHANGELOG.md index cecce0fa55718..f07d07bb7edc6 100644 --- a/ssh_check/CHANGELOG.md +++ b/ssh_check/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 2.10.0 / 2024-09-05 ***Added***: diff --git a/statsd/CHANGELOG.md b/statsd/CHANGELOG.md index b6d358402fac4..c69f4fb32790d 100644 --- a/statsd/CHANGELOG.md +++ b/statsd/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 1.12.0 / 2024-01-05 / Agent 7.51.0 ***Added***: diff --git a/strimzi/CHANGELOG.md b/strimzi/CHANGELOG.md index a9b0063b2fd9b..4aee9fe954148 100644 --- a/strimzi/CHANGELOG.md +++ b/strimzi/CHANGELOG.md @@ -4,10 +4,6 @@ ## 3.1.0 / 2024-10-04 / Agent 7.59.0 -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -18,6 +14,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 2.2.2 / 2024-07-05 / Agent 7.55.0 ***Fixed***: diff --git a/supervisord/CHANGELOG.md b/supervisord/CHANGELOG.md index a358c6f42476a..6244150ce1e99 100644 --- a/supervisord/CHANGELOG.md +++ b/supervisord/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 2.6.0 / 2024-01-05 / Agent 7.51.0 ***Added***: diff --git a/suricata/CHANGELOG.md b/suricata/CHANGELOG.md index 0066a104dd1ae..bc254b3fd4dc7 100644 --- a/suricata/CHANGELOG.md +++ b/suricata/CHANGELOG.md @@ -8,6 +8,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 1.0.0 / 2024-08-09 / Agent 7.57.0 ***Added***: diff --git a/system_core/CHANGELOG.md b/system_core/CHANGELOG.md index 25893f0a15d5f..3ee414007c1fc 100644 --- a/system_core/CHANGELOG.md +++ b/system_core/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -24,6 +20,7 @@ ***Added***: +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) * Upgrade psutil to 6.0.0 to fix performance issues addressed ([#18688](https://github.com/DataDog/integrations-core/pull/18688)) ## 2.5.0 / 2024-09-05 diff --git a/system_swap/CHANGELOG.md b/system_swap/CHANGELOG.md index b016de5067ffa..6c4d009b17e27 100644 --- a/system_swap/CHANGELOG.md +++ b/system_swap/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -24,6 +20,7 @@ ***Added***: +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) * Upgrade psutil to 6.0.0 to fix performance issues addressed ([#18688](https://github.com/DataDog/integrations-core/pull/18688)) ## 1.19.0 / 2024-09-05 diff --git a/tcp_check/CHANGELOG.md b/tcp_check/CHANGELOG.md index a9520ac53b4ff..761c983251533 100644 --- a/tcp_check/CHANGELOG.md +++ b/tcp_check/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 4.9.0 / 2024-07-05 / Agent 7.56.0 ***Added***: diff --git a/teamcity/CHANGELOG.md b/teamcity/CHANGELOG.md index a7d1de51e63b7..11da7c0c1da3e 100644 --- a/teamcity/CHANGELOG.md +++ b/teamcity/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 4.3.1 / 2024-08-09 / Agent 7.57.0 ***Fixed***: diff --git a/tekton/CHANGELOG.md b/tekton/CHANGELOG.md index c5d8aa889ca33..33697c33652b0 100644 --- a/tekton/CHANGELOG.md +++ b/tekton/CHANGELOG.md @@ -4,10 +4,6 @@ ## 2.1.0 / 2024-10-04 / Agent 7.59.0 -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -18,6 +14,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 1.0.2 / 2024-07-05 / Agent 7.55.0 ***Fixed***: diff --git a/teleport/CHANGELOG.md b/teleport/CHANGELOG.md index 9025a8179edd3..d5baad9e1f0ea 100644 --- a/teleport/CHANGELOG.md +++ b/teleport/CHANGELOG.md @@ -4,10 +4,6 @@ ## 2.1.0 / 2024-10-04 / Agent 7.59.0 -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -18,6 +14,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 1.1.0 / 2024-09-05 ***Added***: diff --git a/temporal/CHANGELOG.md b/temporal/CHANGELOG.md index 2ffd38522a8c9..adc1b675ec71d 100644 --- a/temporal/CHANGELOG.md +++ b/temporal/CHANGELOG.md @@ -4,10 +4,6 @@ ## 3.1.0 / 2024-10-04 / Agent 7.59.0 -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -18,6 +14,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 2.3.0 / 2024-08-09 / Agent 7.57.0 ***Added***: diff --git a/tenable/CHANGELOG.md b/tenable/CHANGELOG.md index 3f9e02c1af197..383f3e9def02e 100644 --- a/tenable/CHANGELOG.md +++ b/tenable/CHANGELOG.md @@ -8,16 +8,16 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ## 2.0.0 / 2024-10-01 / Agent 7.58.0 ***Changed***: * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 1.5.0 / 2024-01-05 / Agent 7.51.0 ***Added***: diff --git a/teradata/CHANGELOG.md b/teradata/CHANGELOG.md index d392d52788352..a12a1d4dca1f4 100644 --- a/teradata/CHANGELOG.md +++ b/teradata/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 2.2.1 / 2024-07-05 / Agent 7.55.0 ***Fixed***: diff --git a/tibco_ems/CHANGELOG.md b/tibco_ems/CHANGELOG.md index 1dd626d42d1f3..e994a71ed9f55 100644 --- a/tibco_ems/CHANGELOG.md +++ b/tibco_ems/CHANGELOG.md @@ -20,6 +20,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 1.0.0 / 2024-08-09 / Agent 7.57.0 ***Added***: diff --git a/tls/CHANGELOG.md b/tls/CHANGELOG.md index fe70653b1fd5e..4f6d290038601 100644 --- a/tls/CHANGELOG.md +++ b/tls/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -26,6 +22,10 @@ * Bump version of cryptography to 43.0.1 to address vulnerability ([#18656](https://github.com/DataDog/integrations-core/pull/18656)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 2.20.0 / 2024-09-05 ***Added***: diff --git a/tomcat/CHANGELOG.md b/tomcat/CHANGELOG.md index b9df705ad2e9b..ca494f901cdfe 100644 --- a/tomcat/CHANGELOG.md +++ b/tomcat/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 2.0.0 / 2024-02-16 / Agent 7.52.0 ***Removed***: diff --git a/torchserve/CHANGELOG.md b/torchserve/CHANGELOG.md index 7de8a7e8f20d3..bc0abe24c4a24 100644 --- a/torchserve/CHANGELOG.md +++ b/torchserve/CHANGELOG.md @@ -4,10 +4,6 @@ ## 3.1.0 / 2024-10-04 / Agent 7.59.0 -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -18,6 +14,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 2.2.2 / 2024-07-05 / Agent 7.55.0 ***Fixed***: diff --git a/traefik_mesh/CHANGELOG.md b/traefik_mesh/CHANGELOG.md index db227463464e7..da44bfb575f1a 100644 --- a/traefik_mesh/CHANGELOG.md +++ b/traefik_mesh/CHANGELOG.md @@ -4,10 +4,6 @@ ## 2.1.0 / 2024-10-04 / Agent 7.59.0 -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -18,6 +14,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 1.0.1 / 2024-07-05 / Agent 7.55.0 ***Fixed***: diff --git a/traffic_server/CHANGELOG.md b/traffic_server/CHANGELOG.md index eaf52b3137b3b..a3e1e4ae2635f 100644 --- a/traffic_server/CHANGELOG.md +++ b/traffic_server/CHANGELOG.md @@ -4,10 +4,6 @@ ## 3.1.0 / 2024-10-04 / Agent 7.59.0 -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -18,6 +14,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 2.2.1 / 2024-05-31 / Agent 7.55.0 ***Fixed***: diff --git a/twemproxy/CHANGELOG.md b/twemproxy/CHANGELOG.md index 34696b52e05d7..a0c69524e7c84 100644 --- a/twemproxy/CHANGELOG.md +++ b/twemproxy/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 1.15.0 / 2024-01-05 / Agent 7.51.0 ***Added***: diff --git a/twistlock/CHANGELOG.md b/twistlock/CHANGELOG.md index c96352ff47ebe..4df639fe19519 100644 --- a/twistlock/CHANGELOG.md +++ b/twistlock/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 3.6.1 / 2024-05-31 / Agent 7.55.0 ***Fixed***: diff --git a/varnish/CHANGELOG.md b/varnish/CHANGELOG.md index d0f5755d7a2e0..583f75847c90a 100644 --- a/varnish/CHANGELOG.md +++ b/varnish/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 2.1.0 / 2024-01-05 / Agent 7.51.0 ***Added***: diff --git a/vault/CHANGELOG.md b/vault/CHANGELOG.md index d633038c9d165..a68c45083ef0e 100644 --- a/vault/CHANGELOG.md +++ b/vault/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 4.2.1 / 2024-07-05 / Agent 7.55.0 ***Fixed***: diff --git a/vertica/CHANGELOG.md b/vertica/CHANGELOG.md index 1043063dd3b65..96f8b93f65ddc 100644 --- a/vertica/CHANGELOG.md +++ b/vertica/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 4.6.0 / 2024-08-09 / Agent 7.57.0 ***Added***: diff --git a/vllm/CHANGELOG.md b/vllm/CHANGELOG.md index 60da658c50201..817b86cb971ff 100644 --- a/vllm/CHANGELOG.md +++ b/vllm/CHANGELOG.md @@ -4,10 +4,6 @@ ## 2.1.0 / 2024-10-04 / Agent 7.59.0 -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -18,6 +14,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 1.0.0 / 2024-07-05 / Agent 7.56.0 ***Added***: diff --git a/voltdb/CHANGELOG.md b/voltdb/CHANGELOG.md index 98e446d847ac2..bf1ce52e51f1d 100644 --- a/voltdb/CHANGELOG.md +++ b/voltdb/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 3.2.1 / 2024-05-31 / Agent 7.55.0 ***Fixed***: diff --git a/vsphere/CHANGELOG.md b/vsphere/CHANGELOG.md index 43c1ee8ab3afd..a74374232b029 100644 --- a/vsphere/CHANGELOG.md +++ b/vsphere/CHANGELOG.md @@ -19,10 +19,6 @@ ***Removed***: * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) - -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) * Added the hostname_transform config option ([#18652](https://github.com/DataDog/integrations-core/pull/18652)) ***Fixed***: @@ -36,6 +32,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 7.6.0 / 2024-07-05 / Agent 7.56.0 ***Added***: diff --git a/weaviate/CHANGELOG.md b/weaviate/CHANGELOG.md index e1954acd0ba49..fbca1fbe70130 100644 --- a/weaviate/CHANGELOG.md +++ b/weaviate/CHANGELOG.md @@ -4,10 +4,6 @@ ## 3.1.0 / 2024-10-04 / Agent 7.59.0 -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -18,6 +14,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 2.3.3 / 2024-07-05 / Agent 7.55.0 ***Fixed***: diff --git a/weblogic/CHANGELOG.md b/weblogic/CHANGELOG.md index 5b0da3e2ef323..ba1249c1d43a6 100644 --- a/weblogic/CHANGELOG.md +++ b/weblogic/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 1.3.0 / 2024-01-05 / Agent 7.51.0 ***Added***: diff --git a/win32_event_log/CHANGELOG.md b/win32_event_log/CHANGELOG.md index cd6a84332e6dc..e57801dc172c0 100644 --- a/win32_event_log/CHANGELOG.md +++ b/win32_event_log/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 3.3.0 / 2024-01-05 / Agent 7.51.0 ***Added***: diff --git a/windows_performance_counters/CHANGELOG.md b/windows_performance_counters/CHANGELOG.md index 28e88c421d934..01412a9a3ac45 100644 --- a/windows_performance_counters/CHANGELOG.md +++ b/windows_performance_counters/CHANGELOG.md @@ -4,10 +4,6 @@ ## 3.1.0 / 2024-10-04 / Agent 7.59.0 -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -18,6 +14,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 2.1.1 / 2024-07-05 / Agent 7.55.0 ***Fixed***: diff --git a/windows_service/CHANGELOG.md b/windows_service/CHANGELOG.md index 4144983baacfd..70cc272a044ff 100644 --- a/windows_service/CHANGELOG.md +++ b/windows_service/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 4.9.1 / 2024-07-05 / Agent 7.56.0 ***Fixed***: diff --git a/wmi_check/CHANGELOG.md b/wmi_check/CHANGELOG.md index 0f61c2c9ba6b5..882aa52fca4c8 100644 --- a/wmi_check/CHANGELOG.md +++ b/wmi_check/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 1.18.0 / 2024-01-05 / Agent 7.51.0 ***Added***: diff --git a/yarn/CHANGELOG.md b/yarn/CHANGELOG.md index dcafd1f4cc345..dc1602300edc8 100644 --- a/yarn/CHANGELOG.md +++ b/yarn/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 5.3.1 / 2024-05-31 / Agent 7.55.0 ***Fixed***: diff --git a/zk/CHANGELOG.md b/zk/CHANGELOG.md index fd57619d76c4d..0b4151d47cb70 100644 --- a/zk/CHANGELOG.md +++ b/zk/CHANGELOG.md @@ -8,10 +8,6 @@ * Remove support for Python 2. ([#18580](https://github.com/DataDog/integrations-core/pull/18580)) -***Added***: - -* Bump the python version from 3.11 to 3.12 ([#18207](https://github.com/DataDog/integrations-core/pull/18207)) - ***Fixed***: * Bump the version of datadog-checks-base to 37.0.0 ([#18617](https://github.com/DataDog/integrations-core/pull/18617)) @@ -22,6 +18,10 @@ * Bump minimum version of base check ([#18733](https://github.com/DataDog/integrations-core/pull/18733)) +***Added***: + +* Bump the python version from 3.11 to 3.12 ([#18212](https://github.com/DataDog/integrations-core/pull/18212)) + ## 4.5.0 / 2024-01-05 / Agent 7.51.0 ***Added***: From 2820e0b7f5139af8c0b9a27d2041a8a8a025c7c5 Mon Sep 17 00:00:00 2001 From: Kyle Neale Date: Tue, 26 Nov 2024 01:23:54 -0500 Subject: [PATCH 11/11] Retry Docker setup more times and wait longer (#19136) --- envoy/tests/conftest.py | 2 ++ sap_hana/tests/conftest.py | 2 ++ 2 files changed, 4 insertions(+) diff --git a/envoy/tests/conftest.py b/envoy/tests/conftest.py index 3f6688c1b189b..f74c4a32de930 100644 --- a/envoy/tests/conftest.py +++ b/envoy/tests/conftest.py @@ -31,7 +31,9 @@ def dd_environment(): build=True, endpoints="{}/stats".format(URL), log_patterns=['front-envoy(.*?)all dependencies initialized. starting workers'], + sleep=10, attempts=5, + attempts_wait=10, ): # Exercising envoy a bit will trigger extra metrics requests.get('http://{}:8000/service/1'.format(HOST)) diff --git a/sap_hana/tests/conftest.py b/sap_hana/tests/conftest.py index fb2a205656ed3..900f28e33e6a2 100644 --- a/sap_hana/tests/conftest.py +++ b/sap_hana/tests/conftest.py @@ -116,6 +116,8 @@ def dd_environment(schema="SYS_DATABASES"): env_vars={'PASSWORD': ADMIN_CONFIG['password']}, mount_logs=True, sleep=10, + attempts=5, + attempts_wait=10, ): yield CONFIG, E2E_METADATA