neo4j 9.1.0 → 9.1.1

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
  SHA1:
3
- metadata.gz: 33134c676ebf345a270beba5b9117ffea19a7795
4
- data.tar.gz: e489a2463c551a3f85cd4a8431c5980b82d38a5a
3
+ metadata.gz: 5ce0613b4a45d089b70606742813dfbabb3714b5
4
+ data.tar.gz: dee160a259043e930080bad2e04c063c2978a26f
5
5
  SHA512:
6
- metadata.gz: d11c907d773b28a806fddb694edc27a9540ea1cc575180c2d1ce3377fe8ee373bc305b04de10b2dfdb58c866b74f89797501503a2becffc4a79f3a82dcda05d0
7
- data.tar.gz: e151ef85854064b9fbee21f4e61a199e904f07f8b2acc1991c68831521bf15e1b9695c6ad265ac76a3ad4afe4fe3714533da9511b76c8d6d7593bb287cacf348
6
+ metadata.gz: 19196cfc3b3cd6d01416ec6ecf9a5cdce925fb55c7c6e7f15d7ef9748d14c433b652b7743c729e8f2afc9b47b8e904c0d3d7df016a8602b5c87cd9ce90b78d9d
7
+ data.tar.gz: 507a7ae74e8ef51c885afa65e778ee00614d34f2b3166faefc8c92c31f1f8f77619cea8b84752024f284d2edf93a54514594a3720882a7d0bf73894d260310f9
@@ -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.1.1] 2017-12-12
7
+
8
+ ## Fixed
9
+
10
+ - Model.find will, when raising an error about not being able to find the object, now call `inspect` on the ID value to make it clearer what the error is about (thanks @anamba / see #1314)
11
+
6
12
  ## [9.1.0] 2017-11-24
7
13
 
8
14
  ## Added
@@ -102,7 +102,7 @@ module Neo4j
102
102
  result = find_by_id_or_ids(map_id, id)
103
103
 
104
104
  fail RecordNotFound.new(
105
- "Couldn't find #{name} with '#{id_property_name}'=#{id}",
105
+ "Couldn't find #{name} with '#{id_property_name}'=#{id.inspect}",
106
106
  name, id_property_name, id) if result.blank?
107
107
  result.tap { |r| find_callbacks!(r) }
108
108
  end
@@ -1,3 +1,3 @@
1
1
  module Neo4j
2
- VERSION = '9.1.0'
2
+ VERSION = '9.1.1'
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.1.0
4
+ version: 9.1.1
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: 2017-12-04 00:00:00.000000000 Z
11
+ date: 2017-12-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: orm_adapter