datadog-ci 0.1.0 → 0.1.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: 9d6c84919f89f5feeee275c0050dfabed4507d04a381d18be6e3a605a0cf7b0f
4
- data.tar.gz: eb37898c092f0af0667e35611d26a62c66a531d6917e8f484e94e8a318f1ddd1
3
+ metadata.gz: 20f65248441964ee0af226ab2a401cb0c3b951bdde8cd359cfb43f46f379e3e5
4
+ data.tar.gz: a8d4e496ae5037a5454072da2a0a3ca308b95889f0b077763f8ed1f4cd9f12b8
5
5
  SHA512:
6
- metadata.gz: 4ab2aa07b7a1cbb1ffeb4838c72a7783bde0a853f9f831eedeb2ca303fa788ad2dfb0ce2889b12f939d0d393635871e3c3e8951affd2f114785df43b61ccb871
7
- data.tar.gz: b347696c14d21e8536a052647fcf8810c5ddcb3dc3173141468faf38653e6eaa29a05cd0fbadde52ea6679c11f9883e08c4655e352071a6920aeac3b10cc4265
6
+ metadata.gz: dbffc3a2f982924c33e896314d6425b2521830b301372f43fba4e6e3038bfd4b5053d4a5efa529086a9854e78c9dc2492cc74f1a9aa3ec295db91d8b7515d0a3
7
+ data.tar.gz: a477d14e4ab84c527cbfa988c41b9bbb521269e2c82fc1baaa0fc2ab488799d468b24274b79a40338cdec0500f100830f14a6eec83e286066533dbc90f63b19e
data/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [0.1.1] - 2023-09-14
4
+
5
+ ### Fixed
6
+
7
+ * Fix circular dependencies warnings ([#31][])
8
+
3
9
  ## 0.1.0 - 2023-09-12
4
10
 
5
11
  ### Added
@@ -20,7 +26,10 @@
20
26
 
21
27
  * Ruby versions < 2.7 no longer supported ([#8][])
22
28
 
23
- [Unreleased]: https://github.com/DataDog/datadog-ci-rb/compare/v0.1.0...main
29
+ [Unreleased]: https://github.com/DataDog/datadog-ci-rb/compare/v0.1.1...main
30
+ [0.1.1]: https://github.com/DataDog/datadog-ci-rb/compare/v0.1.0...v0.1.1
31
+
32
+ <!--- The following link definition list is generated by PimpMyChangelog --->
24
33
  [#7]: https://github.com/DataDog/datadog-ci-rb/issues/7
25
34
  [#8]: https://github.com/DataDog/datadog-ci-rb/issues/8
26
35
  [#11]: https://github.com/DataDog/datadog-ci-rb/issues/11
@@ -28,3 +37,4 @@
28
37
  [#15]: https://github.com/DataDog/datadog-ci-rb/issues/15
29
38
  [#20]: https://github.com/DataDog/datadog-ci-rb/issues/20
30
39
  [#28]: https://github.com/DataDog/datadog-ci-rb/issues/28
40
+ [#31]: https://github.com/DataDog/datadog-ci-rb/issues/31
data/README.md CHANGED
@@ -1,5 +1,6 @@
1
1
  # Datadog CI Visibility for Ruby
2
2
 
3
+ [![Gem Version](https://badge.fury.io/rb/datadog-ci.svg)](https://badge.fury.io/rb/datadog-ci)
3
4
  [![codecov](https://codecov.io/gh/DataDog/datadog-ci-rb/branch/main/graph/badge.svg)](https://app.codecov.io/gh/DataDog/datadog-ci-rb/branch/main)
4
5
  [![CircleCI](https://dl.circleci.com/status-badge/img/gh/DataDog/datadog-ci-rb/tree/main.svg?style=svg)](https://dl.circleci.com/status-badge/redirect/gh/DataDog/datadog-ci-rb/tree/main)
5
6
 
@@ -1,5 +1,8 @@
1
1
  # frozen_string_literal: true
2
2
 
3
+ require "datadog/tracing/contrib"
4
+ require "datadog/tracing/contrib/integration"
5
+
3
6
  require_relative "configuration/settings"
4
7
  require_relative "patcher"
5
8
 
@@ -1,5 +1,8 @@
1
1
  # frozen_string_literal: true
2
2
 
3
+ require "datadog/tracing/contrib"
4
+ require "datadog/tracing/contrib/integration"
5
+
3
6
  require_relative "configuration/settings"
4
7
  require_relative "patcher"
5
8
 
@@ -1,5 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
+ require "datadog/tracing/contrib"
3
4
  require "datadog/tracing/contrib/integration"
4
5
 
5
6
  require_relative "configuration/settings"
@@ -1,6 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require_relative "../environment"
4
3
  require_relative "../git"
5
4
  require_relative "../../utils/git"
6
5
  require_relative "providers"
@@ -5,7 +5,7 @@ module Datadog
5
5
  module VERSION
6
6
  MAJOR = "0"
7
7
  MINOR = "1"
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
data/lib/datadog/ci.rb CHANGED
@@ -1,6 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require "ddtrace"
4
3
  require_relative "ci/version"
5
4
 
6
5
  require "datadog/core"
@@ -1,16 +1,16 @@
1
1
  module Datadog
2
2
  module CI
3
3
  module VERSION
4
- MAJOR: "0"
5
- MINOR: "1"
6
- PATCH: "0"
4
+ MAJOR: String
5
+ MINOR: String
6
+ PATCH: String
7
7
  PRE: String?
8
8
  BUILD: String?
9
9
 
10
10
  STRING: String
11
11
 
12
- MINIMUM_RUBY_VERSION: "2.1.0"
13
- MAXIMUM_RUBY_VERSION: "3.4"
12
+ MINIMUM_RUBY_VERSION: String
13
+ MAXIMUM_RUBY_VERSION: String
14
14
  end
15
15
  end
16
16
  end
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: 0.1.0
4
+ version: 0.1.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: 2023-09-13 00:00:00.000000000 Z
11
+ date: 2023-09-14 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: |2
14
14
  datadog-ci is a Datadog's CI visibility library for Ruby. It traces