neo4j 7.2.0 → 7.2.1

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: fa5400aef5ceed374df507212001259434a2550c
4
- data.tar.gz: eb182d51d5f9107155dcc3cc7db72018b0ca16ca
3
+ metadata.gz: 91e47692140fbc42f1ea66a6c85668588413b66a
4
+ data.tar.gz: d1861bd332dda7948b46d2e9b0778375bfaeb57c
5
5
  SHA512:
6
- metadata.gz: d12724bd745a9d23b43a63f90a6bcd18114727035229cea23cf744db4ea0482832e4c44696246224f34b93ea3d3d091afa49bf8096b3a80ec695a92d68cb42c3
7
- data.tar.gz: 609c35501f8b8a2ac5588820867d3c972f1ca1ce5dbe73456a3ff4f2de62e1f6a943eefcd2eb5098053bbc474dbf65baa63d0b6639f947f533f685e1a58accde
6
+ metadata.gz: a14812665bd191291167714cd3e732afc8b19a855f34d9e836c31cd7eefc4e963bab0f808fecec35d389df2d41c7d2574440366d655c555acc740096a7b8ce85
7
+ data.tar.gz: 295a298bbf3c81ca578cb2339e4f3be70555d42359f0b2d69b9837e02c7fa633b7b24d0875aaa2507065d148a44a4fd4b80bef4ae47006662abfb2887b107ccf
@@ -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.2.1] - 09-19-2016
7
+
8
+ ### Fixed
9
+
10
+ - During ActiveRel create, node and rel property values formatted like Cypher props (`{val}`) were interpreted as props, causing errors.
11
+
6
12
  ## [7.2.0] - 08-23-2016
7
13
 
8
14
  ### Added
@@ -0,0 +1,17 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+ #
4
+ # This file was generated by Bundler.
5
+ #
6
+ # The application 'rake' is installed as part of a gem, and
7
+ # this file is here to facilitate running it.
8
+ #
9
+
10
+ require 'pathname'
11
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile',
12
+ Pathname.new(__FILE__).realpath)
13
+
14
+ require 'rubygems'
15
+ require 'bundler/setup'
16
+
17
+ load Gem.bin_path('rake', 'rake')
@@ -69,7 +69,8 @@ module Neo4j::Shared
69
69
 
70
70
  def create_query
71
71
  return match_query if graph_object.persisted?
72
- base_query.create(identifier => {graph_object.labels_for_create => graph_object.props_for_create})
72
+ labels = graph_object.labels_for_create.map { |l| ":`#{l}`" }.join
73
+ base_query.create("(#{identifier}#{labels} {#{identifier}_params})").params(identifier_params => graph_object.props_for_create)
73
74
  end
74
75
  end
75
76
 
@@ -1,3 +1,3 @@
1
1
  module Neo4j
2
- VERSION = '7.2.0'
2
+ VERSION = '7.2.1'
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.2.0
4
+ version: 7.2.1
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-08-23 00:00:00.000000000 Z
11
+ date: 2016-09-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: orm_adapter
@@ -216,10 +216,8 @@ dependencies:
216
216
  - - "~>"
217
217
  - !ruby/object:Gem::Version
218
218
  version: 0.34.0
219
- description: 'A Neo4j OGM (Object-Graph-Mapper) for use in Ruby on Rails and Rack
220
- frameworks heavily inspired by ActiveRecord.
221
-
222
- '
219
+ description: |
220
+ A Neo4j OGM (Object-Graph-Mapper) for use in Ruby on Rails and Rack frameworks heavily inspired by ActiveRecord.
223
221
  email: andreas.ronge@gmail.com, brian@brian-underwood.codes, chris@subvertallmedia.com
224
222
  executables:
225
223
  - neo4j-jars
@@ -232,6 +230,7 @@ files:
232
230
  - Gemfile
233
231
  - README.md
234
232
  - bin/neo4j-jars
233
+ - bin/rake
235
234
  - config/locales/en.yml
236
235
  - config/neo4j/add_classnames.yml
237
236
  - config/neo4j/config.yml
@@ -351,8 +350,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
351
350
  version: '0'
352
351
  requirements: []
353
352
  rubyforge_project: neo4j
354
- rubygems_version: 2.5.1
353
+ rubygems_version: 2.4.5.1
355
354
  signing_key:
356
355
  specification_version: 4
357
356
  summary: A graph database for Ruby
358
357
  test_files: []
358
+ has_rdoc: true