Skip to content

Latest commit

 

History

History
95 lines (58 loc) · 3.22 KB

CHANGELOG.md

File metadata and controls

95 lines (58 loc) · 3.22 KB

Unreleased

2.5.1 (2024-01-16)

  • Support headers passed in using string keys when Vary header is in a different case via #137 (thanks @evman182)

2.5.0 (2023-04-27)

  • Add reason_phrase from the HTTP response to the data stored in the cache according to RFC7230 via #134

2.4.1 (2022-08-08)

  • Require Logger in BaseStrategy via #131
  • Use unique and sorted headers from the Vary header in ByVary strategy via #132

2.4.0 (2022-06-07)

  • Introduced a new strategy option to support different cache storage strategies.
  • The original strategy moved from Faraday::HttpCache::Storage to Faraday::HttpCache::Strategies::ByUrl.
  • The new Faraday::HttpCache::Strategies::ByVary strategy uses headers from Vary header to generate cache keys. It also uses the index with Vary headers mapped to the request URL.
  • Faraday::HttpCache::Storage class deprecated.

2.3.0 (2022-05-25)

  • Added support for Ruby 3.0, 3.1.
  • Ruby version constraint changed to 2.4.0.

2.2.0 (2019-04-13)

  • Support for faraday 1.x

2.0.0 (2016-11-16)

  • Ruby version constraint changed to 2.1.0.
  • Changed Faraday::HttpCache#initialize to use keyword arguments instead of a Hash.

1.3.1 (2016-08-12)

  • Reject invalid Date response headers instead of letting the exception bubble.

1.3.0 (2016-03-24)

  • no-cache responses won't be treated as fresh and will always be revalidated.

1.2.2 (2015-08-27)

  • Update the CACHE_STATUSES to properly instrument requests with the Cache-Control: no-store header.

1.2.1

  • Update the CACHE_STATUSES to better instrument invalid and uncacheable responses.

1.2.0 (2015-08-14)

  • Deprecate the default instrumenter name process_request.http_cache.faraday in favor of http_cache.faraday.

1.1.1 (2015-06-04)

  • Added support for :instrumenter_name option.
  • 307 responses (Temporary Redirects) are now cached.
  • Do not crash on non RFC 2616 compliant Expires headers.

1.1.0 (2015-04-02)

  • Instrumentation supported. (by @dasch)
  • Illegal headers from 304 responses will be removed before updating the cached responses. (by @dasch)

1.0.1 (2015-01-30)

  • Fixed HTTP method matching that failed when using the Marshal serializer. (by @toddmazierski)

1.0.0 (2015-01-27)

  • Deprecated configuration API removed.
  • Better support for the caching mechanisms described in the RFC 7234, including:
    • Reworked the data structures that are stored in the underlying store to store responses under the same URL and HTTP method.
    • Cached responses are invalidated after a PUT/POST/DELETE request.
    • Support for the Vary header as a second logic to retrieve a stored response.

0.4.2 (2014-08-17)

  • Header values are explicitly part of the cache key for all requests.

0.4.1 (2014-06-26)

  • Encoding conversion exceptions will emit a log warning before raising through the middleware stack. Use Marshal instead of JSON to serialize such requests.
  • Compatible with latest ActiveSupport and Faraday versions.

0.4.0 (2014-01-30)