Skip to content

Releases: harvard-lil/scoop

0.4.3

21 Jun 17:47
Compare
Choose a tag to compare

Changelog

  • Temporarily downgraded yt-dlp (#161)
  • Version bump

0.4.2

21 Jun 15:28
Compare
Choose a tag to compare

Changelog

  • Dependencies update (#160)
  • Non-web content detection tweak: better handling of missing content-type (#160)
  • Version bump

0.4.1

15 Jun 16:35
Compare
Choose a tag to compare

Changelog

  • Dependencies update (#159)
  • Version bump

0.4.0

16 May 15:42
Compare
Choose a tag to compare

Changelog

  • Breaking Change: Object returned by Scoop.summary() and the --json-summary-output CLI option was refactored. It now contains a provenanceInfo property, which:
    • Is present is provenanceSummary option is on
    • Replaces - and now contains - the blockedRequests, noArchiveUrls, captureIp and userAgent properties.
    • See: #155, source code
  • Bug fix: An empty string can now be passed to the --blocklist CLI option to indicate that the blocklist should be empty (#154)
  • Version bump

0.3.1

08 May 13:29
Compare
Choose a tag to compare

Changelog

  • Content-type of the target URL is now retained and exposed via Scoop.targetUrlContentType. This information is present in the object Scoop.summary() returns, and therefore the JSON file that the --json-summary-output CLI option generates (#153)
  • Version bump

0.3.0

05 May 22:16
Compare
Choose a tag to compare

Changelog

  • Breaking Change: states property of Scoop.summary() and --json-summary-output is now an array. (#152)
// Before 
"state": 3,
"states": {
  "INIT": 0,
  "SETUP": 1,
  "CAPTURE": 2,
  "COMPLETE": 3,
  "PARTIAL": 4,
  "FAILED": 5,
  "RECONSTRUCTED": 6
}
// After 
"state": 3,
"states": [
  "INIT",
  "SETUP",
  "CAPTURE",
  "COMPLETE",
  "PARTIAL",
  "FAILED",
  "RECONSTRUCTED"
]
  • Version bump

0.2.7

05 May 17:13
Compare
Choose a tag to compare

Changelog

  • New --export-attachments-output CLI option for exporting attachments (screenshot, pdf-snapshot, etc). (#150)
  • Scoop.summary() now features an attachment property listing and categorizing attachments and their filenames (#150)
  • Bug fix: crip install on Linux aarch64 (#149)
  • Version bump

0.2.6

25 Apr 19:25
Compare
Choose a tag to compare

Changelog

  • Upgrade to js-wacz 0.0.10 which fixes a WACZ standard compliance issue (#147)
  • Version bump

0.2.5

21 Apr 21:03
Compare
Choose a tag to compare

Changelog

  • Improved error reporting (#145)
  • Version bump

Misc

  • Scoop has been tested with Node.js 20.x

0.2.4

21 Apr 15:34
Compare
Choose a tag to compare

Changelog

  • Dependencies update
  • Version bump