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 +4 -4
- data/CHANGELOG.md +12 -0
- data/lib/neo4j/tasks/migration.rake +1 -1
- data/lib/neo4j/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 160a03bbf616927228ed6a23603137686259a25a
|
4
|
+
data.tar.gz: 803ea0f8708abb56d3c2607a64ca142164cbeeb2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2bf1e599fc2e9ca3ff1d9975f4f7c1e4f13f023a4646fa81a8fae97f0445ae8a4d4a9aad71cea5badbdd6ddff3e63b9b5dbfd88b7b6e0657ab8ce43180e78bc4
|
7
|
+
data.tar.gz: 5e8f15c0f8bd76ceb9503ddcfaccb5a86a42f909090af7d31ece23db3c7ec0b1bd69cfc25007369c7ef0b8e7820115a5f8a0381ba550056aa9ce3fcec854e727
|
data/CHANGELOG.md
CHANGED
@@ -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
|
|
data/lib/neo4j/version.rb
CHANGED
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.
|
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-
|
11
|
+
date: 2017-10-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: orm_adapter
|