graphql-schema_comparator 0.3.0 → 0.3.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: de7ab5aa8da6dcfe86369cab4a4278f4e243365e
4
- data.tar.gz: a0cf175638ba9b983a793555514c3c51a91c6725
3
+ metadata.gz: 3a1db51082278388a76a88af6545645d72221ed3
4
+ data.tar.gz: d09f9a815fe13f64a1c89a3cd178a68d54eb033e
5
5
  SHA512:
6
- metadata.gz: cc5dd38fb9f71124dd18323a1ceb8e123994476bee91a134854140e160075a515c0975fb60fc662d918ea7deac6e0b6c48a015da5afb53a14191a22de8514837
7
- data.tar.gz: c9f9ca7b7672748246ee7519b35e06f36b49ad55fba891699249de86107518fac2f0033afe22e2ae8529b5d4f9b9ba17a31aa701a977ab9a9ae8bcdf9ba2d095
6
+ metadata.gz: 1b16777b072b7bbdb6a49bafcacd38885aa17adfc452b3b11055ac980451d2e70a74542b88c5716f2866c9860ca8ba942211a35fb565111df29d305878b87c57
7
+ data.tar.gz: 4ce22425d9c58150676a091f1df84a08f110e926af5dfd9838de62fdb7977421acf73b3c16d5db8fc23a1a337899963dd51d836a2fb00a3eec368b4359d049ec
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.3.1 (Nov 13 2017)
4
+
5
+ ### Bug Fixes
6
+
7
+ - Fix no method breaking issue https://github.com/xuorig/graphql-schema_comparator/issues/8
8
+
3
9
  ## 0.3.0 (Oct 14 2017)
4
10
 
5
11
  ### New features
@@ -11,10 +17,6 @@
11
17
 
12
18
  - `breaking` method on change objects has been renamed `breaking?` for style
13
19
 
14
- ### Bug fixes
15
-
16
- - Fix message for `EnumValueRemoved` (#5)
17
-
18
20
  ## 0.2.0 (Aug 18 2017)
19
21
 
20
22
  ### New features
@@ -31,7 +31,7 @@ class GraphQLSchema < Thor
31
31
  say "\n"
32
32
 
33
33
  result.changes.each do |change|
34
- if change.breaking
34
+ if change.breaking?
35
35
  say "⚠️ #{change.message}", :yellow
36
36
  else
37
37
  say "✅ #{change.message}", :green
@@ -1,5 +1,5 @@
1
1
  module GraphQL
2
2
  module SchemaComparator
3
- VERSION = "0.3.0"
3
+ VERSION = "0.3.1"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: graphql-schema_comparator
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Marc-Andre Giroux
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-10-14 00:00:00.000000000 Z
11
+ date: 2017-11-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: graphql
@@ -152,7 +152,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
152
152
  version: '0'
153
153
  requirements: []
154
154
  rubyforge_project:
155
- rubygems_version: 2.6.13
155
+ rubygems_version: 2.6.8
156
156
  signing_key:
157
157
  specification_version: 4
158
158
  summary: Compare GraphQL schemas and get the changes that happened.