apollo-tracing 1.2.0 → 1.2.1

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
  SHA1:
3
- metadata.gz: 4a960c73048ee514c57f79eea687b29deb99f2ba
4
- data.tar.gz: 2527d9e1d18f34b2c4ad5933ba6e1481e266a27a
3
+ metadata.gz: '09c8ada3cd780815c09e953e53fe147916776e1e'
4
+ data.tar.gz: 3d1cc0695ad30887bed83f06ee6e3bc8dfc88c8b
5
5
  SHA512:
6
- metadata.gz: 73b4eb90dd6fadf694bfd2297f060b8b05ce271693f151e604f4002bf3048b4e65ca8c337d02db0e40c2daa1dccebfce0c1d61095665a2f9ee5a8c3945f12bdb
7
- data.tar.gz: 007f850db2181defd143a79ebcb0d7eb7dcdbeafb483f6293a941576f13ccd72272ca307af42b55377d704037686772461ca8aec753da9ea4bae3306114ac6d1
6
+ metadata.gz: 6b91da4b77c82a39422815b9b9acf21b2fb12df2cfe89e386a799969fc7561c755a1e98d21fbd8388c5d81d0c1ff0e4ef0d9c8fd9f4e6b30b895c6f64013927b
7
+ data.tar.gz: e700a20e5d08894792ad93cf7aba1a1898cbf91001cd90a3bfb1aefcc43bc44be9a95ab06e0e25e360fa066d6c3636e1ddf9e481a8074a232dfca5d20672723d
@@ -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.2.0...HEAD)
11
+ #### [Unreleased](https://github.com/uniiverse/apollo-tracing-ruby/compare/v1.2.1...HEAD)
12
12
 
13
13
  * WIP
14
14
 
15
+ #### [v1.2.1](https://github.com/uniiverse/apollo-tracing-ruby/compare/v1.2.0...v1.2.1) – 2017-10-26
16
+
17
+ * `Fixed`: bump Apollo Engine Proxy version to [2017.10-425-gdd4873ae](https://www.apollographql.com/docs/engine/proxy-release-notes.html) to remove empty `operationName` and `extensions`.
18
+
15
19
  #### [v1.2.0](https://github.com/uniiverse/apollo-tracing-ruby/compare/v1.1.0...v1.2.0) – 2017-10-26
16
20
 
17
21
  * `Added`: `ApolloTracing.start_proxy` accepts a JSON string. [#3](https://github.com/uniiverse/apollo-tracing-ruby/pull/3)
data/Makefile CHANGED
@@ -1,17 +1,19 @@
1
+ PROXY_VERSION := 2017.10-425-gdd4873ae
2
+
1
3
  download_binaries:
2
- curl -O https://registry.npmjs.org/apollo-engine-binary-darwin/-/apollo-engine-binary-darwin-0.2017.10-408-g497e1410.tgz
3
- curl -O https://registry.npmjs.org/apollo-engine-binary-darwin/-/apollo-engine-binary-linux-0.2017.10-408-g497e1410.tgz
4
- curl -O https://registry.npmjs.org/apollo-engine-binary-darwin/-/apollo-engine-binary-windows-0.2017.10-408-g497e1410.tgz
5
- tar -xzf apollo-engine-binary-darwin-0.2017.10-408-g497e1410.tgz
6
- tar -xzf apollo-engine-binary-linux-0.2017.10-408-g497e1410.tgz
7
- tar -xzf apollo-engine-binary-windows-0.2017.10-408-g497e1410.tgz
4
+ curl -O https://registry.npmjs.org/apollo-engine-binary-darwin/-/apollo-engine-binary-darwin-0.$(PROXY_VERSION).tgz
5
+ curl -O https://registry.npmjs.org/apollo-engine-binary-darwin/-/apollo-engine-binary-linux-0.$(PROXY_VERSION).tgz
6
+ curl -O https://registry.npmjs.org/apollo-engine-binary-darwin/-/apollo-engine-binary-windows-0.$(PROXY_VERSION).tgz
7
+ tar -xzf apollo-engine-binary-darwin-0.$(PROXY_VERSION).tgz
8
+ tar -xzf apollo-engine-binary-linux-0.$(PROXY_VERSION).tgz
9
+ tar -xzf apollo-engine-binary-windows-0.$(PROXY_VERSION).tgz
8
10
  mv package/engineproxy_darwin_amd64 bin/
9
11
  mv package/engineproxy_linux_amd64 bin/
10
12
  mv package/engineproxy_windows_amd64.exe bin/
11
13
  rm -r package/
12
- rm apollo-engine-binary-darwin-0.2017.10-408-g497e1410.tgz
13
- rm apollo-engine-binary-linux-0.2017.10-408-g497e1410.tgz
14
- rm apollo-engine-binary-windows-0.2017.10-408-g497e1410.tgz
14
+ rm apollo-engine-binary-darwin-0.$(PROXY_VERSION).tgz
15
+ rm apollo-engine-binary-linux-0.$(PROXY_VERSION).tgz
16
+ rm apollo-engine-binary-windows-0.$(PROXY_VERSION).tgz
15
17
 
16
18
  release: download_binaries
17
19
  bundle exec rake release
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  class ApolloTracing
4
- VERSION = "1.2.0"
4
+ VERSION = "1.2.1"
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.2.0
4
+ version: 1.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Reginald Suh