opentelemetry-instrumentation-concurrent_ruby 0.8.0 → 0.13.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 +4 -4
- data/CHANGELOG.md +22 -0
- data/LICENSE +1 -1
- data/README.md +1 -1
- data/lib/opentelemetry-instrumentation-concurrent_ruby.rb +1 -1
- data/lib/opentelemetry/instrumentation.rb +1 -1
- data/lib/opentelemetry/instrumentation/concurrent_ruby.rb +1 -1
- data/lib/opentelemetry/instrumentation/concurrent_ruby/context_composite_executor_service.rb +1 -1
- data/lib/opentelemetry/instrumentation/concurrent_ruby/instrumentation.rb +1 -1
- data/lib/opentelemetry/instrumentation/concurrent_ruby/patches/future.rb +1 -1
- data/lib/opentelemetry/instrumentation/concurrent_ruby/version.rb +2 -2
- metadata +7 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d5171ff75801c0cb5e7804d470a00fe8d4e4d8bbb5c9ad171f5efe82684e1f01
|
|
4
|
+
data.tar.gz: 14b7ed1d9842a39c269753b03cb70c88707b0536ab51ccd75d0ba1d70624b7c3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 51fa45a00848831be400bc7977bd0354f1632bc5838b6d23f4aaa435834907148fba525fdd07ecb7a615c4e6fd89ebef23f34b34646a9db2920fa7c3efa949ab
|
|
7
|
+
data.tar.gz: d6dea1d1875fa03ec5f63e05d3050c71653e3d09dce2294d0ce2321472be8b2eeb8cba8e30ffb67c7d4e20ccaaf9b9e28dbe5595c59eaa7a888e638182291935
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
# Release History: opentelemetry-instrumentation-concurrent_ruby
|
|
2
2
|
|
|
3
|
+
### v0.13.0 / 2021-01-29
|
|
4
|
+
|
|
5
|
+
* (No significant changes)
|
|
6
|
+
|
|
7
|
+
### v0.12.0 / 2020-12-24
|
|
8
|
+
|
|
9
|
+
* (No significant changes)
|
|
10
|
+
|
|
11
|
+
### v0.11.0 / 2020-12-11
|
|
12
|
+
|
|
13
|
+
* FIXED: Copyright comments to not reference year
|
|
14
|
+
|
|
15
|
+
### v0.10.0 / 2020-12-03
|
|
16
|
+
|
|
17
|
+
* (No significant changes)
|
|
18
|
+
|
|
19
|
+
### v0.9.0 / 2020-11-27
|
|
20
|
+
|
|
21
|
+
* BREAKING CHANGE: Add timeout for force_flush and shutdown
|
|
22
|
+
|
|
23
|
+
* ADDED: Add timeout for force_flush and shutdown
|
|
24
|
+
|
|
3
25
|
### v0.8.0 / 2020-10-27
|
|
4
26
|
|
|
5
27
|
* BREAKING CHANGE: Move context/span methods to Trace module
|
data/LICENSE
CHANGED
|
@@ -186,7 +186,7 @@
|
|
|
186
186
|
same "printed page" as the copyright notice for easier
|
|
187
187
|
identification within third-party archives.
|
|
188
188
|
|
|
189
|
-
Copyright
|
|
189
|
+
Copyright The OpenTelemetry Authors
|
|
190
190
|
|
|
191
191
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
192
192
|
you may not use this file except in compliance with the License.
|
data/README.md
CHANGED
|
@@ -43,7 +43,7 @@ Apache 2.0 license. See [LICENSE][license-github] for more information.
|
|
|
43
43
|
[concurrent-ruby-home]: https://github.com/ruby-concurrency/concurrent-ruby
|
|
44
44
|
[bundler-home]: https://bundler.io
|
|
45
45
|
[repo-github]: https://github.com/open-telemetry/opentelemetry-ruby
|
|
46
|
-
[license-github]: https://github.com/open-telemetry/opentelemetry-ruby/blob/
|
|
46
|
+
[license-github]: https://github.com/open-telemetry/opentelemetry-ruby/blob/main/LICENSE
|
|
47
47
|
[ruby-sig]: https://github.com/open-telemetry/community#ruby-sig
|
|
48
48
|
[community-meetings]: https://github.com/open-telemetry/community#community-meetings
|
|
49
49
|
[ruby-gitter]: https://gitter.im/open-telemetry/opentelemetry-ruby
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
|
-
# Copyright
|
|
3
|
+
# Copyright The OpenTelemetry Authors
|
|
4
4
|
#
|
|
5
5
|
# SPDX-License-Identifier: Apache-2.0
|
|
6
6
|
|
|
7
7
|
module OpenTelemetry
|
|
8
8
|
module Instrumentation
|
|
9
9
|
module ConcurrentRuby
|
|
10
|
-
VERSION = '0.
|
|
10
|
+
VERSION = '0.13.0'
|
|
11
11
|
end
|
|
12
12
|
end
|
|
13
13
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: opentelemetry-instrumentation-concurrent_ruby
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.13.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- OpenTelemetry Authors
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2021-01-30 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: opentelemetry-api
|
|
@@ -16,14 +16,14 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - "~>"
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: 0.
|
|
19
|
+
version: 0.13.0
|
|
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: 0.
|
|
26
|
+
version: 0.13.0
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: appraisal
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -172,10 +172,10 @@ homepage: https://github.com/open-telemetry/opentelemetry-ruby
|
|
|
172
172
|
licenses:
|
|
173
173
|
- Apache-2.0
|
|
174
174
|
metadata:
|
|
175
|
-
changelog_uri: https://open-telemetry.github.io/opentelemetry-ruby/opentelemetry-instrumentation-concurrent_ruby/v0.
|
|
176
|
-
source_code_uri: https://github.com/open-telemetry/opentelemetry-ruby/tree/
|
|
175
|
+
changelog_uri: https://open-telemetry.github.io/opentelemetry-ruby/opentelemetry-instrumentation-concurrent_ruby/v0.13.0/file.CHANGELOG.html
|
|
176
|
+
source_code_uri: https://github.com/open-telemetry/opentelemetry-ruby/tree/main/instrumentation/concurrent_ruby
|
|
177
177
|
bug_tracker_uri: https://github.com/open-telemetry/opentelemetry-ruby/issues
|
|
178
|
-
documentation_uri: https://open-telemetry.github.io/opentelemetry-ruby/opentelemetry-instrumentation-concurrent_ruby/v0.
|
|
178
|
+
documentation_uri: https://open-telemetry.github.io/opentelemetry-ruby/opentelemetry-instrumentation-concurrent_ruby/v0.13.0
|
|
179
179
|
post_install_message:
|
|
180
180
|
rdoc_options: []
|
|
181
181
|
require_paths:
|