flexirest 1.3.29 → 1.3.30

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: 09154cafbcffc062d4414e0cb632075b5404fde8
4
- data.tar.gz: e5480c5145b3218380e06fd01c67d02956defd2b
3
+ metadata.gz: 6f486c610e559403248c73cd363d61cef2cc6189
4
+ data.tar.gz: 4c9dbe026c0ca6a04957882f88cd06ffb530b294
5
5
  SHA512:
6
- metadata.gz: 890f5a711e634ec310a781ccd1e404e53ad7ffa1fc341b077de6277746f5f351c3d833f28883e5c3fef043f2b4351c1d5471f98d7e4610e8aba8ff357c306d65
7
- data.tar.gz: 845cad98cb6c3178b14ef44438247c3bf242a70df68ecba002eef1579959b041743171226e6c86fd80633aa2c27bed7a5ec4acfcdf127d83e17076dd64d7ac97
6
+ metadata.gz: 515563435824f29cd71526ba447b5eaa5c8408d44cddef0690cf71354d8e4b2c99841cef905095879f5cb707b5fa31a7b2014904180bad3f2fa272029405d6d4
7
+ data.tar.gz: 306bb5c6193a912a0404895b090385617a9c16644a2c371ce0b0febc27512e75ff64828277a55d15a4fa2055bdad43b82472b65c44c675171d9a419385af6ea0
data/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.3.30
4
+
5
+ Bugfix:
6
+
7
+ - Restoring cached Flexirest::ResultIterators created via a Proxy wasn't restoring correctly
8
+
3
9
  ## 1.3.29
4
10
 
5
11
  Bugfix:
@@ -70,7 +70,7 @@ module Flexirest
70
70
  if cache_store && (headers[:etag] || headers[:expires])
71
71
  key = "#{request.class_name}:#{request.original_url}"
72
72
  Flexirest::Logger.debug " \033[1;4;32m#{Flexirest.name}\033[0m #{key} - Writing to cache"
73
- cached_response = CachedResponse.new(status:response.status, result:result)
73
+ cached_response = CachedResponse.new(status:response.status, result:result, response_headers: headers)
74
74
  cached_response.etag = "#{headers[:etag]}" if headers[:etag]
75
75
  cached_response.expires = Time.parse(headers[:expires]) rescue nil if headers[:expires]
76
76
  if cached_response.etag.present? || cached_response.expires
@@ -87,12 +87,13 @@ module Flexirest
87
87
  end
88
88
 
89
89
  class CachedResponse
90
- attr_accessor :class_name, :status, :etag, :expires
90
+ attr_accessor :class_name, :status, :etag, :expires, :response_headers
91
91
 
92
92
  def initialize(options)
93
93
  @status = options[:status]
94
94
  @etag = options[:etag]
95
95
  @expires = options[:expires]
96
+ @response_headers = options[:response_headers]
96
97
 
97
98
  @class_name = options[:result].class.name
98
99
  if options[:result].is_a?(ResultIterator)
@@ -1,3 +1,3 @@
1
1
  module Flexirest
2
- VERSION = "1.3.29"
2
+ VERSION = "1.3.30"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: flexirest
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.29
4
+ version: 1.3.30
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andy Jeffries