Skip to content

v1.4.0

Choose a tag to compare

@linked-cm-release-bot linked-cm-release-bot released this 06 Jul 11:01
· 29 commits to main since this release
c8dc573

Minor Changes

  • #23 b436d21 Thanks @flyon! - ESM-only build + core 2.10.x compatibility fix.

    • .build() removal: the client preload path in LinkedComponent called
      getQueryDispatch().selectQuery(requestQuery.build()). QueryBuilder.build()
      was removed in @_linked/core 2.10.x — datasets now receive the live/closed
      query directly. Both the single and set component paths now pass requestQuery
      straight to selectQuery. Required for consumers on core ≥ 2.10.x.
    • ESM-only: the package now ships ESM only. package.json gains
      "type": "module", main/module/types point at lib/esm, and every
      require condition is dropped from exports. The dual (CJS+ESM) build and the
      dual-package post-step are removed; build is a single tsc -p tsconfig-esm.json.