Skip to contents

httpcache 1.2.0

CRAN release: 2021-01-10

  • Update tests to use latest features and function naming from httptest

httpcache 1.1.0

CRAN release: 2017-10-17

  • Remove cachedDownload. Use GET(url, config=write_disk(destfile)) instead, which caches normally.

httpcache 1.0.2

CRAN release: 2017-08-28

  • Minor adjustment to a validation function’s error message format to adapt to changes in R’s development version.

httpcache 1.0.0

CRAN release: 2017-01-03

New cached request functions:

  • cachedPOST() to cache results of a POST request for resources where a POST gets content and does not alter server state.
  • cachedDownload to cache the result of download.file.

Functions to access the cache API:

Tools to save and restore cached queries across R sessions:

Logging improvements:

  • Add content-length and all curl request timings (not just “total”) to log messages.
  • Trim trailing whitespace in log messages
  • Fix loadLogfile() for when reading a log with only CACHE messages

httpcache 0.1.8

CRAN release: 2016-08-29

  • Include milliseconds in timestamps

httpcache 0.1.6

  • Improve error message for when a non-character input is given to GET()

httpcache 0.1.4

CRAN release: 2016-03-28

  • Ensure that caching is on by default
  • Change GET() not to check cache if an uncached request is made. Previously, uncached() checked cache but did not write to the cache.
  • Fix regular expression matching in popQuery
  • Improve escaping of characters in URLs for dropping cache by pattern
  • Add vignette

httpcache 0.1.2

CRAN release: 2016-02-23

  • Revise and resubmit to CRAN

httpcache 0.1.0

  • Extract code and tests from the crunch package
  • Document and export functions for caching, invalidating, and logging