neo4j 9.1.4 → 9.1.5

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: 9e112356948535c7bfe105ff61d0f7b8a72cbd8f
4
- data.tar.gz: e8e12e12455bfc49c9957101d4548e1a68b40bf4
3
+ metadata.gz: 81748cbae6abcb05429d2742ba110392fb893d26
4
+ data.tar.gz: 82fb3384b3c0878e528209e597dfb17598ae747a
5
5
  SHA512:
6
- metadata.gz: 540ccbdccb4fae9553de9b4e36c4d3fb21942b8c6dc49befe9152ed61b66f3bf665db10d24025b2fdd003f2b0c97e3609740821a6332f4686d522b708a178d8a
7
- data.tar.gz: 271094b7061d5aa007f2329c1b16f7a682a6c78ac6acb957ec7bc1969c4c6c1516cd740888dcebdc9770a185fe90fef002f8022fb65bcc44dd3c7e608acc076c
6
+ metadata.gz: 545ac6839ad192daacf817f9905cb7f673a22725fc7f3c9d8ebdfba28110046938cc114d4258baa4392ca9beb0e2c63c4d8316a8d3e648d7b7190bd784ad542a
7
+ data.tar.gz: 5e727f67450c4a5d3d484bd92352f8ede9c60ba14aa19876ec2f35a0e414f9394f72367ebb1c31a1aef76d94fadaef8bf733fcddbcbf91b158b82c38f69954e2
@@ -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.5] 2018-03-18
7
+
8
+ ## Fixed
9
+
10
+ - Performance improvement for attributes (thanks @jgaskins / see #1487)
11
+
6
12
  ## [9.1.4] 2018-02-20
7
13
 
8
14
  ## Fixed
@@ -165,8 +165,10 @@ module Neo4j::Shared
165
165
  #
166
166
  # @return [false, String] False or the conflicting method name
167
167
  def dangerous_attribute?(name)
168
+ methods = instance_methods
169
+
168
170
  attribute_methods(name).detect do |method_name|
169
- !DEPRECATED_OBJECT_METHODS.include?(method_name.to_s) && allocate.respond_to?(method_name, true)
171
+ !DEPRECATED_OBJECT_METHODS.include?(method_name.to_s) && methods.include?(method_name)
170
172
  end unless attribute_names.include? name.to_s
171
173
  end
172
174
 
@@ -1,3 +1,3 @@
1
1
  module Neo4j
2
- VERSION = '9.1.4'
2
+ VERSION = '9.1.5'
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.4
4
+ version: 9.1.5
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-02-20 00:00:00.000000000 Z
11
+ date: 2018-03-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: orm_adapter