datadog-ci 1.20.0 → 1.20.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -2
- data/lib/datadog/ci/contrib/rspec/integration.rb +4 -1
- data/lib/datadog/ci/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 908ff8ce13486cd0fd6d37cd1f36c4ca25b0c6ea849165bb8f12ad22ad9c2830
|
4
|
+
data.tar.gz: ef5210011efafeb1d7292b73556293e1c7273322a8a05639f76c2300ffd9131d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '04933a9a7ae2158b3580c8fd1350d10c6bc78bf85217cf675b44ad582b5d9089621ce8f1b1b03f02d3121fd7c1e83b8f6d2c0080afd5efed13de287cce9187b8'
|
7
|
+
data.tar.gz: 26141b10874948956f7c8b945b5c833eacda4c9701cd6a3639c5dcc8051d71a1a7b340eac5a6f97a9d05b9cfa306ba8e661136753bd5162abd74eec48d5c809d
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,11 @@
|
|
1
1
|
## [Unreleased]
|
2
2
|
|
3
|
+
## [1.20.1] - 2025-07-04
|
4
|
+
|
5
|
+
### Fixed
|
6
|
+
|
7
|
+
* Fix autoinstrumenting rspec ([#366][])
|
8
|
+
|
3
9
|
## [1.20.0] - 2025-07-03
|
4
10
|
|
5
11
|
### Added
|
@@ -474,7 +480,8 @@ Currently test suite level visibility is not used by our instrumentation: it wil
|
|
474
480
|
|
475
481
|
- Ruby versions < 2.7 no longer supported ([#8][])
|
476
482
|
|
477
|
-
[Unreleased]: https://github.com/DataDog/datadog-ci-rb/compare/v1.20.
|
483
|
+
[Unreleased]: https://github.com/DataDog/datadog-ci-rb/compare/v1.20.1...main
|
484
|
+
[1.20.1]: https://github.com/DataDog/datadog-ci-rb/compare/v1.20.0...v1.20.1
|
478
485
|
[1.20.0]: https://github.com/DataDog/datadog-ci-rb/compare/v1.19.0...v1.20.0
|
479
486
|
[1.19.0]: https://github.com/DataDog/datadog-ci-rb/compare/v1.18.0...v1.19.0
|
480
487
|
[1.18.0]: https://github.com/DataDog/datadog-ci-rb/compare/v1.17.0...v1.18.0
|
@@ -675,4 +682,5 @@ Currently test suite level visibility is not used by our instrumentation: it wil
|
|
675
682
|
[#339]: https://github.com/DataDog/datadog-ci-rb/issues/339
|
676
683
|
[#349]: https://github.com/DataDog/datadog-ci-rb/issues/349
|
677
684
|
[#355]: https://github.com/DataDog/datadog-ci-rb/issues/355
|
678
|
-
[#359]: https://github.com/DataDog/datadog-ci-rb/issues/359
|
685
|
+
[#359]: https://github.com/DataDog/datadog-ci-rb/issues/359
|
686
|
+
[#366]: https://github.com/DataDog/datadog-ci-rb/issues/366
|
@@ -24,7 +24,10 @@ module Datadog
|
|
24
24
|
!defined?(::RSpec).nil? && !defined?(::RSpec::Core).nil? &&
|
25
25
|
!defined?(::RSpec::Core::Example).nil? &&
|
26
26
|
!defined?(::RSpec::Core::Runner).nil? &&
|
27
|
-
!defined?(::RSpec::Core::ExampleGroup).nil?
|
27
|
+
!defined?(::RSpec::Core::ExampleGroup).nil? &&
|
28
|
+
!defined?(::RSpec::Core::Formatters::DocumentationFormatter).nil? &&
|
29
|
+
!defined?(::RSpec::Core::Formatters::BaseFormatter).nil? &&
|
30
|
+
!defined?(::RSpec::Core::Formatters::BaseTextFormatter).nil?
|
28
31
|
end
|
29
32
|
|
30
33
|
def compatible?
|
data/lib/datadog/ci/version.rb
CHANGED