apollo-tracing 1.3.0 → 1.4.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f642ccdc337b8af04807b5b5639cdc5f9ed12306
4
- data.tar.gz: d6dfab7dd75326d9b15e8983c21f086daed276f3
3
+ metadata.gz: 4f77c72b5f6cec9c886b294608b0cf8a0c57383f
4
+ data.tar.gz: 1cd49061cd02168774a36e0b7253b974e28a6f19
5
5
  SHA512:
6
- metadata.gz: b681d3c0857e78396bf44770a93d3a2110e0f497a0093a23ac830524a81b368f68d692d590164ba2e4525626b3c79a9d960e7bb01e2e65ee0557869d00c692f6
7
- data.tar.gz: 8967d41fe8fb42d8f4db56d91b8bf3385d9f14da0248c70ecf514dec122d45514d76e2a06f1521c71049b650708e6d682fc726b4c1c0c5fdc0a6b82499a081cd
6
+ metadata.gz: c4eacdd09e2c803776ece1a38aa99e6361cb6a33b6de0e88410875c4c64bad0fb9a65f2ee83f9add46e0f0bd5f7e08222472185a481d614c8167dad73c1863b8
7
+ data.tar.gz: 1cd5e328e1a48b658d49bfed63114a4d747fc2b575650f5a7ae6c7ac376e734f34ecf5015fe6ec18bfe413f2e2153cdadcfd30f17c0ef9b6cb3777e3ece4e8aa
@@ -8,10 +8,14 @@ one of the following labels: `Added`, `Changed`, `Deprecated`,
8
8
  to manage the versions of this gem so
9
9
  that you can set version constraints properly.
10
10
 
11
- #### [Unreleased](https://github.com/uniiverse/apollo-tracing-ruby/compare/v1.3.0...HEAD)
11
+ #### [Unreleased](https://github.com/uniiverse/apollo-tracing-ruby/compare/v1.4.0...HEAD)
12
12
 
13
13
  * WIP
14
14
 
15
+ #### [v1.4.0](https://github.com/uniiverse/apollo-tracing-ruby/compare/v1.3.0...v1.4.0) – 2018-02-09
16
+
17
+ * `Changed`: Apollo Engine Proxy version to [2018.02-2-g0b77ff3e3](https://www.apollographql.com/docs/engine/proxy-release-notes.html#2018.02-2-g0b77ff3e3) to fix using arrays as arguments. [#9](https://github.com/uniiverse/apollo-tracing-ruby/pull/9)
18
+
15
19
  #### [v1.3.0](https://github.com/uniiverse/apollo-tracing-ruby/compare/v1.2.1...v1.3.0) – 2017-11-09
16
20
 
17
21
  * `Changed`: Apollo Engine Proxy version to [2017.11-40-g9585bfc6](https://www.apollographql.com/docs/engine/proxy-release-notes.html#2017-11-40-g9585bfc6).
data/Makefile CHANGED
@@ -1,4 +1,4 @@
1
- PROXY_VERSION := 2017.11-40-g9585bfc6
1
+ PROXY_VERSION := 2018.02-2-g0b77ff3e3
2
2
 
3
3
  download_binaries:
4
4
  curl -O https://registry.npmjs.org/apollo-engine-binary-darwin/-/apollo-engine-binary-darwin-0.$(PROXY_VERSION).tgz
data/README.md CHANGED
@@ -77,6 +77,8 @@ Schema.execute(query, variables: { user_id: 1 })
77
77
  Add 'ApolloTracing' to your schema:
78
78
 
79
79
  <pre>
80
+ <b>require "apollo/tracing"</b>
81
+
80
82
  Schema = GraphQL::Schema.define do
81
83
  query QueryType
82
84
  <b>use ApolloTracing.new</b>
@@ -208,6 +210,9 @@ To run the Proxy as a child process, which will be automatically terminated if t
208
210
  require File.expand_path('../config/environment', __FILE__)
209
211
 
210
212
  <b>ApolloTracing.start_proxy('config/apollo-engine-proxy.json')</b>
213
+ # or pass a JSON string:
214
+ # ApolloTracing.start_proxy('{"apiKey": "KEY", ...}')
215
+
211
216
  run Your::Application
212
217
  </pre>
213
218
 
@@ -22,7 +22,7 @@ class ApolloTracing
22
22
 
23
23
  @@proxy_pid = spawn(
24
24
  {"ENGINE_CONFIG" => config_json},
25
- "#{binary_path} -config=env -restart=true",
25
+ "#{binary_path} -config=env",
26
26
  {out: STDOUT, err: STDERR}
27
27
  )
28
28
  at_exit { stop_proxy }
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  class ApolloTracing
4
- VERSION = "1.3.0"
4
+ VERSION = "1.4.0"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: apollo-tracing
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.0
4
+ version: 1.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Reginald Suh
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: exe
11
11
  cert_chain: []
12
- date: 2017-11-09 00:00:00.000000000 Z
12
+ date: 2018-02-09 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: graphql