Releases: hypermedia-app/Alcaeus
Releases · hypermedia-app/Alcaeus
v2.3.1
Patch Changes
- eabfc12: Also support function to initialize fetch
RequestInit
v2.3.0
Minor Changes
- 1529482: Allow setting all of fetch
RequestInit
both globally, as well as on a per-request basis
v2.2.4
Patch Changes
- f883d78:
Invalid base URL
error would have been thrown when performing request of a relative URL
v2.2.3
Patch Changes
- 63139d0: Update
@tpluscode/rdf-ns-builders
to v2
v2.2.2
Patch Changes
- 61e9e74: Update
@types/parse-link-header
to v2
v2.2.1
Patch Changes
-
2b5ee86: Make factories exported by alcaeus/node
and alcaeus/web
generic
This alleviates a breaking change inadvertently introduced in v2.2, which was to make DatasetCore
the default dataset type for the client. Since it provides less methods than the previous default rdf-dataset-indexed
, users may want to provide a different factory, such as rdf-ext
.
import { create } from "alcaeus/web"; // or 'alcaeus/node'
import $rdf from "rdf-ext";
// client's type will be inferred as HydraClient<DatasetExt>
const client = create({
datasetFactory: $rdf.dataset
});
v2.2.0
Minor Changes
- a5b52c5: Removed dependencies
rdf-dataset-indexed
, rdf-transform-triple-to-quad
. Replaced with @rdfjs/dataset
and rdf-dataset-ext
Patch Changes
- f23f1e0: Operation body was ignored when
headers
were not provided
- 512bcdf: Update RDF/JS formats packages
v2.1.3
Patch Changes
- 996243b: build(deps): bump parse-link-header from 1.0.1 to 2.0.0
v2.1.2
Patch Changes
- e0f34dc:
ResourceRepresentation#get
would not return resources which are only object of a triple
v2.1.1
Patch Changes
- 1318431: Builds would fail with "Could not find a declaration file for module 'parse-link-header'"