Skip to content

v2.0.0

Choose a tag to compare

@github-actions github-actions released this 07 Jun 11:12
· 85 commits to main since this release
20339a2

Major Changes

  • #4 d1ad65c Thanks @flyon! - Track @_linked/core storage-API renames and adopt the new BackendAPIStore config-object constructor.

    Breaking — call-site renames (paired with the matching changes in @_linked/core):

    • LinkedStorage.setDefaultStoresetDefaultDataset
    • LinkedStorage.setStoreForShapessetDatasetForShapes
    • LinkedStorage.getDefaultStoregetDefaultDataset
    • LinkedStorage.getStoresgetDatasets
    • SparqlStoreSparqlDataset

    Breaking — BackendAPIStore constructor takes a config object:

    // before
    new BackendAPIStore("appData");
    
    // after
    new BackendAPIStore({ name: "appData" });

    The config field is name (renamed from alias in the intermediate iteration).

    Fix — scoped-package /call routes. Backend now correctly routes /call/@scope/pkg/method requests, not just /call/pkg/method.

    Fix — relative bundle URLs in dev. Drops the baked-in :4000 origin so bundle URLs work whatever PORT the dev server binds to.

    Docs. Constructor doc-comments refreshed from the older lincd naming to linked.

Minor Changes

  • #4 2ae7a72 Thanks @flyon! - Update BackendAPIStore to implement IDataset (renamed from IQuadStore in @_linked/core).

    No functional change — import path and interface name updated to match the new @_linked/core export.