neo4j 8.0.3 → 8.0.4

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: 2141931cc532e8ab184ede7daf3752b11b3ec4ac
4
- data.tar.gz: a3fcb4dfd271eb9a284fdc3d71d5c179f4842692
3
+ metadata.gz: 0128c84d65f0d8f2258c186af98b72fbfe619401
4
+ data.tar.gz: c55af92c96646da112414fdab2e07087669c85de
5
5
  SHA512:
6
- metadata.gz: 82708b3e90a00503e03354e9726f4115f28f879f4332d90c49d14e266df86104d04d571e536ed5e5f223516536255f81efdc7282cf29e8508b8b9bc083cfb3dd
7
- data.tar.gz: cb6a87cab1f32cd22cccd0f4b63c1461a2f3809ef0b134604cf78291d882c0451b3b74099610eebe8e8ec54e0cece04ed963e90c203a515e883d10a9636bcbd7
6
+ metadata.gz: 787b8f523c9bf24a6d0733e7ae7abbd8b5089daa5545b6e2cec828f3e194d09ccea60ef53191b84d07a8c1c9c6a17386fccd7b0a9c07e0ec5e0d2818c05e010f
7
+ data.tar.gz: b20a28be010dc498c4aaa63d197d28c6e79b04da8c9852aa3c6275220a197e0964e688f64c7e1e5e9c03fe09006a9c6d39876b1dd8207ffdf5c3b015bd42ddbe
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
+ ## [8.0.4] 2016-01-03
7
+
8
+ ### Fixed
9
+
10
+ - Fixed/refactored `wait_for_connection`
11
+
6
12
  ## [8.0.3] 2016-01-03
7
13
 
8
14
  ### Fixed
data/lib/neo4j/railtie.rb CHANGED
@@ -62,7 +62,8 @@ module Neo4j
62
62
  end
63
63
 
64
64
  def setup!(neo4j_config = empty_config)
65
- type, url, path, options, wait_for_connection = final_config!(neo4j_config).values_at(:type, :url, :path, :options, :wait_for_connection)
65
+ wait_for_connection = neo4j_config.wait_for_connection
66
+ type, url, path, options = final_session_config!(neo4j_config).values_at(:type, :url, :path, :options)
66
67
  register_neo4j_cypher_logging(type || default_session_type)
67
68
 
68
69
  Neo4j::SessionManager.open_neo4j_session(type || default_session_type,
@@ -71,7 +72,7 @@ module Neo4j
71
72
  options || {})
72
73
  end
73
74
 
74
- def final_config!(neo4j_config)
75
+ def final_session_config!(neo4j_config)
75
76
  support_deprecated_session_configs!(neo4j_config)
76
77
 
77
78
  neo4j_config.session.empty? ? yaml_config_data : neo4j_config.session
data/lib/neo4j/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Neo4j
2
- VERSION = '8.0.3'
2
+ VERSION = '8.0.4'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: neo4j
3
3
  version: !ruby/object:Gem::Version
4
- version: 8.0.3
4
+ version: 8.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andreas Ronge, Brian Underwood, Chris Grigg