datadog-ci 1.29.0 → 1.30.0

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: ac5578878c72238512be9428c1414a047b03a854d97e71830328683bcff6677c
4
- data.tar.gz: 6c91bfd2ed06cc0c87f8a4537ca32c100ee9e1f4f825aa10c05971ee320aa7cb
3
+ metadata.gz: 129bc549b30318587b435c3836517faa058dac0860f07eca408fc5562186e52f
4
+ data.tar.gz: 4a8c2756b9c846a4b5b225c51e0d1b3910e24c550f60adce4b47f968981a2b8d
5
5
  SHA512:
6
- metadata.gz: e0260d48fffd5ad1a63c9859afa4a14025325454437d54fd0fce6518afec538b091a3f49289042f93a0a4a515e03dfc80288a19b11c71dc965e01ce3c47b0824
7
- data.tar.gz: b2097df46c9cfa6b197c237dc9e80ca022204f1950c91f35870965036a60f9c90be895220a82d4bda73f3a22e20ce30b9261308d349d4519a2eca78f21f897bf
6
+ metadata.gz: ee1ceadbb2c83d09c780bfe517d52dd4a55b5a4a4dc6802fea1e653fe06b308e7eda9a90a420c1ff855b59b27a7ada8253f319f55664ade19cceb5cab79e3c60
7
+ data.tar.gz: f297af41a17c77ef5c123ad71a79e92a489218bea1b081d802f414a8496fe7e7ca4da50cde169c290ea3a6c0b189a3987f88f07cdf54bb4c822958527ac26117
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [1.30.0] - 2026-05-12
4
+
5
+ ### Changed
6
+ * Propagate ITR test skipping enabled tag to all event levels for test parallelization ([#506][])
7
+
3
8
  ## [1.29.0] - 2026-05-04
4
9
 
5
10
  ### Added
@@ -629,7 +634,8 @@ Currently test suite level visibility is not used by our instrumentation: it wil
629
634
 
630
635
  - Ruby versions < 2.7 no longer supported ([#8][])
631
636
 
632
- [Unreleased]: https://github.com/DataDog/datadog-ci-rb/compare/v1.29.0...main
637
+ [Unreleased]: https://github.com/DataDog/datadog-ci-rb/compare/v1.30.0...main
638
+ [1.30.0]: https://github.com/DataDog/datadog-ci-rb/compare/v1.29.0...v1.30.0
633
639
  [1.29.0]: https://github.com/DataDog/datadog-ci-rb/compare/v1.28.0...v1.29.0
634
640
  [1.28.0]: https://github.com/DataDog/datadog-ci-rb/compare/v1.27.0...v1.28.0
635
641
  [1.27.0]: https://github.com/DataDog/datadog-ci-rb/compare/v1.26.0...v1.27.0
@@ -891,4 +897,5 @@ Currently test suite level visibility is not used by our instrumentation: it wil
891
897
  [#498]: https://github.com/DataDog/datadog-ci-rb/issues/498
892
898
  [#499]: https://github.com/DataDog/datadog-ci-rb/issues/499
893
899
  [#500]: https://github.com/DataDog/datadog-ci-rb/issues/500
894
- [#501]: https://github.com/DataDog/datadog-ci-rb/issues/501
900
+ [#501]: https://github.com/DataDog/datadog-ci-rb/issues/501
901
+ [#506]: https://github.com/DataDog/datadog-ci-rb/issues/506
@@ -154,6 +154,7 @@ module Datadog
154
154
  INHERITABLE_TAGS = [
155
155
  TAG_FRAMEWORK,
156
156
  TAG_FRAMEWORK_VERSION,
157
+ TAG_ITR_TEST_SKIPPING_ENABLED,
157
158
  LibraryConfigurationError::TAG_SETTINGS,
158
159
  LibraryConfigurationError::TAG_SKIPPABLE_TESTS,
159
160
  LibraryConfigurationError::TAG_KNOWN_TESTS,
@@ -57,20 +57,12 @@ module Datadog
57
57
  # Return the test session tags that could be inherited by sub-spans
58
58
  # @return [Hash] the tags to be inherited by sub-spans.
59
59
  def inheritable_tags
60
- return @inheritable_tags if defined?(@inheritable_tags)
61
-
62
- # this method is not synchronized because it does not iterate over the tags collection, but rather
63
- # uses synchronized method #get_tag to get each tag value
64
- res = {}
65
- Ext::Test::INHERITABLE_TAGS.each do |tag|
60
+ Ext::Test::INHERITABLE_TAGS.each_with_object({}) do |tag, res|
66
61
  value = get_tag(tag)
67
62
  # skip tags that are not set on the session (e.g. library configuration error tags
68
63
  # are only set when the corresponding backend request fails)
69
- next if value.nil?
70
-
71
- res[tag] = value
64
+ res[tag] = value unless value.nil?
72
65
  end
73
- @inheritable_tags = res.freeze
74
66
  end
75
67
  end
76
68
  end
@@ -4,7 +4,7 @@ module Datadog
4
4
  module CI
5
5
  module VERSION
6
6
  MAJOR = 1
7
- MINOR = 29
7
+ MINOR = 30
8
8
  PATCH = 0
9
9
  PRE = nil
10
10
  BUILD = nil
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: datadog-ci
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.29.0
4
+ version: 1.30.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Datadog, Inc.