neo4j 9.0.3 → 9.0.4

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: a7ca81ec5992d720e475153b67b5ff8925ae7ed7
4
- data.tar.gz: 66b0e1127889493d380fdc4eab3f40bbfda18c92
3
+ metadata.gz: 160a03bbf616927228ed6a23603137686259a25a
4
+ data.tar.gz: 803ea0f8708abb56d3c2607a64ca142164cbeeb2
5
5
  SHA512:
6
- metadata.gz: 82e26a23091d24eb800fbc3913112ab9e72c0718a5c5bed9c607da40e8283f4f03d701fe4e8e2c9e122256dd79e3198070f3501a8b107a6c8c433d81cf408a26
7
- data.tar.gz: 0b84a21768da316da5b34d70a6db0563405f49b361826f9cfc3ccdb71c4543eb453dbd0245f278319e84522dcce84022965b10b54970b065e0f34b2acc799d65
6
+ metadata.gz: 2bf1e599fc2e9ca3ff1d9975f4f7c1e4f13f023a4646fa81a8fae97f0445ae8a4d4a9aad71cea5badbdd6ddff3e63b9b5dbfd88b7b6e0657ab8ce43180e78bc4
7
+ data.tar.gz: 5e8f15c0f8bd76ceb9503ddcfaccb5a86a42f909090af7d31ece23db3c7ec0b1bd69cfc25007369c7ef0b8e7820115a5f8a0381ba550056aa9ce3fcec854e727
@@ -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
+ ## [9.0.4] 2017-10-15
7
+
8
+ ## Fixes
9
+
10
+ - Change YAML.safe_load call in `neo4j:schema:load` rake task to allow Symbols (thanks @evanob / see #1439)
11
+
6
12
  ## [9.0.3] 2017-10-12
7
13
 
8
14
  ### Fixed
@@ -25,6 +31,12 @@ This project adheres to [Semantic Versioning](http://semver.org/).
25
31
 
26
32
  - By default, `enum` values are now case-insensitive (but there are local and global `_case_sensitive` options [see the docs](http://neo4jrb.readthedocs.io/en/9.0.x/ActiveNode.html#enums)) (thanks @thefliik / see #1419)
27
33
 
34
+ ## [8.3.3] 2017-10-15
35
+
36
+ ## Fixes
37
+
38
+ - Change YAML.safe_load call in `neo4j:schema:load` rake task to allow Symbols (thanks @evanob / see #1439)
39
+
28
40
  ## [8.3.2] 2017-10-12
29
41
 
30
42
  ## Fixes
@@ -95,7 +95,7 @@ COMMENT
95
95
 
96
96
  args.with_defaults(remove_missing: false)
97
97
 
98
- schema_data = YAML.safe_load(File.read(SCHEMA_YAML_PATH))
98
+ schema_data = YAML.safe_load(File.read(SCHEMA_YAML_PATH), [Symbol])
99
99
 
100
100
  Neo4j::Core::CypherSession::Adaptors::Base.subscribe_to_query(&method(:puts))
101
101
 
@@ -1,3 +1,3 @@
1
1
  module Neo4j
2
- VERSION = '9.0.3'
2
+ VERSION = '9.0.4'
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: 9.0.3
4
+ version: 9.0.4
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: 2017-10-13 00:00:00.000000000 Z
11
+ date: 2017-10-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: orm_adapter