Skip to content

Commit d3edfa2

Browse files
authored
Fix Ruby versions in the release pipeline, revert failed release (#1802)
* Revert "Release 2.22.0 (#1800)" This reverts commit 7638860. * update ruby versions
1 parent 7638860 commit d3edfa2

File tree

4 files changed

+5
-29
lines changed

4 files changed

+5
-29
lines changed

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515
with:
1616
ref: ${{ github.event.release.tag_name }}
1717

18-
- name: Set up Ruby 2.6
18+
- name: Set up Ruby 2.7
1919
uses: ruby/setup-ruby@v1
2020
with:
21-
ruby-version: 2.6
21+
ruby-version: 2.7
2222

2323
- run: bundle install
2424

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,10 +54,10 @@ jobs:
5454
git config user.name "${GIT_AUTHOR_NAME}"
5555
git config user.email "${GIT_AUTHOR_EMAIL}"
5656
57-
- name: Set up Ruby 2.6
57+
- name: Set up Ruby 2.7
5858
uses: ruby/setup-ruby@v1
5959
with:
60-
ruby-version: 2.6
60+
ruby-version: 2.7
6161

6262
- name: Bump Gem version
6363
run: |

CHANGELOG.md

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

3-
## 2.22.0 / 2024-04-11
4-
5-
### Fixed
6-
* Update Cleanup script to use GCP STS endpoint by @api-clients-generation-pipeline in https://github.com/DataDog/datadog-api-client-ruby/pull/1762
7-
* Add include data to get team memberships response by @api-clients-generation-pipeline in https://github.com/DataDog/datadog-api-client-ruby/pull/1748
8-
### Added
9-
* Add `ci-pipeline-fingerprints` field in v2.2 by @api-clients-generation-pipeline in https://github.com/DataDog/datadog-api-client-ruby/pull/1768
10-
* Add validation endpoint for Security Monitoring Rules by @api-clients-generation-pipeline in https://github.com/DataDog/datadog-api-client-ruby/pull/1787
11-
* Add UA documentation for online_archive and incident_management by @api-clients-generation-pipeline in https://github.com/DataDog/datadog-api-client-ruby/pull/1789
12-
* Mark `unit` as nullable by @api-clients-generation-pipeline in https://github.com/DataDog/datadog-api-client-ruby/pull/1791
13-
* Add query_interval_seconds to time-slice SLO condition parameters by @api-clients-generation-pipeline in https://github.com/DataDog/datadog-api-client-ruby/pull/1793
14-
* Support providing files for the file upload feature when creating a Synthetic API test by @api-clients-generation-pipeline in https://github.com/DataDog/datadog-api-client-ruby/pull/1792
15-
* Adding SLO Reporting API Documentation by @api-clients-generation-pipeline in https://github.com/DataDog/datadog-api-client-ruby/pull/1764
16-
* Security Monitoring Suppression - Add data_exclusion_query field by @api-clients-generation-pipeline in https://github.com/DataDog/datadog-api-client-ruby/pull/1797
17-
* aws api adding extended and deprecating old resource collection field by @api-clients-generation-pipeline in https://github.com/DataDog/datadog-api-client-ruby/pull/1795
18-
### Changed
19-
* Add Team relationship to AuthNMappings by @api-clients-generation-pipeline in https://github.com/DataDog/datadog-api-client-ruby/pull/1726
20-
### Deprecated
21-
* Remove deprecated /api/v1/usage/attribution by @api-clients-generation-pipeline in https://github.com/DataDog/datadog-api-client-ruby/pull/1778
22-
* Deprecate legacy hourly usage metering endpoints by @api-clients-generation-pipeline in https://github.com/DataDog/datadog-api-client-ruby/pull/1774
23-
24-
25-
**Full Changelog**: https://github.com/DataDog/datadog-api-client-ruby/compare/v2.21.0...v2.22.0
26-
273
## 2.21.0 / 2024-03-13
284

295
### Fixed

lib/datadog_api_client/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Define library version.
22

33
module DatadogAPIClient
4-
VERSION = '2.22.0'
4+
VERSION = '2.21.0.dev.1'
55
end

0 commit comments

Comments
 (0)