neo4j 6.1.9 → 6.1.10

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: 679656392441ae5e6d59d86d42b7c11ea6bcfab0
4
- data.tar.gz: 0b5ffa1eb006b9c29001591edeab99793c44d5d9
3
+ metadata.gz: 44f009121aff36056cc7bb5b8e43289808ef4b2e
4
+ data.tar.gz: d0a949bc37dff327631d6662619f0e82e3c45a4c
5
5
  SHA512:
6
- metadata.gz: 1a265480a388e338260c6ffeee67e08afc705f664af9db37a57296dc62e1e02b5492e315d963e2745265d715ed04113a0abba82b311a3c048e82e39354d1ba01
7
- data.tar.gz: f9ba0b1c3ac2ca0b8d5b68e496a5c50d11196e7dedf35824fed2fac516f1f2d341fd92aebc14753c1755afbf8a319fb917c072ad7f5ebcc29055cbf75f73e145
6
+ metadata.gz: 9317f40e2023b164a862828b26fae32c68a05b158175d3ccea8a92f8afbc11842f6ed02efca7c98a1e90074b4a32c0a799909cb0eac1f8f10bde2e1f6443f30b
7
+ data.tar.gz: b5854b8a73db74c84fb3ab3c5934fdc22bb1986887251b28f235c9dd0263d330a42911fec21c5d35a2d2d2f72ecf88da0e14586c438c8674698a353e16d13c77
@@ -3,6 +3,18 @@ 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
+ ## [6.1.10] - 03-14-2016
7
+
8
+ ### Fixed
9
+
10
+ - Fixed issue where backticks weren't being added to where clauses for `with_associations`
11
+
12
+ ## [6.1.9] - 2016-03-08
13
+
14
+ ### Fixed
15
+
16
+ - Issue where creating relationships via `has_one` association created two relationships (forward ported from 6.0.7)
17
+
6
18
  ## [6.1.8] - 2016-03-02
7
19
 
8
20
  ### Fixed
@@ -70,6 +82,18 @@ This project adheres to [Semantic Versioning](http://semver.org/).
70
82
  - `config/neo4j.yml` now renders with an ERB step (thanks to mrstif via #1060)
71
83
  - `#increment`, `#increment!` and `#concurrent_increment!` methods added to instances of ActiveNode and ActiveRel (thanks to ProGM in #1074)
72
84
 
85
+ ## [6.0.8] - 03-14-2016
86
+
87
+ ### Fixed
88
+
89
+ - Fixed issue where backticks weren't being added to where clauses for `with_associations`
90
+
91
+ ## [6.0.7] - 03-08-2016
92
+
93
+ ### Fixed
94
+
95
+ - Issue where creating relationships via `has_one` association created two relationships
96
+
73
97
  ## [6.0.6] - 01-20-2016
74
98
 
75
99
  ### 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 = '6.1.9'
2
+ VERSION = '6.1.10'
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: 6.1.9
4
+ version: 6.1.10
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-08 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