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 +4 -4
- data/CHANGELOG.md +5 -1
- data/Makefile +11 -9
- data/lib/apollo_tracing/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: '09c8ada3cd780815c09e953e53fe147916776e1e'
|
|
4
|
+
data.tar.gz: 3d1cc0695ad30887bed83f06ee6e3bc8dfc88c8b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6b91da4b77c82a39422815b9b9acf21b2fb12df2cfe89e386a799969fc7561c755a1e98d21fbd8388c5d81d0c1ff0e4ef0d9c8fd9f4e6b30b895c6f64013927b
|
|
7
|
+
data.tar.gz: e700a20e5d08894792ad93cf7aba1a1898cbf91001cd90a3bfb1aefcc43bc44be9a95ab06e0e25e360fa066d6c3636e1ddf9e481a8074a232dfca5d20672723d
|
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.2.
|
|
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.
|
|
3
|
-
curl -O https://registry.npmjs.org/apollo-engine-binary-darwin/-/apollo-engine-binary-linux-0.
|
|
4
|
-
curl -O https://registry.npmjs.org/apollo-engine-binary-darwin/-/apollo-engine-binary-windows-0.
|
|
5
|
-
tar -xzf apollo-engine-binary-darwin-0.
|
|
6
|
-
tar -xzf apollo-engine-binary-linux-0.
|
|
7
|
-
tar -xzf apollo-engine-binary-windows-0.
|
|
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.
|
|
13
|
-
rm apollo-engine-binary-linux-0.
|
|
14
|
-
rm apollo-engine-binary-windows-0.
|
|
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
|