apollo-federation 3.6.3 → 3.6.5

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: 1efc645c70a3c45df82674b36d9493fb0e42d0b95374864f9874176328aa75cf
4
- data.tar.gz: 00d3b0d231e1224f73c98683ad77aca42857f1e932cf4e75e44d85a089c5edc0
3
+ metadata.gz: 692e5c372afac970c9f5a9e591cf9ad1857a5ff40d2e40b746dccc05a0ce9bd4
4
+ data.tar.gz: 18bb8ee23a572b5e6f64c4ec9cda084ccedaa5b43832887f04872e1c1344b903
5
5
  SHA512:
6
- metadata.gz: a83a211f72274fd05a5ac4dbfc056bda9f664eed387820dd71e27b7e4829aa91857ab59ab54db834c6e65dcbad17b9cfdde53efa56d0f4ab685e483def2bbe61
7
- data.tar.gz: 1453d0e1e2a6b9d877db833159a1636a34d1ae01d7302fe4e3252cd2ba94c1e2aef88ee9b58012b32c4ba4961e4f0029ded9be5f159549776f3f51cd4dc73022
6
+ metadata.gz: 4473e76ef48a7d9051b276943a006f82c6dc5383ec8aeab8bdb29459644e24d3f7ad15cf93495f190740c8f2975d629ffcf270e2585a8ac7c2517c75804f7b12
7
+ data.tar.gz: 4de1d6d1da82d76b85577e2da70c4301607ab4854d6cb7076f1dd88550fb7ca342930a0a3d5dd91999c6652c5551b22efac532fd301cbe81925ed2f0d5dce54e
data/CHANGELOG.md CHANGED
@@ -1,3 +1,17 @@
1
+ ## [3.6.5](https://github.com/Gusto/apollo-federation-ruby/compare/v3.6.4...v3.6.5) (2023-04-25)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **tracer:** add support for multiplex ([#243](https://github.com/Gusto/apollo-federation-ruby/issues/243)) ([c4f2eae](https://github.com/Gusto/apollo-federation-ruby/commit/c4f2eaed0b283c188f2fb932d5308dd3240bb2ec))
7
+
8
+ ## [3.6.4](https://github.com/Gusto/apollo-federation-ruby/compare/v3.6.3...v3.6.4) (2023-04-19)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * inherit Query type from schema superclass ([#241](https://github.com/Gusto/apollo-federation-ruby/issues/241)) ([0efb37e](https://github.com/Gusto/apollo-federation-ruby/commit/0efb37e2c2b14fc7ed99c695f35ed48d363d7695))
14
+
1
15
  ## [3.6.3](https://github.com/Gusto/apollo-federation-ruby/compare/v3.6.2...v3.6.3) (2023-04-12)
2
16
 
3
17
 
@@ -46,7 +46,7 @@ module ApolloFederation
46
46
  @orig_query_object = new_query_object
47
47
  else
48
48
  if !@federation_query_object
49
- @federation_query_object = federation_query(@orig_query_object)
49
+ @federation_query_object = federation_query(original_query)
50
50
  @federation_query_object.define_entities_field(schema_entities)
51
51
 
52
52
  super(@federation_query_object)
@@ -58,6 +58,10 @@ module ApolloFederation
58
58
 
59
59
  private
60
60
 
61
+ def original_query
62
+ @orig_query_object || find_inherited_value(:original_query)
63
+ end
64
+
61
65
  def federation_2_prefix
62
66
  federation_namespace = ", as: \"#{link_namespace}\"" if link_namespace != DEFAULT_LINK_NAMESPACE
63
67
 
@@ -83,7 +83,19 @@ module ApolloFederation
83
83
  result = block.call
84
84
 
85
85
  query = data.fetch(:query)
86
- return result unless query.context && query.context[:tracing_enabled]
86
+ multiplex = data.fetch(:multiplex)
87
+
88
+ if query
89
+ record_trace_end_time(query)
90
+ elsif multiplex
91
+ multiplex.queries.each { |q| record_trace_end_time(q) }
92
+ end
93
+
94
+ result
95
+ end
96
+
97
+ def self.record_trace_end_time(query)
98
+ return unless query.context && query.context[:tracing_enabled]
87
99
 
88
100
  trace = query.context.namespace(ApolloFederation::Tracing::KEY)
89
101
 
@@ -91,8 +103,6 @@ module ApolloFederation
91
103
  end_time: Time.now.utc,
92
104
  end_time_nanos: Process.clock_gettime(Process::CLOCK_MONOTONIC, :nanosecond),
93
105
  )
94
-
95
- result
96
106
  end
97
107
 
98
108
  # Step 2:
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ApolloFederation
4
- VERSION = '3.6.3'
4
+ VERSION = '3.6.5'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: apollo-federation
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.6.3
4
+ version: 3.6.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Noa Elad
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2023-04-12 00:00:00.000000000 Z
12
+ date: 2023-04-25 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: graphql