Skip to content

Commit b82e160

Browse files
authored
Release 1.0.0 (#864)
1 parent 3c3d46c commit b82e160

File tree

3 files changed

+25
-4
lines changed

3 files changed

+25
-4
lines changed

.github/workflows/test_integration.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
- name: Checkout code
4343
uses: actions/checkout@v2
4444
- name: Post pending status check
45-
if: github.event_name == 'pull_request'
45+
if: github.event_name == 'pull_request' && contains(github.event.pull_request.head.ref, 'datadog-api-spec/generated/')
4646
uses: actions/[email protected]
4747
with:
4848
github-token: ${{ steps.get_token.outputs.token }}
@@ -70,15 +70,15 @@ jobs:
7070
DD_TRACE_ANALYTICS_ENABLED: "true"
7171
RECORD: "none"
7272
- name: Post failure status check
73-
if: failure() && github.event_name == 'pull_request'
73+
if: failure() && github.event_name == 'pull_request' && contains(github.event.pull_request.head.ref, 'datadog-api-spec/generated/')
7474
uses: actions/[email protected]
7575
with:
7676
github-token: ${{ steps.get_token.outputs.token }}
7777
script: |
7878
const script = require('./.github/workflows/scripts/test_integration.js')
7979
await script.post_status_check(github, context, "failure")
8080
- name: Post success status check
81-
if: "!failure() && github.event_name == 'pull_request'"
81+
if: "!failure() && github.event_name == 'pull_request' && contains(github.event.pull_request.head.ref, 'datadog-api-spec/generated/')"
8282
uses: actions/[email protected]
8383
with:
8484
github-token: ${{ steps.get_token.outputs.token }}

CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,26 @@
11
# CHANGELOG
22

3+
## 1.0.0 / 2021-06-10
4+
5+
* [Added] Add missing fields in usage billable summary keys. See [#861](https://github.com/DataDog/datadog-api-client-java/pull/861).
6+
* [Added] Add monitor name and priority options. See [#858](https://github.com/DataDog/datadog-api-client-java/pull/858).
7+
* [Added] Add endpoint to list Synthetics global variables. See [#846](https://github.com/DataDog/datadog-api-client-java/pull/846).
8+
* [Added] Add monitors search endpoints. See [#842](https://github.com/DataDog/datadog-api-client-java/pull/842).
9+
* [Added] Add `tag_config_source` to usage attribution response. See [#837](https://github.com/DataDog/datadog-api-client-java/pull/837).
10+
* [Added] Add endpoints to configure Security Filters. See [#826](https://github.com/DataDog/datadog-api-client-java/pull/826).
11+
* [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).
12+
* [Added] Add Notebooks API. See [#819](https://github.com/DataDog/datadog-api-client-java/pull/819).
13+
* [Added] Add `override_label` and `is_hidden` attribute for `WidgetCustomLink`. See [#825](https://github.com/DataDog/datadog-api-client-java/pull/825).
14+
* [Added] Add CWS to usage metering endpoint. See [#845](https://github.com/DataDog/datadog-api-client-java/pull/845).
15+
* [Added] Add audit logs to usage endpoints. See [#853](https://github.com/DataDog/datadog-api-client-java/pull/853).
16+
* [Fixed] Fix type of day/month response attribute in custom metrics usage. See [#856](https://github.com/DataDog/datadog-api-client-java/pull/856).
17+
* [Fixed] Fix paging attributes of usage attribution endpoints. See [#821](https://github.com/DataDog/datadog-api-client-java/pull/821).
18+
* [Fixed] Properly mark several synthetics attributes as read only. See [#824](https://github.com/DataDog/datadog-api-client-java/pull/824).
19+
* [Fixed] Properly mark monitor required fields. See [#836](https://github.com/DataDog/datadog-api-client-java/pull/836).
20+
* [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).
21+
* [Changed] Rename `compliance` to `CSPM` in usage endpoint. See [#853](https://github.com/DataDog/datadog-api-client-java/pull/853).
22+
* [Changed] Rename `incident_integration_metadata` to `incident_integrations` to match API. See [#831](https://github.com/DataDog/datadog-api-client-java/pull/831).
23+
324
## 1.0.0-beta11 / 2021-05-12
425

526
* [Added] Add `logs_by_retention` usage property and `GetUsageLogsByRetention` endpoint. See [#809](https://github.com/DataDog/datadog-api-client-java/pull/809).

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<artifactId>datadog-api-client</artifactId>
55
<packaging>jar</packaging>
66
<name>datadog-api-client</name>
7-
<version>1.0.0-beta12-SNAPSHOT</version>
7+
<version>1.0.0</version>
88
<url>https://github.com/DataDog/datadog-api-client-java</url>
99
<description>Java client library for Datadog API</description>
1010
<scm>

0 commit comments

Comments
 (0)