neo4j-core 7.1.0 → 7.1.1

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: 5d3b6ac3740427c0563335877a6c3118273cfc5c
4
- data.tar.gz: 386fdc6211adfe659b9a938394319464e3304324
3
+ metadata.gz: 485594509c2b325c2bca55c60e512087385d3767
4
+ data.tar.gz: 81014c189a0ded8e37182e33a629fe4cb09f2afb
5
5
  SHA512:
6
- metadata.gz: e001584b336ba8d1926da2ba8f8adc0144168b0b78aaa121ae353e649003ab7f2b589e1decb9f2300c159209c2069073e76477b5c6d2bb07d25afc1cc30c71e9
7
- data.tar.gz: 9301fc1f1362b2cbd8a22e555fb572b5f94aba25dec7695df90e3e113f8c26bc2d8a329a7d55f2372160f68f29c71fec9be300c47907587c5687b5a624fc55be
6
+ metadata.gz: 285640de7d233ccb0f0b124efd55acf74561f6e42b0f943c331d4f2ea554ee94eafd4d88b841b3cab9c4798705dfaf57f3558290cb063b8b9c9c52a58ab2b8f0
7
+ data.tar.gz: 5b89f820856cdf73647aae59ba69c4b3d450edf9047ba5bd7da2d78645891899308186074dc5d2fadfab39ab0a4fcfb99c8f089571b08a1edec7e8fcd2180d69
@@ -1,5 +1,5 @@
1
1
  module Neo4j
2
2
  module Core
3
- VERSION = '7.1.0'
3
+ VERSION = '7.1.1'
4
4
  end
5
5
  end
@@ -31,7 +31,9 @@ module Neo4j
31
31
 
32
32
  b.response :multi_json, symbolize_keys: true, content_type: 'application/json'
33
33
  # b.use Faraday::Response::RaiseError
34
- b.use Faraday::Adapter::NetHttpPersistent
34
+ require 'typhoeus'
35
+ require 'typhoeus/adapters/faraday'
36
+ b.adapter :typhoeus
35
37
  # b.adapter Faraday.default_adapter
36
38
  end
37
39
  conn.headers = {'Content-Type' => 'application/json', 'User-Agent' => ::Neo4j::Session.user_agent_string}
@@ -16,6 +16,8 @@ module Neo4j
16
16
  end
17
17
 
18
18
  DEFAULT_FARADAY_CONFIGURATOR = proc do |faraday|
19
+ require 'typhoeus'
20
+ require 'typhoeus/adapters/faraday'
19
21
  faraday.adapter :typhoeus
20
22
  end
21
23
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: neo4j-core
3
3
  version: !ruby/object:Gem::Version
4
- version: 7.1.0
4
+ version: 7.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andreas Ronge, Chris Grigg, Brian Underwood
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-04-28 00:00:00.000000000 Z
11
+ date: 2017-05-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday