neo4j-core 4.0.6 → 4.0.7

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: c8a10f532c1e9366da8c78fb00e1559db6e1df3c
4
- data.tar.gz: 9882c245e2f4ee08f74266f92fe99b5b5a3a5214
3
+ metadata.gz: 72260cb19c0dbb17236bda1cfb681a6923c0f554
4
+ data.tar.gz: 38f122d33a93040f6f438ebc973825f6defd7798
5
5
  SHA512:
6
- metadata.gz: 8134a9de4f229dbff0a8861596de4af549738e894dcf89f9969a34baf86b24c7883f7ce44e78a930619712d5fe00ca6a17050867b7558286e24310b92665d0a6
7
- data.tar.gz: cfaad01822c0c7350eaa3d994e9bcf8e39545f658aa9737110965fb5e2cc08393e84072aa51689d00fa1afeb6f6d6678d9f3ac4681a77c426e12059674ecca22
6
+ metadata.gz: ca2066f8fb868ddd5f521f2930535f5164e26d37f6dadb9ede54cb413ef965e9dc5eab2dd1003f25a8052f74af72a0d77420e823f6573f80578ca4a5116f041a
7
+ data.tar.gz: ce86a44f21c7d5b3a1b971dfe4f472262f7ecee13c262cc86a3c607d6bac7f92beb175e165c6aacc27caec251cb3390f55c987058e4b06ef2db39bfe4d8014e5
@@ -1,5 +1,5 @@
1
1
  module Neo4j
2
2
  module Core
3
- VERSION = '4.0.6'
3
+ VERSION = '4.0.7'
4
4
  end
5
5
  end
@@ -22,9 +22,9 @@ module Neo4j
22
22
  # @param [Hash] params could be empty or contain basic authentication user and password
23
23
  # @return [Faraday]
24
24
  # @see https://github.com/lostisland/faraday
25
- def self.create_connection(params)
25
+ def self.create_connection(params, url = nil)
26
26
  init_params = params[:initialize] && params.delete(:initialize)
27
- conn = Faraday.new(init_params) do |b|
27
+ conn = Faraday.new(url, init_params) do |b|
28
28
  b.request :basic_auth, params[:basic_auth][:username], params[:basic_auth][:password] if params[:basic_auth]
29
29
  b.request :json
30
30
  # b.response :logger
@@ -44,8 +44,8 @@ module Neo4j
44
44
  # @param [Hash] params faraday params, see #create_connection or an already created faraday connection
45
45
  def self.open(endpoint_url = nil, params = {})
46
46
  extract_basic_auth(endpoint_url, params)
47
- connection = params[:connection] || create_connection(params)
48
47
  url = endpoint_url || 'http://localhost:7474'
48
+ connection = params[:connection] || create_connection(params, url)
49
49
  response = connection.get(url)
50
50
  fail "Server not available on #{url} (response code #{response.status})" unless response.status == 200
51
51
  establish_session(response.body, connection)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: neo4j-core
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.0.6
4
+ version: 4.0.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andreas Ronge, Chris Grigg, Brian Underwood