From 3044ba628b7c94519e8478d82284d43aa1c1d19d Mon Sep 17 00:00:00 2001 From: Hippolyte HENRY Date: Thu, 10 Jun 2021 11:25:30 +0200 Subject: [PATCH] Release 1.0.0 --- .github/workflows/test_integration.yml | 6 +++--- CHANGELOG.md | 21 +++++++++++++++++++++ pom.xml | 2 +- 3 files changed, 25 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test_integration.yml b/.github/workflows/test_integration.yml index b9a2ead17fd..5d168903f06 100644 --- a/.github/workflows/test_integration.yml +++ b/.github/workflows/test_integration.yml @@ -42,7 +42,7 @@ jobs: - name: Checkout code uses: actions/checkout@v2 - name: Post pending status check - if: github.event_name == 'pull_request' + if: github.event_name == 'pull_request' && contains(github.event.pull_request.head.ref, 'datadog-api-spec/generated/') uses: actions/github-script@v4.0.2 with: github-token: ${{ steps.get_token.outputs.token }} @@ -70,7 +70,7 @@ jobs: DD_TRACE_ANALYTICS_ENABLED: "true" RECORD: "none" - name: Post failure status check - if: failure() && github.event_name == 'pull_request' + if: failure() && github.event_name == 'pull_request' && contains(github.event.pull_request.head.ref, 'datadog-api-spec/generated/') uses: actions/github-script@v4.0.2 with: github-token: ${{ steps.get_token.outputs.token }} @@ -78,7 +78,7 @@ jobs: const script = require('./.github/workflows/scripts/test_integration.js') await script.post_status_check(github, context, "failure") - name: Post success status check - if: "!failure() && github.event_name == 'pull_request'" + if: "!failure() && github.event_name == 'pull_request' && contains(github.event.pull_request.head.ref, 'datadog-api-spec/generated/')" uses: actions/github-script@v4.0.2 with: github-token: ${{ steps.get_token.outputs.token }} diff --git a/CHANGELOG.md b/CHANGELOG.md index 431433613bd..1a90225a3a5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,26 @@ # CHANGELOG +## 1.0.0 / 2021-06-10 + +* [Added] Add missing fields in usage billable summary keys. See [#861](https://github.com/DataDog/datadog-api-client-java/pull/861). +* [Added] Add monitor name and priority options. See [#858](https://github.com/DataDog/datadog-api-client-java/pull/858). +* [Added] Add endpoint to list Synthetics global variables. See [#846](https://github.com/DataDog/datadog-api-client-java/pull/846). +* [Added] Add monitors search endpoints. See [#842](https://github.com/DataDog/datadog-api-client-java/pull/842). +* [Added] Add `tag_config_source` to usage attribution response. See [#837](https://github.com/DataDog/datadog-api-client-java/pull/837). +* [Added] Add endpoints to configure Security Filters. See [#826](https://github.com/DataDog/datadog-api-client-java/pull/826). +* [Added] Add `active_child` nested downtime object to `Downtime` component for downtime APIs.. See [#820](https://github.com/DataDog/datadog-api-client-java/pull/820). +* [Added] Add Notebooks API. See [#819](https://github.com/DataDog/datadog-api-client-java/pull/819). +* [Added] Add `override_label` and `is_hidden` attribute for `WidgetCustomLink`. See [#825](https://github.com/DataDog/datadog-api-client-java/pull/825). +* [Added] Add CWS to usage metering endpoint. See [#845](https://github.com/DataDog/datadog-api-client-java/pull/845). +* [Added] Add audit logs to usage endpoints. See [#853](https://github.com/DataDog/datadog-api-client-java/pull/853). +* [Fixed] Fix type of day/month response attribute in custom metrics usage. See [#856](https://github.com/DataDog/datadog-api-client-java/pull/856). +* [Fixed] Fix paging attributes of usage attribution endpoints. See [#821](https://github.com/DataDog/datadog-api-client-java/pull/821). +* [Fixed] Properly mark several synthetics attributes as read only. See [#824](https://github.com/DataDog/datadog-api-client-java/pull/824). +* [Fixed] Properly mark monitor required fields. See [#836](https://github.com/DataDog/datadog-api-client-java/pull/836). +* [Fixed] Make `assertions` field optional for multistep synthetics tests, and add `global` config variable type. See [#844](https://github.com/DataDog/datadog-api-client-java/pull/844). +* [Changed] Rename `compliance` to `CSPM` in usage endpoint. See [#853](https://github.com/DataDog/datadog-api-client-java/pull/853). +* [Changed] Rename `incident_integration_metadata` to `incident_integrations` to match API. See [#831](https://github.com/DataDog/datadog-api-client-java/pull/831). + ## 1.0.0-beta11 / 2021-05-12 * [Added] Add `logs_by_retention` usage property and `GetUsageLogsByRetention` endpoint. See [#809](https://github.com/DataDog/datadog-api-client-java/pull/809). diff --git a/pom.xml b/pom.xml index 5eb7b615fb3..96c03f8eebb 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ datadog-api-client jar datadog-api-client - 1.0.0-beta12-SNAPSHOT + 1.0.0 https://github.com/DataDog/datadog-api-client-java Java client library for Datadog API