neo4j 7.0.1 → 7.0.2

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: e3b30796aa35e3f2172ceb8914e1d50b48fa554e
4
- data.tar.gz: b2d172ea8448cd2de97844eb32bdae86772af216
3
+ metadata.gz: 9c4675762c7abb2516c952ee03e3a63acffeb26a
4
+ data.tar.gz: d7426b76070df3d775727258a36816611f61f4c5
5
5
  SHA512:
6
- metadata.gz: 4f8f40cf2761f28d764e5ff630d50989eac8628fc13f5d7c120b37b2d417b69f496a24df17b46e845e34643a05ae6c1a8637c90eb60b6fe6271a914b7a885cfe
7
- data.tar.gz: ba9e797aaf5fdcd4ee2e1c809af259516a17a2930cba4729a551be5f3f1802e5d88743309028d131b4f4f5108a184b7215e635d627322f51908407446ed03e13
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}:#{graph_object.type} {#{identifier}_create_props}]->#{graph_object.to_node_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
@@ -1,3 +1,3 @@
1
1
  module Neo4j
2
- VERSION = '7.0.1'
2
+ VERSION = '7.0.2'
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: 7.0.1
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-03-21 00:00:00.000000000 Z
11
+ date: 2016-04-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: orm_adapter