graphql_authorize 0.2.0 → 0.3.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
  SHA256:
3
- metadata.gz: 26fa4a306873ecd6f5b46181bcdf84b866f694cdfc7b884a6f2245f5d84c01ce
4
- data.tar.gz: 116b527dc74e150fc3bff7e1e764c4d2e617ecec329250eb1dbc84ed0395b5b7
3
+ metadata.gz: dee6a666fb3139782c105cde6a2db8f0c1ca1cc9dc97c4a1e1e2188f4e4966a7
4
+ data.tar.gz: f171efe8096eb9408aa114473b64efb5f2725f0bb6806a462c1b47ea97929b0d
5
5
  SHA512:
6
- metadata.gz: de97f75b032523244d8987901768f01ab81eec872783b1ecef9ae5b9a6b4fb8a418e58024f24b0c2307e143533b71ea44f43cc27b7f2baa1c2c46e5034985513
7
- data.tar.gz: 7b75660cd47953401b9f8f337f5bfb5d8faec7749d4229107754455184f6f06a2293e119948368c1142b9f06e5b3a020c0ef61bb710ee8032e3cd0ada5ae3313
6
+ metadata.gz: 15a3eb342c6085720000c5e41f39488af954af4e77987baf1a33ed09599d1020e9ce9fc0562ecccc773145bca917f6875432ee2af002360d7379e0ccef9a8e3c
7
+ data.tar.gz: fbf8ebda9f1d64014109aca62b5efe43e491ffb12cccff128a5e0b6a45dd7a774af7ffec85d59b9b25c0e5b58a72ccdf8b2ba2336b2750b8714e5da0b270734c
data/CHANGELOG.md CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  ## master
4
4
 
5
+ ## 0.3.0 (2018-10-09)
6
+
7
+ - [PR [#7](https://github.com/DmitryTsepelev/ar_lazy_preload/pull/7)] Remove global exception handler ([@DmitryTsepelev][])
8
+
5
9
  ## 0.2.0 (2018-09-20)
6
10
 
7
11
  - [PR [#6](https://github.com/DmitryTsepelev/ar_lazy_preload/pull/6)] Support GraphQL class syntax ([@DmitryTsepelev][])
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- graphql_authorize (0.2.0)
4
+ graphql_authorize (0.3.0)
5
5
  graphql (>= 1.6)
6
6
 
7
7
  GEM
@@ -16,7 +16,7 @@ GEM
16
16
  cancancan (2.2.0)
17
17
  concurrent-ruby (1.0.5)
18
18
  diff-lcs (1.3)
19
- graphql (1.8.9)
19
+ graphql (1.8.10)
20
20
  i18n (1.1.0)
21
21
  concurrent-ruby (~> 1.0)
22
22
  jaro_winkler (1.5.1)
@@ -70,4 +70,4 @@ DEPENDENCIES
70
70
  rubocop
71
71
 
72
72
  BUNDLED WITH
73
- 1.16.2
73
+ 1.16.5
data/README.md CHANGED
@@ -1,4 +1,6 @@
1
1
  [![Build Status](https://travis-ci.org/anjlab/graphql_authorize.svg?branch=master)](https://travis-ci.org/anjlab/graphql_authorize)
2
+ [![Gem Version](https://badge.fury.io/rb/ar_lazy_preload.svg)](https://rubygems.org/gems/graphql_authorize)
3
+ [![Maintainability](https://api.codeclimate.com/v1/badges/ee8428a2161aa56ad2af/maintainability)](https://codeclimate.com/github/anjlab/graphql_authorize/maintainability)
2
4
 
3
5
  # GraphqlAuthorize
4
6
 
@@ -9,8 +9,6 @@ module GraphqlAuthorize
9
9
  else
10
10
  GraphQL::ExecutionError.new("Access to the field '#{field_definition.name}' is denied!")
11
11
  end
12
- rescue StandardError => err
13
- GraphQL::ExecutionError.new(err.inspect)
14
12
  end
15
13
  # rubocop:enable Metrics/ParameterLists
16
14
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module GraphqlAuthorize
4
- VERSION = "0.2.0"
4
+ VERSION = "0.3.0"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: graphql_authorize
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - DmitryTsepelev
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2018-09-20 00:00:00.000000000 Z
11
+ date: 2018-10-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: graphql