datadog-ci 1.20.0 → 1.20.2
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 +17 -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: 4d52c09221c7fbde835ed3db436baf1ffe998903eaff32f3ea9c6c463d4d67e6
|
4
|
+
data.tar.gz: f1445fdbb0e305050d3340e099113b12077a3b9323029fc7b5c524b936eb478b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 06f3c204a01fbb5c73560cd9eca6af94d8b01a9142fa464ca3d65f77c6a1ec375ddc0ec3045d510dae0b7afa0b59f842c5548d62265036e574f540d74c676bcf
|
7
|
+
data.tar.gz: '08eaeb1b1f58ac8f27d93f83ec011c87d5d706498cd546b27335448ef9dcba2c2ed51fbc72c73799ae114ff5545cae487c3db760961f1f1051a838b60da75383'
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,17 @@
|
|
1
1
|
## [Unreleased]
|
2
2
|
|
3
|
+
## [1.20.2] - 2025-07-04
|
4
|
+
|
5
|
+
### Fixed
|
6
|
+
|
7
|
+
* Fix autoinstrumenting rspec ([#366][])
|
8
|
+
|
9
|
+
## [1.20.1] - 2025-07-04
|
10
|
+
|
11
|
+
### Fixed
|
12
|
+
|
13
|
+
* Fix autoinstrumenting rspec ([#366][])
|
14
|
+
|
3
15
|
## [1.20.0] - 2025-07-03
|
4
16
|
|
5
17
|
### Added
|
@@ -474,7 +486,9 @@ Currently test suite level visibility is not used by our instrumentation: it wil
|
|
474
486
|
|
475
487
|
- Ruby versions < 2.7 no longer supported ([#8][])
|
476
488
|
|
477
|
-
[Unreleased]: https://github.com/DataDog/datadog-ci-rb/compare/v1.20.
|
489
|
+
[Unreleased]: https://github.com/DataDog/datadog-ci-rb/compare/v1.20.2...main
|
490
|
+
[1.20.2]: https://github.com/DataDog/datadog-ci-rb/compare/v1.20.1...v1.20.2
|
491
|
+
[1.20.1]: https://github.com/DataDog/datadog-ci-rb/compare/v1.20.0...v1.20.1
|
478
492
|
[1.20.0]: https://github.com/DataDog/datadog-ci-rb/compare/v1.19.0...v1.20.0
|
479
493
|
[1.19.0]: https://github.com/DataDog/datadog-ci-rb/compare/v1.18.0...v1.19.0
|
480
494
|
[1.18.0]: https://github.com/DataDog/datadog-ci-rb/compare/v1.17.0...v1.18.0
|
@@ -675,4 +689,5 @@ Currently test suite level visibility is not used by our instrumentation: it wil
|
|
675
689
|
[#339]: https://github.com/DataDog/datadog-ci-rb/issues/339
|
676
690
|
[#349]: https://github.com/DataDog/datadog-ci-rb/issues/349
|
677
691
|
[#355]: https://github.com/DataDog/datadog-ci-rb/issues/355
|
678
|
-
[#359]: https://github.com/DataDog/datadog-ci-rb/issues/359
|
692
|
+
[#359]: https://github.com/DataDog/datadog-ci-rb/issues/359
|
693
|
+
[#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