neo4j 9.2.2 → 9.2.3

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: 86f90dd15e03e5ac8d95b34b7366326afc53ceff
4
- data.tar.gz: cce9e3dc22ed0865a39a1ade1513957b163bae77
3
+ metadata.gz: 1fab4999b62a5b300e1bc9416771935979862fb7
4
+ data.tar.gz: b1ff4cdb1e8ef291bc09b74d06d929dbbc7c364a
5
5
  SHA512:
6
- metadata.gz: 515a2af0acd7c6aa3b4e74ddd869125ea46f33e8708a7eced151e059d21e09fb9aca31be415e87b95cfdd42cf1f0d435f95a4836371b436c70ed0411042051e0
7
- data.tar.gz: 6957713e7f1f7657507c8415cf5856b7a02febee4b6ce9eb563aa20583b7cc80c3db5340043f3b9bea10cb45864c2039d7dad7cd00179f5990256ad8b2f2d2b8
6
+ metadata.gz: c4499e6cc4a361ca12f318bc3e8591f0dd10c29f1e74fed2a80be665813b91ee6c632215728e0b45f8afd4f41a472dd2083f4fb056d633d3d06b0c7966a68fa7
7
+ data.tar.gz: 1a49df0d5c4fc95e9f2476310647986a0be423b0f0162484b7046600da9db1724c62bc70787817f704c43547af814a2c36312ceccf794a2202c0637c14e5eb3c
@@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file.
3
3
  This file should follow the standards specified on [http://keepachangelog.com/]
4
4
  This project adheres to [Semantic Versioning](http://semver.org/).
5
5
 
6
+ ## [9.2.3] 2018-05-10
7
+
8
+ ## Fixed
9
+
10
+ - Rescue when node labels cause a LoadError in addition to a NameError (thanks @Grafikart / see #1500)
11
+
6
12
  ## [9.2.2] 2018-04-19
7
13
 
8
14
  ## Fixed
@@ -36,7 +36,7 @@ module Neo4j
36
36
 
37
37
  def constantized_label(label)
38
38
  "#{association_model_namespace}::#{label}".constantize
39
- rescue NameError
39
+ rescue NameError, LoadError
40
40
  nil
41
41
  end
42
42
 
@@ -1,3 +1,3 @@
1
1
  module Neo4j
2
- VERSION = '9.2.2'
2
+ VERSION = '9.2.3'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: neo4j
3
3
  version: !ruby/object:Gem::Version
4
- version: 9.2.2
4
+ version: 9.2.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andreas Ronge, Brian Underwood, Chris Grigg
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-04-20 00:00:00.000000000 Z
11
+ date: 2018-05-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activemodel