datadog-ci 1.4.0 → 1.4.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: 614d612dad9b7e29104499934b7e80b44a0cd5f60ec5135593a3bccd9df5fc9c
4
- data.tar.gz: bb498cfa7db7871f2ac03aedb2dbbb94fac878ea34ff33d0a205e216fe856735
3
+ metadata.gz: 0ddc261b14aac25efcc4c94bf30e18962e714a83e35d47cb3a1f3210d640fd5a
4
+ data.tar.gz: 47acdc6af95b2ab2e7385a22d0c82359e63ff0eabb8f0dfdf1bd0197f73eb6ee
5
5
  SHA512:
6
- metadata.gz: 7edc6574a2a647e49da0c5ae487f98c89fa097aae064cbfd42b2a08b88ae1611fee948632dca90c6b2bb9166e5f3e02ea3aaffeb0f419f6f84f3905eac384b53
7
- data.tar.gz: 815bdb39b87e95ee1a8fe7ed5c9ae9b545491ff0c59beb117a7ff0202b73aede9c14ee4fc5179195d726ed4f4dd0572de95f3bb795f26124062f332e138e8bbe
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.0...main
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
  }
@@ -5,7 +5,7 @@ module Datadog
5
5
  module VERSION
6
6
  MAJOR = 1
7
7
  MINOR = 4
8
- PATCH = 0
8
+ PATCH = 1
9
9
  PRE = nil
10
10
  BUILD = nil
11
11
  # PRE and BUILD above are modified for dev gems during gem build GHA workflow
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.0
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-26 00:00:00.000000000 Z
11
+ date: 2024-08-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: datadog