Releases: harvard-lil/scoop
Releases · harvard-lil/scoop
0.4.4
0.4.3
0.4.2
0.4.1
0.4.0
Changelog
- Breaking Change: Object returned by
Scoop.summary()
and the--json-summary-output
CLI option was refactored. It now contains aprovenanceInfo
property, which:- Is present is
provenanceSummary
option is on - Replaces - and now contains - the
blockedRequests
,noArchiveUrls
,captureIp
anduserAgent
properties. - See: #155, source code
- Is present is
- 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
0.3.0
Changelog
- Breaking Change:
states
property ofScoop.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
0.2.6
Changelog
- Upgrade to
js-wacz
0.0.10 which fixes a WACZ standard compliance issue (#147) - Version bump