datadog-ci 1.4.0 → 1.4.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -2
- data/README.md +1 -0
- data/ext/datadog_cov/datadog_cov.c +1 -1
- data/lib/datadog/ci/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0ddc261b14aac25efcc4c94bf30e18962e714a83e35d47cb3a1f3210d640fd5a
|
4
|
+
data.tar.gz: 47acdc6af95b2ab2e7385a22d0c82359e63ff0eabb8f0dfdf1bd0197f73eb6ee
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1a774a633e3da98fc313dcf2bfeb14c02e231fc52fc7abced54ae4246afd9930fe4598d5885e39a999ede252da6c9aa0262e041aad7b4873d4fcdb8349dab673
|
7
|
+
data.tar.gz: ed05b4354183b31a619f9f18aa22c547dc0ccbfdd829e8fa24e250fe98becd2a434855bb71839325214d017d6e1b79c99dcf681eeb7f820e1508991516722070
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,11 @@
|
|
1
1
|
## [Unreleased]
|
2
2
|
|
3
|
+
## [1.4.1] - 2024-08-28
|
4
|
+
|
5
|
+
### Fixed
|
6
|
+
|
7
|
+
* fix datadog_cov crash when doing allocation profiling ([#224][])
|
8
|
+
|
3
9
|
## [1.4.0] - 2024-08-26
|
4
10
|
|
5
11
|
### Added
|
@@ -309,7 +315,8 @@ Currently test suite level visibility is not used by our instrumentation: it wil
|
|
309
315
|
|
310
316
|
- Ruby versions < 2.7 no longer supported ([#8][])
|
311
317
|
|
312
|
-
[Unreleased]: https://github.com/DataDog/datadog-ci-rb/compare/v1.4.
|
318
|
+
[Unreleased]: https://github.com/DataDog/datadog-ci-rb/compare/v1.4.1...main
|
319
|
+
[1.4.1]: https://github.com/DataDog/datadog-ci-rb/compare/v1.4.0...v1.4.1
|
313
320
|
[1.4.0]: https://github.com/DataDog/datadog-ci-rb/compare/v1.3.0...v1.4.0
|
314
321
|
[1.3.0]: https://github.com/DataDog/datadog-ci-rb/compare/v1.2.0...v1.3.0
|
315
322
|
[1.2.0]: https://github.com/DataDog/datadog-ci-rb/compare/v1.1.0...v1.2.0
|
@@ -444,4 +451,5 @@ Currently test suite level visibility is not used by our instrumentation: it wil
|
|
444
451
|
[#218]: https://github.com/DataDog/datadog-ci-rb/issues/218
|
445
452
|
[#219]: https://github.com/DataDog/datadog-ci-rb/issues/219
|
446
453
|
[#220]: https://github.com/DataDog/datadog-ci-rb/issues/220
|
447
|
-
[#221]: https://github.com/DataDog/datadog-ci-rb/issues/221
|
454
|
+
[#221]: https://github.com/DataDog/datadog-ci-rb/issues/221
|
455
|
+
[#224]: https://github.com/DataDog/datadog-ci-rb/issues/224
|
data/README.md
CHANGED
@@ -12,6 +12,7 @@ Learn more on our [official website](https://docs.datadoghq.com/tests/) and chec
|
|
12
12
|
|
13
13
|
- [Test Visibility](https://docs.datadoghq.com/tests/) - collect metrics and results for your tests
|
14
14
|
- [Intelligent test runner](https://docs.datadoghq.com/intelligent_test_runner/) - save time by selectively running only tests affected by code changes
|
15
|
+
- [Auto test retries](https://docs.datadoghq.com/tests/auto_test_retries/?tab=ruby) - retrying failing tests up to N times to avoid failing your build due to flaky tests
|
15
16
|
- [Search and manage CI tests](https://docs.datadoghq.com/tests/search/)
|
16
17
|
- [Enhance developer workflows](https://docs.datadoghq.com/tests/developer_workflows)
|
17
18
|
- [Flaky test management](https://docs.datadoghq.com/tests/guides/flaky_test_management/)
|
@@ -249,7 +249,7 @@ static int process_instantiated_klass(st_data_t key, st_data_t _value, st_data_t
|
|
249
249
|
}
|
250
250
|
|
251
251
|
VALUE filename = RARRAY_AREF(source_location, 0);
|
252
|
-
if (filename == Qnil)
|
252
|
+
if (filename == Qnil || !RB_TYPE_P(filename, T_STRING))
|
253
253
|
{
|
254
254
|
return ST_CONTINUE;
|
255
255
|
}
|
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.4.
|
4
|
+
version: 1.4.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Datadog, Inc.
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-08-
|
11
|
+
date: 2024-08-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: datadog
|