opentelemetry-instrumentation-graphql 0.22.0 → 0.24.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2ee94c6575126480273567752f084342cb62ce26eec34a2113ace620db38089a
|
4
|
+
data.tar.gz: d33e9db5196fce7bd7d25634bb82186b41c8fa2df823c3f2c79828c797bbb036
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 88c902f56c4c01fd87c582e1ea2b95da47e6966dbd7ca69168c3fe71bf83fc73719fa878fcf7a8c07fe0175c206af2061e97ce030eb99054bab223d89e4d0ae2
|
7
|
+
data.tar.gz: d33e083ef2d3a7b017acffb548a0c26b7b1a99920e80b8ac1a58dd290fd1a91f41b498b8c3d3106e5f8d439317fe66b994686023ebeb62595ee9d4766c889609
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,17 @@
|
|
1
1
|
# Release History: opentelemetry-instrumentation-graphql
|
2
2
|
|
3
|
+
### v0.24.0 / 2023-03-15
|
4
|
+
|
5
|
+
* BREAKING CHANGE: Add support for GraphQL 2.0.19
|
6
|
+
|
7
|
+
* FIXED: Add support for GraphQL 2.0.19
|
8
|
+
|
9
|
+
### v0.23.0 / 2023-03-13
|
10
|
+
|
11
|
+
* BREAKING CHANGE: Lock graphql max version to 2.0.17
|
12
|
+
|
13
|
+
* FIXED: Lock graphql max version to 2.0.17
|
14
|
+
|
3
15
|
### v0.22.0 / 2023-01-27
|
4
16
|
|
5
17
|
* ADDED: Normalize GraphQL span names for easier aggregation analysis
|
@@ -12,7 +12,8 @@ module OpenTelemetry
|
|
12
12
|
# The Instrumentation class contains logic to detect and install the GraphQL instrumentation
|
13
13
|
class Instrumentation < OpenTelemetry::Instrumentation::Base
|
14
14
|
compatible do
|
15
|
-
|
15
|
+
Gem::Requirement.new('<= 2.0.17').satisfied_by?(gem_version) ||
|
16
|
+
Gem::Requirement.new('~> 2.0.19').satisfied_by?(gem_version)
|
16
17
|
end
|
17
18
|
|
18
19
|
install do |config|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: opentelemetry-instrumentation-graphql
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.24.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: 2023-
|
11
|
+
date: 2023-03-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: opentelemetry-api
|
@@ -233,10 +233,10 @@ homepage: https://github.com/open-telemetry/opentelemetry-ruby-contrib
|
|
233
233
|
licenses:
|
234
234
|
- Apache-2.0
|
235
235
|
metadata:
|
236
|
-
changelog_uri: https://rubydoc.info/gems/opentelemetry-instrumentation-graphql/0.
|
236
|
+
changelog_uri: https://rubydoc.info/gems/opentelemetry-instrumentation-graphql/0.24.0/file/CHANGELOG.md
|
237
237
|
source_code_uri: https://github.com/open-telemetry/opentelemetry-ruby-contrib/tree/main/instrumentation/graphql
|
238
238
|
bug_tracker_uri: https://github.com/open-telemetry/opentelemetry-ruby-contrib/issues
|
239
|
-
documentation_uri: https://rubydoc.info/gems/opentelemetry-instrumentation-graphql/0.
|
239
|
+
documentation_uri: https://rubydoc.info/gems/opentelemetry-instrumentation-graphql/0.24.0
|
240
240
|
post_install_message:
|
241
241
|
rdoc_options: []
|
242
242
|
require_paths:
|