datadog-ci 1.8.0 → 1.8.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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b5ee5645ee9ec6c07af9660a2742402d617965668a00e48764839d6b7ca8470e
|
|
4
|
+
data.tar.gz: 878ee49cc336a2d8d37e718c09a6f17b949cc149c8f6a57162410ff2da9ccfea
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4fc31d4106750af2d5cc556164459e24c6782e7ade09abf57b0a3a48320552aa74f9b42488a40df256b0562f304883249b86c44b16eef59cce00af4c15f00aa9
|
|
7
|
+
data.tar.gz: fa12a596824ad2963bcd394c8a634db54300e4fab62f482c17bad0210a7a6b159a48355a070dd65a413412225ab5f570d125c547390d46f946a4fd6389244222
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
## [Unreleased]
|
|
2
2
|
|
|
3
|
+
## [1.8.1] - 2024-10-18
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Fixed
|
|
7
|
+
* Make --spec-path option available to skipped-tests-estimate cli command ([#250][])
|
|
8
|
+
|
|
3
9
|
## [1.8.0] - 2024-10-17
|
|
4
10
|
|
|
5
11
|
### Added
|
|
@@ -350,7 +356,8 @@ Currently test suite level visibility is not used by our instrumentation: it wil
|
|
|
350
356
|
|
|
351
357
|
- Ruby versions < 2.7 no longer supported ([#8][])
|
|
352
358
|
|
|
353
|
-
[Unreleased]: https://github.com/DataDog/datadog-ci-rb/compare/v1.8.
|
|
359
|
+
[Unreleased]: https://github.com/DataDog/datadog-ci-rb/compare/v1.8.1...main
|
|
360
|
+
[1.8.1]: https://github.com/DataDog/datadog-ci-rb/compare/v1.8.0...v1.8.1
|
|
354
361
|
[1.8.0]: https://github.com/DataDog/datadog-ci-rb/compare/v1.7.0...v1.8.0
|
|
355
362
|
[1.7.0]: https://github.com/DataDog/datadog-ci-rb/compare/v1.6.0...v1.7.0
|
|
356
363
|
[1.6.0]: https://github.com/DataDog/datadog-ci-rb/compare/v1.5.0...v1.6.0
|
|
@@ -505,4 +512,5 @@ Currently test suite level visibility is not used by our instrumentation: it wil
|
|
|
505
512
|
[#242]: https://github.com/DataDog/datadog-ci-rb/issues/242
|
|
506
513
|
[#243]: https://github.com/DataDog/datadog-ci-rb/issues/243
|
|
507
514
|
[#244]: https://github.com/DataDog/datadog-ci-rb/issues/244
|
|
508
|
-
[#248]: https://github.com/DataDog/datadog-ci-rb/issues/248
|
|
515
|
+
[#248]: https://github.com/DataDog/datadog-ci-rb/issues/248
|
|
516
|
+
[#250]: https://github.com/DataDog/datadog-ci-rb/issues/250
|
|
@@ -27,6 +27,7 @@ module Datadog
|
|
|
27
27
|
|
|
28
28
|
opts.on("-f", "--file FILENAME", "Output result to file FILENAME")
|
|
29
29
|
opts.on("--verbose", "Verbose output to stdout")
|
|
30
|
+
opts.on("--spec-path=[SPEC_PATH]", "Relative path to the spec directory, example: spec")
|
|
30
31
|
|
|
31
32
|
command_options(opts)
|
|
32
33
|
end.parse!(into: ddcirb_options)
|
data/lib/datadog/ci/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: datadog-ci
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.8.
|
|
4
|
+
version: 1.8.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Datadog, Inc.
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-10-
|
|
11
|
+
date: 2024-10-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: datadog
|