Skip to content

Commit f9fb19f

Browse files
committed
Merge branch 'develop'
2 parents 334b0eb + aae1d60 commit f9fb19f

File tree

4 files changed

+2
-5
lines changed

4 files changed

+2
-5
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ Version History
33
* All Version bumps are required to update this file as well!!
44
----
55

6+
* 0.8.0 - Revert ETag caching flow implementation
67
* 0.7.0 - Implement ability to specify OAuth scopes
78
* 0.6.1 - Update various dependencies
89
* 0.6.0 - Implement ETag-based caching flow for all endpoints

cortex-client.gemspec

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ Gem::Specification.new do |s|
2020

2121
s.add_dependency 'faraday', '~> 0.9'
2222
s.add_dependency 'faraday_middleware', '~> 0.10'
23-
s.add_dependency 'faraday-http-cache', '~> 1.3.0'
2423
s.add_dependency 'oauth2', '~> 1.1.0'
2524
s.add_dependency 'cortex-exceptions', '~> 0.0.4'
2625
s.add_dependency 'hashie', '~> 3.4'

lib/cortex/connection.rb

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
require 'faraday'
22
require 'faraday_middleware'
33
require 'cortex/faraday_middleware'
4-
require 'faraday-http-cache'
54

65
module Cortex
76
module Connection
@@ -19,8 +18,6 @@ def connection
1918

2019
Faraday.new options do |conn|
2120
conn.use Cortex::FaradayMiddleware
22-
23-
conn.use Faraday::HttpCache, store: Rails.cache, logger: Rails.logger if defined? Rails
2421
conn.request :oauth2, access_token.is_a?(OAuth2::AccessToken) ? access_token.token : access_token
2522
conn.request :json
2623
conn.response :json, :content_type => /\bjson$/

lib/cortex/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module Cortex
2-
VERSION = '0.7.0'
2+
VERSION = '0.8.0'
33
end

0 commit comments

Comments
 (0)