neo4j 7.0.0.rc.4 → 7.0.0.rc.5

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b52aac116da68284c7e54e32fa0f42f348d299c8
4
- data.tar.gz: 17527fdb763f05c5a13ef211d033d7f0d98c92f4
3
+ metadata.gz: bc2d366aca58f309d2523005489b627535577663
4
+ data.tar.gz: 69b5666c5e5216923c9f1383e9b08e48b140cc47
5
5
  SHA512:
6
- metadata.gz: e9a2f6c971ef9ba960e5f35567d7f4d26ba471cf230e137efacb79c50c72321ee16f97eca3b5d3f0db426ec0bf431b4027e66ad46b43c0f90826b9467343a5b4
7
- data.tar.gz: 4bf163d05cee8ecfef525d2423ad6954d410230981ee9557ca3abf38e8084587dbc1b8e5b65c80b76ead35be21d78dfdcc5b1df189bde88ffaf224e7095d4d28
6
+ metadata.gz: 5efc8206757858e0340518756d5d66397979d689bc9b30899ef2360f086bb1bab182b078ad89ae06d819aafe2eba975e809152195db19f8c7cef3b693590dcf4
7
+ data.tar.gz: 9f518623f4e32549c3a2e408c51e7f0fcf913111dc167f54af304a67d1097980a89fcad3d33b6b83001411f026b44d01ef14136d05c247c13d4da9408cdaba15
@@ -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
+ ## [7.0.0.rc.5] - 03-14-2016
7
+
8
+ ### Fixed
9
+
10
+ - Fixed issue where backticks weren't being added to where clauses for `with_associations`
11
+
6
12
  ## [7.0.0.rc.4] - 03-11-2016
7
13
 
8
14
  ### Fixed
@@ -50,6 +56,12 @@ This project adheres to [Semantic Versioning](http://semver.org/).
50
56
  - All `call` class methods from Type Converters. Use `to_ruby` instead.
51
57
  - `Neo4j::ActiveNode::Labels::InvalidQueryError`, since it's unused.
52
58
 
59
+ ## [6.1.10] - 03-14-2016
60
+
61
+ ### Fixed
62
+
63
+ - Fixed issue where backticks weren't being added to where clauses for `with_associations`
64
+
53
65
  ## [6.1.9] - 2016-03-08
54
66
 
55
67
  ### Fixed
@@ -123,6 +135,12 @@ This project adheres to [Semantic Versioning](http://semver.org/).
123
135
  - `config/neo4j.yml` now renders with an ERB step (thanks to mrstif via #1060)
124
136
  - `#increment`, `#increment!` and `#concurrent_increment!` methods added to instances of ActiveNode and ActiveRel (thanks to ProGM in #1074)
125
137
 
138
+ ## [6.0.8] - 03-14-2016
139
+
140
+ ### Fixed
141
+
142
+ - Fixed issue where backticks weren't being added to where clauses for `with_associations`
143
+
126
144
  ## [6.0.7] - 03-08-2016
127
145
 
128
146
  ### Fixed
@@ -79,7 +79,7 @@ module Neo4j
79
79
  return if model_class == false
80
80
 
81
81
  Array.new(target_classes).map do |target_class|
82
- "#{name}:#{target_class.mapped_label_name}"
82
+ "#{name}:`#{target_class.mapped_label_name}`"
83
83
  end.join(' OR ')
84
84
  end
85
85
 
@@ -1,3 +1,3 @@
1
1
  module Neo4j
2
- VERSION = '7.0.0.rc.4'
2
+ VERSION = '7.0.0.rc.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: 7.0.0.rc.4
4
+ version: 7.0.0.rc.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: 2016-03-11 00:00:00.000000000 Z
11
+ date: 2016-03-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: orm_adapter