activegraph 10.1.0 → 10.1.1
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 +7 -0
- data/README.md +22 -20
- data/lib/active_graph/node/has_n.rb +4 -2
- data/lib/active_graph/node/query/query_proxy_eager_loading/association_tree.rb +1 -0
- data/lib/active_graph/node/query/query_proxy_eager_loading.rb +3 -9
- data/lib/active_graph/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 65cca8a21c8ecb9dff1f8fdf38ab82bcbc02fb211bc29a1b50f947e1d4126b9f
|
|
4
|
+
data.tar.gz: c64ebb3dff76ec6b66eebe3499aef2fb15a1db56cf786e2da250e0ace1e6bcb8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 898089b35cfcf2d101103ada41f27c1884cb00d9169b802526d4573af60cc577a8ddbb3ca71be96d9e54202a95a7a560448b6b27bdd57ff964b6d9e0b4f8b2e5
|
|
7
|
+
data.tar.gz: 3c3f46755b637e4cdc663f450dc5d247720cee609ae14fa00de87c01f9c9fe09a96d6e9a2bf9b3967f56460444946b35654061ef4cd24e36d9a7acadd20d7f89
|
data/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,13 @@ 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
|
+
## [10.1.1] 2021-11-05
|
|
7
|
+
|
|
8
|
+
## Fixed
|
|
9
|
+
|
|
10
|
+
- Fixed issue where some has_one relationships where incorrectly deleted disregarding direction
|
|
11
|
+
- It changes the relationship length assignment in query proxy eagerloading module to be consistent with query proxy relationship length syntax.
|
|
12
|
+
|
|
6
13
|
## [10.1.0] 2021-02-05
|
|
7
14
|
|
|
8
15
|
## Added
|
data/README.md
CHANGED
|
@@ -45,31 +45,33 @@ Neo4j.rb v4.1.0 was released in January of 2015. Its changes are outlined [here]
|
|
|
45
45
|
|
|
46
46
|
## Neo4j version support
|
|
47
47
|
|
|
48
|
-
| **Neo4j Version** | v2.x | v3.x | >= v4.x | >= 7.0.3 | activegraph 10.0 |
|
|
49
|
-
|
|
50
|
-
| 1.9.x | Yes | No | No | No | No |
|
|
51
|
-
| 2.0.x | No | Yes | No | No | No |
|
|
52
|
-
| 2.1.x | No | Yes | Yes * | Yes | No |
|
|
53
|
-
| 2.2.x | No | No | Yes | Yes | No |
|
|
54
|
-
| 2.3.x | No | No | Yes | Yes | No |
|
|
55
|
-
| 3.0, 3.1, 3.3 | No | No | No | Yes | No |
|
|
56
|
-
| 3.4
|
|
57
|
-
|
|
|
58
|
-
| 4.
|
|
48
|
+
| **Neo4j Version** | v2.x | v3.x | >= v4.x | >= 7.0.3 | activegraph 10.0 | activegraph 11.0.0.beta.4-java |
|
|
49
|
+
|-------------------|------|-------|---------|----------|------------------|--------------------------------|
|
|
50
|
+
| 1.9.x | Yes | No | No | No | No | No
|
|
51
|
+
| 2.0.x | No | Yes | No | No | No | No
|
|
52
|
+
| 2.1.x | No | Yes | Yes * | Yes | No | No
|
|
53
|
+
| 2.2.x | No | No | Yes | Yes | No | No
|
|
54
|
+
| 2.3.x | No | No | Yes | Yes | No | No
|
|
55
|
+
| 3.0, 3.1, 3.3 | No | No | No | Yes | No | No
|
|
56
|
+
| 3.4 | No | No | No | Yes | Yes | No
|
|
57
|
+
| 3.5 | No | No | No | Yes | Yes | Yes
|
|
58
|
+
| 4.0 | No | No | No | No | Yes | Yes
|
|
59
|
+
| 4.1 | No | No | No | No | No | Yes
|
|
60
|
+
| 4.2 | No | No | No | No | No | Yes
|
|
59
61
|
|
|
60
62
|
`*` Neo4j.rb >= 4.x doesn't support Neo4j versions before 2.1.5. To use 2.1.x you should upgrade to a version >= 2.1.5
|
|
61
63
|
|
|
62
64
|
## Neo4j feature support
|
|
63
65
|
|
|
64
|
-
| **Neo4j Feature** | v2.x | v3.x | >= v4.x | >= 8.x | activegraph 10.0 |
|
|
65
|
-
|
|
66
|
-
| Bolt Protocol | No | No | No | Yes | Yes
|
|
67
|
-
| Auth | No | No | Yes | Yes | Yes
|
|
68
|
-
| Remote Cypher | Yes | Yes | Yes | Yes | No
|
|
69
|
-
| Transactions | Yes | Yes | Yes | Yes | Yes
|
|
70
|
-
| High Availability | No | Yes | Yes | Yes | Yes
|
|
71
|
-
| Causal Cluster | No | No | No | No | Yes
|
|
72
|
-
| Embedded JVM support | Yes | Yes | Yes | Yes | via bolt only
|
|
66
|
+
| **Neo4j Feature** | v2.x | v3.x | >= v4.x | >= 8.x | >= activegraph 10.0 |
|
|
67
|
+
|----------------------------|--------|------|---------|--------|---------------------|
|
|
68
|
+
| Bolt Protocol | No | No | No | Yes | Yes |
|
|
69
|
+
| Auth | No | No | Yes | Yes | Yes |
|
|
70
|
+
| Remote Cypher | Yes | Yes | Yes | Yes | No |
|
|
71
|
+
| Transactions | Yes | Yes | Yes | Yes | Yes |
|
|
72
|
+
| High Availability | No | Yes | Yes | Yes | Yes |
|
|
73
|
+
| Causal Cluster | No | No | No | No | Yes |
|
|
74
|
+
| Embedded JVM support | Yes | Yes | Yes | Yes | via bolt only |
|
|
73
75
|
|
|
74
76
|
## Documentation
|
|
75
77
|
|
|
@@ -253,8 +253,10 @@ module ActiveGraph::Node
|
|
|
253
253
|
|
|
254
254
|
def relationship_corresponding_rel(relationship, direction, target_class)
|
|
255
255
|
self.class.associations.find do |_key, assoc|
|
|
256
|
-
assoc.
|
|
257
|
-
|
|
256
|
+
assoc.direction == direction && (
|
|
257
|
+
assoc.relationship_class_name == relationship.class.name ||
|
|
258
|
+
(assoc.relationship_type == relationship.type.to_sym && assoc.target_class == target_class)
|
|
259
|
+
)
|
|
258
260
|
end
|
|
259
261
|
end
|
|
260
262
|
|
|
@@ -68,7 +68,7 @@ module ActiveGraph
|
|
|
68
68
|
|
|
69
69
|
def init_associations(node, element)
|
|
70
70
|
element.each_key { |key| node.association_proxy(key).init_cache }
|
|
71
|
-
node.association_proxy(element.name).init_cache if element.rel_length == ''
|
|
71
|
+
node.association_proxy(element.name).init_cache if element.rel_length && element.rel_length[:max] == ''
|
|
72
72
|
end
|
|
73
73
|
|
|
74
74
|
def cache_and_init(node, element)
|
|
@@ -157,14 +157,8 @@ module ActiveGraph
|
|
|
157
157
|
end
|
|
158
158
|
|
|
159
159
|
def relationship_part(association, path_name, rel_length)
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
length = {max: rel_length}
|
|
163
|
-
else
|
|
164
|
-
rel_name = escape("#{path_name}_rel")
|
|
165
|
-
length = nil
|
|
166
|
-
end
|
|
167
|
-
"#{association.arrow_cypher(rel_name, {}, false, false, length)}(#{escape(path_name)})"
|
|
160
|
+
rel_name = escape("#{path_name}_rel") unless rel_length
|
|
161
|
+
"#{association.arrow_cypher(rel_name, {}, false, false, rel_length)}(#{escape(path_name)})"
|
|
168
162
|
end
|
|
169
163
|
|
|
170
164
|
def chain
|
data/lib/active_graph/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: activegraph
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 10.1.
|
|
4
|
+
version: 10.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Andreas Ronge, Brian Underwood, Chris Grigg, Heinrich Klobuczek
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-
|
|
11
|
+
date: 2021-11-05 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activemodel
|
|
@@ -443,7 +443,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
443
443
|
- !ruby/object:Gem::Version
|
|
444
444
|
version: '0'
|
|
445
445
|
requirements: []
|
|
446
|
-
rubygems_version: 3.2.
|
|
446
|
+
rubygems_version: 3.2.22
|
|
447
447
|
signing_key:
|
|
448
448
|
specification_version: 4
|
|
449
449
|
summary: A graph database for Ruby
|