splunk-otel 1.1.3 → 1.3.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/cla.yml +30 -0
- data/.github/workflows/main.yml +9 -12
- data/.gitignore +1 -0
- data/.gitlab-ci.yml +2 -2
- data/CHANGELOG.md +8 -0
- data/README.md +14 -7
- data/docs/README.md +1 -1
- data/docs/advanced-config.md +1 -1
- data/examples/basic/console.rb +0 -2
- data/examples/rails-7-barebones/Gemfile +1 -1
- data/lib/splunk/otel/instrumentation/action_pack.rb +2 -2
- data/lib/splunk/otel/instrumentation/rack/middleware.rb +1 -5
- data/lib/splunk/otel/instrumentation/rack.rb +1 -1
- data/lib/splunk/otel/version.rb +1 -1
- data/splunk-otel.gemspec +15 -14
- metadata +43 -54
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 91517c214bad446f0bede3d15f9937b5de71a6649b3a11394da002781d668782
|
4
|
+
data.tar.gz: 6a7343231fda67513c493e5253e743d16da9eeba4ba4f5b199aca61715a05403
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c184d6ead2389749537f2b6a47bd4fc036b72b120a40e6feb986dd109bb0e7df7b3645e533914b02b2d14265cd3ec27c9cab9c8e4eaf3e53d433bbba95893632
|
7
|
+
data.tar.gz: b71b354b4c535294b7e57a8e22f5d2da7500b91eafcfe475c1ac762a3044beae0b16791d6062cb16be1e8817c2ceef4a33d70bcddf2d6c576136e8a5a3345d21
|
@@ -0,0 +1,30 @@
|
|
1
|
+
name: "CLA Assistant"
|
2
|
+
on:
|
3
|
+
issue_comment:
|
4
|
+
types: [created]
|
5
|
+
pull_request_target:
|
6
|
+
types: [opened, closed, synchronize]
|
7
|
+
|
8
|
+
permissions:
|
9
|
+
actions: write
|
10
|
+
contents: read
|
11
|
+
pull-requests: write
|
12
|
+
statuses: write
|
13
|
+
|
14
|
+
jobs:
|
15
|
+
ContributorLicenseAgreement:
|
16
|
+
runs-on: ubuntu-latest
|
17
|
+
steps:
|
18
|
+
- name: "CLA Assistant"
|
19
|
+
if: (github.event.comment.body == 'recheck' || github.event.comment.body == 'I have read the CLA Document and I hereby sign the CLA') || github.event_name == 'pull_request_target'
|
20
|
+
uses: cla-assistant/github-action@v2.3.1
|
21
|
+
env:
|
22
|
+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
23
|
+
PERSONAL_ACCESS_TOKEN: ${{ secrets.PAT_CLATOOL }}
|
24
|
+
with:
|
25
|
+
remote-organization-name: splunk
|
26
|
+
remote-repository-name: cla-agreement
|
27
|
+
branch: main
|
28
|
+
path-to-signatures: signatures/version1/cla.json
|
29
|
+
path-to-document: https://github.com/splunk/cla-agreement/blob/main/CLA.md
|
30
|
+
allowlist: dependabot[bot]
|
data/.github/workflows/main.yml
CHANGED
@@ -15,28 +15,25 @@ jobs:
|
|
15
15
|
rubygems: [
|
16
16
|
{ ruby: "3.2", appraisal: "rails-7.0" },
|
17
17
|
{ ruby: "3.1", appraisal: "rails-7.0" },
|
18
|
-
{ ruby: "3.0", appraisal: "rails-7.0" }
|
19
|
-
{ ruby: "2.7", appraisal: "rails-7.0" },
|
20
|
-
{ ruby: "2.7", appraisal: "rails-6.1" },
|
21
|
-
{ ruby: "2.6", appraisal: "rails-6.1" }
|
18
|
+
{ ruby: "3.0", appraisal: "rails-7.0" }
|
22
19
|
]
|
23
20
|
|
24
21
|
steps:
|
25
|
-
- uses: actions/checkout@
|
22
|
+
- uses: actions/checkout@v4.1.1
|
26
23
|
|
27
24
|
- name: Run Collector
|
28
25
|
run: docker-compose up -d
|
29
26
|
|
30
27
|
- name: Set up Ruby ${{ matrix.rubygems.ruby }}
|
31
|
-
uses: ruby/setup-ruby@v1.
|
28
|
+
uses: ruby/setup-ruby@v1.172.0
|
32
29
|
with:
|
33
30
|
ruby-version: ${{ matrix.rubygems.ruby }}
|
34
31
|
- name: Apply RubyGems fixes
|
35
32
|
run: gem update --system
|
36
33
|
- name: Ensure we have modern bundler
|
37
|
-
run: gem install bundler -v '
|
34
|
+
run: gem install bundler -v '2.4.21'
|
38
35
|
- name: Install dependencies
|
39
|
-
run: bundle _2.
|
36
|
+
run: bundle _2.4.21_
|
40
37
|
- name: Verify nokogiri
|
41
38
|
run: bundle exec nokogiri -v
|
42
39
|
- name: Install appraisal dependencies
|
@@ -46,7 +43,7 @@ jobs:
|
|
46
43
|
- name: Run tests
|
47
44
|
run: bundle exec appraisal ${{ matrix.rubygems.appraisal }} rake test
|
48
45
|
- name: Upload coverage to Codecov
|
49
|
-
uses: codecov/codecov-action@
|
46
|
+
uses: codecov/codecov-action@v4.1.0
|
50
47
|
- name: Run basic example e2e test
|
51
48
|
run: ruby console.rb
|
52
49
|
working-directory: ./examples/basic/
|
@@ -56,7 +53,7 @@ jobs:
|
|
56
53
|
test-e2e-rails-7-barebones:
|
57
54
|
runs-on: ubuntu-20.04
|
58
55
|
steps:
|
59
|
-
- uses: actions/checkout@
|
56
|
+
- uses: actions/checkout@v4.1.1
|
60
57
|
- name: Run e2e tests via Docker
|
61
58
|
working-directory: ./examples/rails-7-barebones
|
62
59
|
run: docker-compose up --build --exit-code-from tester
|
@@ -64,8 +61,8 @@ jobs:
|
|
64
61
|
linkChecker:
|
65
62
|
runs-on: ubuntu-20.04
|
66
63
|
steps:
|
67
|
-
- uses: actions/checkout@
|
64
|
+
- uses: actions/checkout@v4.1.1
|
68
65
|
- name: Link Checker
|
69
|
-
uses: lycheeverse/lychee-action@v1.
|
66
|
+
uses: lycheeverse/lychee-action@v1.9.3
|
70
67
|
with:
|
71
68
|
fail: true
|
data/.gitignore
CHANGED
data/.gitlab-ci.yml
CHANGED
data/CHANGELOG.md
CHANGED
@@ -7,6 +7,14 @@ and this repository adheres to [Semantic Versioning](https://semver.org/spec/v2.
|
|
7
7
|
|
8
8
|
## Unreleased
|
9
9
|
|
10
|
+
## v1.3.0 - 2024-03-15
|
11
|
+
|
12
|
+
- Minor dependency updates.
|
13
|
+
|
14
|
+
## v1.2.0 - 2023-11-28
|
15
|
+
|
16
|
+
- Uprade to OpenTelemetry API 1.2 and SDK 1.3. Drop support for Ruby 2. [#186](https://github.com/signalfx/splunk-otel-ruby/pull/186)
|
17
|
+
|
10
18
|
## v1.1.3 - 2023-05-24
|
11
19
|
|
12
20
|
- No changes.
|
data/README.md
CHANGED
@@ -1,3 +1,10 @@
|
|
1
|
+
> ⚠️ Deprecation Notice
|
2
|
+
|
3
|
+
> The Splunk Distribution of OpenTelemetry Ruby is deprecated as of March 15, 2024 and will reach end of Support on March 15, 2025.
|
4
|
+
> Until then, only critical security fixes and bug fixes will be provided. After the date, this repository will be archived and no longer maintained.
|
5
|
+
> New customers instrumenting Ruby applications should use the [OpenTelemetry Distribution of Ruby](https://github.com/open-telemetry/opentelemetry-ruby).
|
6
|
+
> Existing customers should consider migrating to [OpenTelemetry Distribution of Ruby](https://github.com/open-telemetry/opentelemetry-ruby) which offers similar capabilities. To learn how to instrument Ruby code see the [Splunk documentation](https://docs.splunk.com/observability/en/gdi/get-data-in/application/ruby/get-started-ruby.html).
|
7
|
+
|
1
8
|
# Splunk Distribution of OpenTelemetry Ruby
|
2
9
|
|
3
10
|
<p align="left">
|
@@ -24,26 +31,26 @@ This distribution comes with the following defaults:
|
|
24
31
|
- Unlimited default limits for [configuration options](#trace-configuration) to
|
25
32
|
support full-fidelity traces.
|
26
33
|
|
27
|
-
If you're using the SignalFx Tracing Library for Ruby and want to migrate to the Splunk Distribution of OpenTelemetry Ruby, see [Migrate from the SignalFx Tracing Library for Ruby](https://
|
34
|
+
If you're using the SignalFx Tracing Library for Ruby and want to migrate to the Splunk Distribution of OpenTelemetry Ruby, see [Migrate from the SignalFx Tracing Library for Ruby](https://docs.splunk.com/observability/en/gdi/get-data-in/application/ruby/distro/troubleshooting/migrate-signalfx-ruby-agent-to-otel.html) in the official documentation.
|
28
35
|
|
29
36
|
## Requirements
|
30
37
|
|
31
|
-
This distribution requires Ruby version
|
38
|
+
This distribution requires Ruby version 3.0 or higher.
|
32
39
|
|
33
40
|
## Get started
|
34
41
|
|
35
|
-
For complete instructions on how to get started with the Splunk Distribution of OpenTelemetry Ruby, see [Instrument a Ruby application for Splunk Observability Cloud](https://
|
42
|
+
For complete instructions on how to get started with the Splunk Distribution of OpenTelemetry Ruby, see [Instrument a Ruby application for Splunk Observability Cloud](https://docs.splunk.com/observability/en/gdi/get-data-in/application/ruby/distro/instrumentation/instrument-ruby-application.html) in the official documentation.
|
36
43
|
|
37
44
|
## Advanced configuration
|
38
45
|
|
39
|
-
See [Configure the Ruby agent for Splunk Observability Cloud](https://
|
46
|
+
See [Configure the Ruby agent for Splunk Observability Cloud](https://docs.splunk.com/observability/en/gdi/get-data-in/application/ruby/distro/configuration/advanced-ruby-otel-configuration.html) in the official documentation.
|
40
47
|
|
41
48
|
## Correlate traces and logs
|
42
49
|
|
43
50
|
You can add trace metadata to logs using the OpenTelemetry trace API. Trace
|
44
51
|
metadata lets you explore logs in Splunk Observability Cloud.
|
45
52
|
|
46
|
-
See [Connect Ruby trace data with logs for Splunk Observability Cloud](https://
|
53
|
+
See [Connect Ruby trace data with logs for Splunk Observability Cloud](https://docs.splunk.com/observability/en/gdi/get-data-in/application/ruby/distro/instrumentation/connect-traces-logs.html) in the official documentation.
|
47
54
|
|
48
55
|
## Library instrumentation
|
49
56
|
|
@@ -56,7 +63,7 @@ on [rubygems.org](https://rubygems.org).
|
|
56
63
|
|
57
64
|
## Manual instrumentation
|
58
65
|
|
59
|
-
See [Manually instrument Ruby applications for Splunk Observability Cloud](https://
|
66
|
+
See [Manually instrument Ruby applications for Splunk Observability Cloud](https://docs.splunk.com/observability/en/gdi/get-data-in/application/ruby/distro/instrumentation/ruby-manual-instrumentation.html) for instructions on how to manually instrument Ruby applications.
|
60
67
|
|
61
68
|
## Configure for use with Smart Agent
|
62
69
|
|
@@ -68,7 +75,7 @@ If the `SPLUNK_REALM` or the `OTEL_EXPORTER_JAEGER_ENDPOINT` environmental varia
|
|
68
75
|
|
69
76
|
## Troubleshooting
|
70
77
|
|
71
|
-
For troubleshooting information, see the [Troubleshoot Ruby instrumentation for Splunk Observability Cloud](https://
|
78
|
+
For troubleshooting information, see the [Troubleshoot Ruby instrumentation for Splunk Observability Cloud](https://docs.splunk.com/observability/en/gdi/get-data-in/application/ruby/distro/troubleshooting/common-ruby-troubleshooting.html) in the official documentation.
|
72
79
|
|
73
80
|
# License
|
74
81
|
|
data/docs/README.md
CHANGED
@@ -1 +1 @@
|
|
1
|
-
The documentation for this distribution can be found in the [Splunk Observability Cloud official documentation](https://
|
1
|
+
The documentation for this distribution can be found in the [Splunk Observability Cloud official documentation](https://docs.splunk.com/observability/en/gdi/get-data-in/application/ruby/distro/get-started.html).
|
data/docs/advanced-config.md
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
> The official Splunk documentation for this page is [Configure the Splunk Distribution of OTel Ruby](https://
|
1
|
+
> The official Splunk documentation for this page is [Configure the Splunk Distribution of OTel Ruby](https://docs.splunk.com/observability/en/gdi/get-data-in/application/ruby/distro/configuration/advanced-ruby-otel-configuration.html).
|
2
2
|
>
|
3
3
|
> For instructions on how to contribute to the docs, see [CONTRIBUTING.md](../CONTRIBUTING.md#documentation).
|
4
4
|
|
data/examples/basic/console.rb
CHANGED
@@ -7,12 +7,10 @@ gemfile do
|
|
7
7
|
source "https://rubygems.org"
|
8
8
|
|
9
9
|
gem "splunk-otel", path: "../../"
|
10
|
-
gem "opentelemetry-exporter-otlp", "~> 0.21.0"
|
11
10
|
end
|
12
11
|
|
13
12
|
require "splunk/otel"
|
14
13
|
require "splunk/otel/logging"
|
15
|
-
require "opentelemetry/exporter/otlp"
|
16
14
|
require "net/http"
|
17
15
|
require "json"
|
18
16
|
|
@@ -10,7 +10,7 @@ gem "puma"
|
|
10
10
|
gem "rails", "~> 7.0.3"
|
11
11
|
|
12
12
|
# instrumentation
|
13
|
-
gem "opentelemetry-instrumentation-rails", "~> 0.
|
13
|
+
gem "opentelemetry-instrumentation-rails", "~> 0.28.1"
|
14
14
|
gem "splunk-otel", path: ENV.fetch("SPLUNK_OTEL_LOCATION", "../../")
|
15
15
|
|
16
16
|
# tests
|
@@ -15,11 +15,7 @@ module Splunk
|
|
15
15
|
def call(env)
|
16
16
|
status, headers, body = @app.call(env)
|
17
17
|
|
18
|
-
headers = if Splunk::Otel.trace_response_header_enabled
|
19
|
-
Splunk::Otel::Common.rum_headers(headers)
|
20
|
-
else
|
21
|
-
headers
|
22
|
-
end
|
18
|
+
headers = Splunk::Otel::Common.rum_headers(headers) if Splunk::Otel.trace_response_header_enabled
|
23
19
|
|
24
20
|
[status, headers, body]
|
25
21
|
end
|
data/lib/splunk/otel/version.rb
CHANGED
data/splunk-otel.gemspec
CHANGED
@@ -25,27 +25,28 @@ Gem::Specification.new do |spec|
|
|
25
25
|
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
|
26
26
|
spec.require_paths = ["lib"]
|
27
27
|
|
28
|
-
spec.add_dependency "opentelemetry-api", "~> 1.
|
29
|
-
|
30
|
-
spec.add_dependency "opentelemetry-exporter-
|
31
|
-
spec.add_dependency "opentelemetry-
|
32
|
-
spec.add_dependency "opentelemetry-
|
33
|
-
spec.add_dependency "opentelemetry-
|
28
|
+
spec.add_dependency "opentelemetry-api", "~> 1.2"
|
29
|
+
|
30
|
+
spec.add_dependency "opentelemetry-exporter-jaeger", "~> 0.23.0"
|
31
|
+
spec.add_dependency "opentelemetry-exporter-otlp", "~> 0.26.1"
|
32
|
+
spec.add_dependency "opentelemetry-instrumentation-base", "~> 0.22.2"
|
33
|
+
spec.add_dependency "opentelemetry-propagator-b3", "~> 0.21.0"
|
34
|
+
spec.add_dependency "opentelemetry-sdk", ">= 1.3", "< 1.5"
|
34
35
|
|
35
36
|
# development tooling
|
36
|
-
spec.add_development_dependency "appraisal", "2.
|
37
|
-
spec.add_development_dependency "bundler", "2.
|
38
|
-
spec.add_development_dependency "rake", "13.0
|
39
|
-
spec.add_development_dependency "rubocop", "1.
|
37
|
+
spec.add_development_dependency "appraisal", "2.5.0"
|
38
|
+
spec.add_development_dependency "bundler", "~> 2.4.21"
|
39
|
+
spec.add_development_dependency "rake", "13.1.0"
|
40
|
+
spec.add_development_dependency "rubocop", "1.62.1"
|
40
41
|
spec.add_development_dependency "rubocop-rake", "0.6.0"
|
41
42
|
spec.add_development_dependency "simplecov", "0.22.0"
|
42
43
|
spec.add_development_dependency "simplecov-cobertura", "2.1.0"
|
43
|
-
spec.add_development_dependency "test-unit", "3.
|
44
|
-
spec.add_development_dependency "tzinfo-data", "1.
|
44
|
+
spec.add_development_dependency "test-unit", "3.6.2"
|
45
|
+
spec.add_development_dependency "tzinfo-data", "1.2024.1"
|
45
46
|
|
46
47
|
# development dependencies for integration testing
|
47
|
-
spec.add_development_dependency "opentelemetry-instrumentation-action_pack", "~> 0.
|
48
|
-
spec.add_development_dependency "opentelemetry-instrumentation-rack", "~> 0.
|
48
|
+
spec.add_development_dependency "opentelemetry-instrumentation-action_pack", "~> 0.9.0"
|
49
|
+
spec.add_development_dependency "opentelemetry-instrumentation-rack", "~> 0.24.0"
|
49
50
|
spec.add_development_dependency "rack", "~> 2.2"
|
50
51
|
spec.add_development_dependency "rack-test", "~> 2.0"
|
51
52
|
spec.add_development_dependency "rails"
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: splunk-otel
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Splunk
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-03-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: opentelemetry-api
|
@@ -16,158 +16,146 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '1.
|
19
|
+
version: '1.2'
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: '1.
|
26
|
+
version: '1.2'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: opentelemetry-exporter-jaeger
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
|
-
- - "
|
32
|
-
- !ruby/object:Gem::Version
|
33
|
-
version: 0.20.1
|
34
|
-
- - "<"
|
31
|
+
- - "~>"
|
35
32
|
- !ruby/object:Gem::Version
|
36
33
|
version: 0.23.0
|
37
34
|
type: :runtime
|
38
35
|
prerelease: false
|
39
36
|
version_requirements: !ruby/object:Gem::Requirement
|
40
37
|
requirements:
|
41
|
-
- - "
|
42
|
-
- !ruby/object:Gem::Version
|
43
|
-
version: 0.20.1
|
44
|
-
- - "<"
|
38
|
+
- - "~>"
|
45
39
|
- !ruby/object:Gem::Version
|
46
40
|
version: 0.23.0
|
47
41
|
- !ruby/object:Gem::Dependency
|
48
42
|
name: opentelemetry-exporter-otlp
|
49
43
|
requirement: !ruby/object:Gem::Requirement
|
50
44
|
requirements:
|
51
|
-
- - "
|
52
|
-
- !ruby/object:Gem::Version
|
53
|
-
version: '0.21'
|
54
|
-
- - "<"
|
45
|
+
- - "~>"
|
55
46
|
- !ruby/object:Gem::Version
|
56
|
-
version:
|
47
|
+
version: 0.26.1
|
57
48
|
type: :runtime
|
58
49
|
prerelease: false
|
59
50
|
version_requirements: !ruby/object:Gem::Requirement
|
60
51
|
requirements:
|
61
|
-
- - "
|
62
|
-
- !ruby/object:Gem::Version
|
63
|
-
version: '0.21'
|
64
|
-
- - "<"
|
52
|
+
- - "~>"
|
65
53
|
- !ruby/object:Gem::Version
|
66
|
-
version:
|
54
|
+
version: 0.26.1
|
67
55
|
- !ruby/object:Gem::Dependency
|
68
56
|
name: opentelemetry-instrumentation-base
|
69
57
|
requirement: !ruby/object:Gem::Requirement
|
70
58
|
requirements:
|
71
59
|
- - "~>"
|
72
60
|
- !ruby/object:Gem::Version
|
73
|
-
version:
|
61
|
+
version: 0.22.2
|
74
62
|
type: :runtime
|
75
63
|
prerelease: false
|
76
64
|
version_requirements: !ruby/object:Gem::Requirement
|
77
65
|
requirements:
|
78
66
|
- - "~>"
|
79
67
|
- !ruby/object:Gem::Version
|
80
|
-
version:
|
68
|
+
version: 0.22.2
|
81
69
|
- !ruby/object:Gem::Dependency
|
82
70
|
name: opentelemetry-propagator-b3
|
83
71
|
requirement: !ruby/object:Gem::Requirement
|
84
72
|
requirements:
|
85
|
-
- - "
|
86
|
-
- !ruby/object:Gem::Version
|
87
|
-
version: 0.19.2
|
88
|
-
- - "<"
|
73
|
+
- - "~>"
|
89
74
|
- !ruby/object:Gem::Version
|
90
75
|
version: 0.21.0
|
91
76
|
type: :runtime
|
92
77
|
prerelease: false
|
93
78
|
version_requirements: !ruby/object:Gem::Requirement
|
94
79
|
requirements:
|
95
|
-
- - "
|
96
|
-
- !ruby/object:Gem::Version
|
97
|
-
version: 0.19.2
|
98
|
-
- - "<"
|
80
|
+
- - "~>"
|
99
81
|
- !ruby/object:Gem::Version
|
100
82
|
version: 0.21.0
|
101
83
|
- !ruby/object:Gem::Dependency
|
102
84
|
name: opentelemetry-sdk
|
103
85
|
requirement: !ruby/object:Gem::Requirement
|
104
86
|
requirements:
|
105
|
-
- - "
|
87
|
+
- - ">="
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '1.3'
|
90
|
+
- - "<"
|
106
91
|
- !ruby/object:Gem::Version
|
107
|
-
version: '1.
|
92
|
+
version: '1.5'
|
108
93
|
type: :runtime
|
109
94
|
prerelease: false
|
110
95
|
version_requirements: !ruby/object:Gem::Requirement
|
111
96
|
requirements:
|
112
|
-
- - "
|
97
|
+
- - ">="
|
98
|
+
- !ruby/object:Gem::Version
|
99
|
+
version: '1.3'
|
100
|
+
- - "<"
|
113
101
|
- !ruby/object:Gem::Version
|
114
|
-
version: '1.
|
102
|
+
version: '1.5'
|
115
103
|
- !ruby/object:Gem::Dependency
|
116
104
|
name: appraisal
|
117
105
|
requirement: !ruby/object:Gem::Requirement
|
118
106
|
requirements:
|
119
107
|
- - '='
|
120
108
|
- !ruby/object:Gem::Version
|
121
|
-
version: 2.
|
109
|
+
version: 2.5.0
|
122
110
|
type: :development
|
123
111
|
prerelease: false
|
124
112
|
version_requirements: !ruby/object:Gem::Requirement
|
125
113
|
requirements:
|
126
114
|
- - '='
|
127
115
|
- !ruby/object:Gem::Version
|
128
|
-
version: 2.
|
116
|
+
version: 2.5.0
|
129
117
|
- !ruby/object:Gem::Dependency
|
130
118
|
name: bundler
|
131
119
|
requirement: !ruby/object:Gem::Requirement
|
132
120
|
requirements:
|
133
|
-
- -
|
121
|
+
- - "~>"
|
134
122
|
- !ruby/object:Gem::Version
|
135
|
-
version: 2.
|
123
|
+
version: 2.4.21
|
136
124
|
type: :development
|
137
125
|
prerelease: false
|
138
126
|
version_requirements: !ruby/object:Gem::Requirement
|
139
127
|
requirements:
|
140
|
-
- -
|
128
|
+
- - "~>"
|
141
129
|
- !ruby/object:Gem::Version
|
142
|
-
version: 2.
|
130
|
+
version: 2.4.21
|
143
131
|
- !ruby/object:Gem::Dependency
|
144
132
|
name: rake
|
145
133
|
requirement: !ruby/object:Gem::Requirement
|
146
134
|
requirements:
|
147
135
|
- - '='
|
148
136
|
- !ruby/object:Gem::Version
|
149
|
-
version: 13.0
|
137
|
+
version: 13.1.0
|
150
138
|
type: :development
|
151
139
|
prerelease: false
|
152
140
|
version_requirements: !ruby/object:Gem::Requirement
|
153
141
|
requirements:
|
154
142
|
- - '='
|
155
143
|
- !ruby/object:Gem::Version
|
156
|
-
version: 13.0
|
144
|
+
version: 13.1.0
|
157
145
|
- !ruby/object:Gem::Dependency
|
158
146
|
name: rubocop
|
159
147
|
requirement: !ruby/object:Gem::Requirement
|
160
148
|
requirements:
|
161
149
|
- - '='
|
162
150
|
- !ruby/object:Gem::Version
|
163
|
-
version: 1.
|
151
|
+
version: 1.62.1
|
164
152
|
type: :development
|
165
153
|
prerelease: false
|
166
154
|
version_requirements: !ruby/object:Gem::Requirement
|
167
155
|
requirements:
|
168
156
|
- - '='
|
169
157
|
- !ruby/object:Gem::Version
|
170
|
-
version: 1.
|
158
|
+
version: 1.62.1
|
171
159
|
- !ruby/object:Gem::Dependency
|
172
160
|
name: rubocop-rake
|
173
161
|
requirement: !ruby/object:Gem::Requirement
|
@@ -216,56 +204,56 @@ dependencies:
|
|
216
204
|
requirements:
|
217
205
|
- - '='
|
218
206
|
- !ruby/object:Gem::Version
|
219
|
-
version: 3.
|
207
|
+
version: 3.6.2
|
220
208
|
type: :development
|
221
209
|
prerelease: false
|
222
210
|
version_requirements: !ruby/object:Gem::Requirement
|
223
211
|
requirements:
|
224
212
|
- - '='
|
225
213
|
- !ruby/object:Gem::Version
|
226
|
-
version: 3.
|
214
|
+
version: 3.6.2
|
227
215
|
- !ruby/object:Gem::Dependency
|
228
216
|
name: tzinfo-data
|
229
217
|
requirement: !ruby/object:Gem::Requirement
|
230
218
|
requirements:
|
231
219
|
- - '='
|
232
220
|
- !ruby/object:Gem::Version
|
233
|
-
version: 1.
|
221
|
+
version: 1.2024.1
|
234
222
|
type: :development
|
235
223
|
prerelease: false
|
236
224
|
version_requirements: !ruby/object:Gem::Requirement
|
237
225
|
requirements:
|
238
226
|
- - '='
|
239
227
|
- !ruby/object:Gem::Version
|
240
|
-
version: 1.
|
228
|
+
version: 1.2024.1
|
241
229
|
- !ruby/object:Gem::Dependency
|
242
230
|
name: opentelemetry-instrumentation-action_pack
|
243
231
|
requirement: !ruby/object:Gem::Requirement
|
244
232
|
requirements:
|
245
233
|
- - "~>"
|
246
234
|
- !ruby/object:Gem::Version
|
247
|
-
version: 0.
|
235
|
+
version: 0.9.0
|
248
236
|
type: :development
|
249
237
|
prerelease: false
|
250
238
|
version_requirements: !ruby/object:Gem::Requirement
|
251
239
|
requirements:
|
252
240
|
- - "~>"
|
253
241
|
- !ruby/object:Gem::Version
|
254
|
-
version: 0.
|
242
|
+
version: 0.9.0
|
255
243
|
- !ruby/object:Gem::Dependency
|
256
244
|
name: opentelemetry-instrumentation-rack
|
257
245
|
requirement: !ruby/object:Gem::Requirement
|
258
246
|
requirements:
|
259
247
|
- - "~>"
|
260
248
|
- !ruby/object:Gem::Version
|
261
|
-
version: 0.
|
249
|
+
version: 0.24.0
|
262
250
|
type: :development
|
263
251
|
prerelease: false
|
264
252
|
version_requirements: !ruby/object:Gem::Requirement
|
265
253
|
requirements:
|
266
254
|
- - "~>"
|
267
255
|
- !ruby/object:Gem::Version
|
268
|
-
version: 0.
|
256
|
+
version: 0.24.0
|
269
257
|
- !ruby/object:Gem::Dependency
|
270
258
|
name: rack
|
271
259
|
requirement: !ruby/object:Gem::Requirement
|
@@ -317,6 +305,7 @@ extra_rdoc_files: []
|
|
317
305
|
files:
|
318
306
|
- ".github/CODEOWNERS"
|
319
307
|
- ".github/dependabot.yml"
|
308
|
+
- ".github/workflows/cla.yml"
|
320
309
|
- ".github/workflows/main.yml"
|
321
310
|
- ".gitignore"
|
322
311
|
- ".gitlab-ci.yml"
|