neo4j 7.0.1 → 7.0.2
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/lib/neo4j/shared/query_factory.rb +1 -1
- data/lib/neo4j/shared/type_converters.rb +0 -6
- 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: 9c4675762c7abb2516c952ee03e3a63acffeb26a
|
|
4
|
+
data.tar.gz: d7426b76070df3d775727258a36816611f61f4c5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 92a03b93fada5c5543d87e6501e23211ccd6bba8ae288e5f7985ffa7e694c8b741a957b25fc1b8b5147dfc17d981612ca8987f5a1ff463d0c5ab29db7cbc73c8
|
|
7
|
+
data.tar.gz: e92567f08fb2761a93171af5ed156e2eae8e726fc149c843ad06bddfcd0025d2dbfcb376c146866b1e74f222f736163055d2f2a4c037135d3dd3f9b65ec08495
|
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
|
+
## [7.0.2] - 04-10-2016
|
|
7
|
+
|
|
8
|
+
### Fixed
|
|
9
|
+
|
|
10
|
+
- Multiparameter Attributes for properties of type `Time` were failing due to a hack that should have been removed with `ActiveAttr`'s removal
|
|
11
|
+
- Rel creation factory was not using backticks around rel type during create action.
|
|
12
|
+
|
|
6
13
|
## [7.0.1] - 03-22-2016
|
|
7
14
|
|
|
8
15
|
### Fixed
|
|
@@ -95,7 +95,7 @@ module Neo4j::Shared
|
|
|
95
95
|
end
|
|
96
96
|
|
|
97
97
|
def query_string
|
|
98
|
-
"#{graph_object.from_node_identifier}-[#{identifier}
|
|
98
|
+
"#{graph_object.from_node_identifier}-[#{identifier}:`#{graph_object.type}` {#{identifier}_create_props}]->#{graph_object.to_node_identifier}"
|
|
99
99
|
end
|
|
100
100
|
end
|
|
101
101
|
end
|
|
@@ -201,12 +201,6 @@ module Neo4j::Shared
|
|
|
201
201
|
Time
|
|
202
202
|
end
|
|
203
203
|
|
|
204
|
-
# ActiveAttr, which assists with property management, does not recognize Time as a valid type. We tell it to interpret it as
|
|
205
|
-
# Integer, as it will be when saved to the database.
|
|
206
|
-
def primitive_type
|
|
207
|
-
Integer
|
|
208
|
-
end
|
|
209
|
-
|
|
210
204
|
def db_type
|
|
211
205
|
Integer
|
|
212
206
|
end
|
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: 7.0.
|
|
4
|
+
version: 7.0.2
|
|
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: 2016-
|
|
11
|
+
date: 2016-04-10 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: orm_adapter
|