neo4j 8.0.10 → 8.0.11
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 +4 -4
- data/CHANGELOG.md +6 -0
- data/lib/neo4j/active_node/persistence.rb +1 -3
- data/lib/neo4j/active_node/unpersisted.rb +1 -1
- data/lib/neo4j/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6d1672e2dbc0fd5a5ab9dadcce116c66675c67d8
|
|
4
|
+
data.tar.gz: d4f12e021315edc3b147ae6f5a8146a8a285b536
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: dbb20bf5857ebc50445f9b416ace40c10477b268528ce7e7297ccd48a7b7bd0430253240adbb457adc0b6748e966bb4b379b453ff9312243a575f28d74e73b9e
|
|
7
|
+
data.tar.gz: 0438456b4cffe6040d8a600a18b15a5806a7ad0bf2ec65c2ecc9788113a9e0365e6691948183b8764e0666d2fbfaa7a5df45455bf773f937dcfe0321769348e4
|
data/CHANGELOG.md
CHANGED
|
@@ -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
|
+
## [8.0.11] 2016-03-23
|
|
7
|
+
|
|
8
|
+
### Fixed
|
|
9
|
+
|
|
10
|
+
- Fix issue where an association (which hasn't been accessed) is accessed from an ActiveNode callback
|
|
11
|
+
|
|
6
12
|
## [8.0.9] 2016-03-15
|
|
7
13
|
|
|
8
14
|
### Fixed
|
|
@@ -97,9 +97,7 @@ module Neo4j::ActiveNode
|
|
|
97
97
|
# need to be created after the node is saved, a new transaction is started.
|
|
98
98
|
def cascade_save
|
|
99
99
|
self.class.run_transaction(pending_deferred_creations?) do
|
|
100
|
-
|
|
101
|
-
process_unpersisted_nodes!
|
|
102
|
-
result
|
|
100
|
+
yield.tap { process_unpersisted_nodes! }
|
|
103
101
|
end
|
|
104
102
|
end
|
|
105
103
|
|
|
@@ -28,7 +28,7 @@ module Neo4j
|
|
|
28
28
|
private
|
|
29
29
|
|
|
30
30
|
def process_unpersisted_nodes!
|
|
31
|
-
deferred_create_cache.each do |association_name, nodes|
|
|
31
|
+
deferred_create_cache.dup.each do |association_name, nodes|
|
|
32
32
|
association_proxy = association_proxy(association_name)
|
|
33
33
|
|
|
34
34
|
nodes.each do |node|
|
data/lib/neo4j/version.rb
CHANGED
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: 8.0.
|
|
4
|
+
version: 8.0.11
|
|
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-03-
|
|
11
|
+
date: 2017-03-23 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: orm_adapter
|