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: 5015100d46cc0f99c590360df33781cc842d904c34bac8bb03775bcb92034211
4
- data.tar.gz: 16dae74e81ea06bc994c0f974a963be0daed52a209b4db2dc6c2388f6e8f88be
3
+ metadata.gz: 2ee94c6575126480273567752f084342cb62ce26eec34a2113ace620db38089a
4
+ data.tar.gz: d33e9db5196fce7bd7d25634bb82186b41c8fa2df823c3f2c79828c797bbb036
5
5
  SHA512:
6
- metadata.gz: 4afdb500fe0423832111b88a75554bb271ba5c478a4dbd7786c054e8110b69cb2f0903f1198a0fc90cf76c9d5b51a5a2bb24054ce0d54069b51a61f299acaa52
7
- data.tar.gz: bdd7284be3c68c61791735fe2ab695dccc74a926a4bc2d91ca322330cb96716056093cf7b27f3037df45cfac7660bf8e19f6e94aec5e2c65cc7eef48550ef939
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
- gem_version < Gem::Version.new('3.0.0')
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|
@@ -7,7 +7,7 @@
7
7
  module OpenTelemetry
8
8
  module Instrumentation
9
9
  module GraphQL
10
- VERSION = '0.22.0'
10
+ VERSION = '0.24.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-graphql
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.22.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-01-27 00:00:00.000000000 Z
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.22.0/file/CHANGELOG.md
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.22.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: