- f669954: Wrong name for the manifest was listed in
package.json
- d3927ba:
manifest.json
was inadvertently removed from v2.2 - 69fe472: Context would never be loaded because of error in condition
- 5867c79: Added type declarations
- d8bdf29: The package now includes a copy of the CSVW context to avoid rate limiting issues when frequently loading the context from the web. To force using the remote context, pass
useRemoteCsvwContext: true
to thefetch
step options.
-
ce0bdf4: Removed dependency on any RDF/JS Environment. The CLI provides it at runtime to ensure that steps use the same factories. Step implementors are encouraged to use the environment provided by the barnard59 runtime insead of importing directly.
-import rdf from 'rdf-ext' export function myStep() { - const dataset = rdf.dataset() + const dataset = this.env.dataset() return rdf.dataset().toStream() }
- 6be7cd8: Literals loaded as step arguments will be converted to matching JS type (closes #116)
- 72648c5: Change the operation URLs to be HTTPS (re zazuko/barnard59-website#4). This will only be a breaking change to those using the shorthand step syntax.
- 0c07f01: Updated
@rdfjs/fetch
to v3
- 93a11f5: Added module with a commonly used CSVW filter