diff --git a/CHANGELOG.md b/CHANGELOG.md index 49160517c56e..facff45eb4c4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,23 +1,5 @@ # CHANGELOG -## 2.34.0/2025-05-28 - -### Fixed -* add `include` parameter to On-Call team rules test [#2426](https://github.com/DataDog/datadog-api-client-ruby/pull/2426) -* fix On-Call spec [#2417](https://github.com/DataDog/datadog-api-client-ruby/pull/2417) -* Fix frozen string errors again, more durably this time [#2407](https://github.com/DataDog/datadog-api-client-ruby/pull/2407) -* Fix incorrect pattern for url [#2399](https://github.com/DataDog/datadog-api-client-ruby/pull/2399) -* Make metadata optional for GCS destination [#2389](https://github.com/DataDog/datadog-api-client-ruby/pull/2389) -* Remove isReadOnly default when creating dashboards [#2388](https://github.com/DataDog/datadog-api-client-ruby/pull/2388) - -### Added -* Add support for Datadog Events as a data source for rules [#2421](https://github.com/DataDog/datadog-api-client-ruby/pull/2421) -* Add public APIs to search DORA events [#2418](https://github.com/DataDog/datadog-api-client-ruby/pull/2418) -* Adding endpoints to manage Resource Evaluation Filters [#2411](https://github.com/DataDog/datadog-api-client-ruby/pull/2411) -* Add Sev0 as a supported incident severity [#2403](https://github.com/DataDog/datadog-api-client-ruby/pull/2403) -* Share timerestriction object [#2397](https://github.com/DataDog/datadog-api-client-ruby/pull/2397) -* add On-Call Paging spec [#2391](https://github.com/DataDog/datadog-api-client-ruby/pull/2391) - ## 2.33.0 / 2025-05-01 ### Fixed diff --git a/Gemfile b/Gemfile index beb1d2ec9adc..9e2f99a0e75f 100644 --- a/Gemfile +++ b/Gemfile @@ -6,10 +6,11 @@ gemspec group :development, :test do gem 'activesupport' - gem 'cucumber', '~> 9.1.1' + gem 'cucumber', '~> 9.2.1' gem 'datadog-ci', '~> 1.11' gem 'gem-release' gem 'rake', '~> 13.0.1' + gem 'ostruct' gem 'rspec-expectations' gem 'rubocop' gem 'rufo' diff --git a/lib/datadog_api_client/version.rb b/lib/datadog_api_client/version.rb index 80c6af1affb1..23705b32b669 100644 --- a/lib/datadog_api_client/version.rb +++ b/lib/datadog_api_client/version.rb @@ -1,5 +1,5 @@ # Define library version. module DatadogAPIClient - VERSION = '2.34.0' + VERSION = '2.33.0-dev.1' end