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 +4 -4
- data/CHANGELOG.md +5 -1
- data/Makefile +1 -1
- data/README.md +5 -0
- data/lib/apollo_tracing.rb +1 -1
- data/lib/apollo_tracing/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4f77c72b5f6cec9c886b294608b0cf8a0c57383f
|
4
|
+
data.tar.gz: 1cd49061cd02168774a36e0b7253b974e28a6f19
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c4eacdd09e2c803776ece1a38aa99e6361cb6a33b6de0e88410875c4c64bad0fb9a65f2ee83f9add46e0f0bd5f7e08222472185a481d614c8167dad73c1863b8
|
7
|
+
data.tar.gz: 1cd5e328e1a48b658d49bfed63114a4d747fc2b575650f5a7ae6c7ac376e734f34ecf5015fe6ec18bfe413f2e2153cdadcfd30f17c0ef9b6cb3777e3ece4e8aa
|
data/CHANGELOG.md
CHANGED
@@ -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.
|
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
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
|
|
data/lib/apollo_tracing.rb
CHANGED
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.
|
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:
|
12
|
+
date: 2018-02-09 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: graphql
|