@_linked/core 2.7.0-next.20260619211918 → 2.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/CHANGELOG.md +4 -4
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -4,12 +4,12 @@
4
4
 
5
5
  ### Minor Changes
6
6
 
7
- - [#91](https://github.com/linked-cm/core/pull/91) [`46b519e`](https://github.com/linked-cm/core/commit/46b519eae3abf9a243f2f04acb04e338635b2e6a) Thanks [@flyon](https://github.com/flyon)! - Development-mode source resolution and an instance-count diagnostic.
7
+ - [#93](https://github.com/linked-cm/core/pull/93) [`89b3f55`](https://github.com/linked-cm/core/commit/89b3f5503329d88d0e6d9fe0a2a1418e06a58252) Thanks [@flyon](https://github.com/flyon)! - Development-mode source resolution and an instance-count diagnostic.
8
8
 
9
9
  - **Conditional `development` exports.** `package.json` now declares a `development` export condition resolving to `./src/*.ts` (and `./src/index.ts` for the root). Vite's browser-side resolver picks the TypeScript source in dev mode, enabling HMR-on-source for `@_linked/core` from a consuming app. Production resolution (`import` → `lib/esm`, `require` → `lib/cjs`, `types`) is unchanged.
10
10
  - **`LinkedStorage.getLoadedInstanceCount(): number`** — new public static method reporting how many `@_linked/core` instances are registered on the global tree (a diagnostic for the Vite-SSR-vs-Node-resolver dual-load split).
11
11
 
12
- - [#91](https://github.com/linked-cm/core/pull/91) [`46b519e`](https://github.com/linked-cm/core/commit/46b519eae3abf9a243f2f04acb04e338635b2e6a) Thanks [@flyon](https://github.com/flyon)! - Shape, package, and framework-vocabulary IRIs now use the canonical `linked.cm` namespace, with a configurable per-package publish root.
12
+ - [#93](https://github.com/linked-cm/core/pull/93) [`89b3f55`](https://github.com/linked-cm/core/commit/89b3f5503329d88d0e6d9fe0a2a1418e06a58252) Thanks [@flyon](https://github.com/flyon)! - Shape, package, and framework-vocabulary IRIs now use the canonical `linked.cm` namespace, with a configurable per-package publish root.
13
13
 
14
14
  **New scheme (arch-aligned):**
15
15
 
@@ -25,7 +25,7 @@
25
25
 
26
26
  **Breaking:** generated shape/package/term IRIs change. Consumers that hardcoded `data.lincd.org` IRIs, imported `LINCD_DATA_ROOT`, or used the `lincd` ontology export must update. Stored data keyed on the old IRIs needs migration.
27
27
 
28
- - [#91](https://github.com/linked-cm/core/pull/91) [`46b519e`](https://github.com/linked-cm/core/commit/46b519eae3abf9a243f2f04acb04e338635b2e6a) Thanks [@flyon](https://github.com/flyon)! - SPARQL generation: structured property paths on named properties, and inner pagination for nested selects.
28
+ - [#93](https://github.com/linked-cm/core/pull/93) [`89b3f55`](https://github.com/linked-cm/core/commit/89b3f5503329d88d0e6d9fe0a2a1418e06a58252) Thanks [@flyon](https://github.com/flyon)! - SPARQL generation: structured property paths on named properties, and inner pagination for nested selects.
29
29
 
30
30
  **Structured `sh:path` on named properties now resolve correctly.** A query that references a named property whose SHACL `sh:path` is structured (a sequence `[a, b]`, an inverse `^p`, or an alternative `a|b`) previously collapsed to a shadow IRI and matched nothing. It now emits the correct SPARQL property-path predicate. Simple single-predicate properties are unaffected (output unchanged).
31
31
 
@@ -50,7 +50,7 @@
50
50
 
51
51
  ### Patch Changes
52
52
 
53
- - [#91](https://github.com/linked-cm/core/pull/91) [`46b519e`](https://github.com/linked-cm/core/commit/46b519eae3abf9a243f2f04acb04e338635b2e6a) Thanks [@flyon](https://github.com/flyon)! - `initTree()` is now idempotent: if `global.lincd` already exists (which
53
+ - [#93](https://github.com/linked-cm/core/pull/93) [`89b3f55`](https://github.com/linked-cm/core/commit/89b3f5503329d88d0e6d9fe0a2a1418e06a58252) Thanks [@flyon](https://github.com/flyon)! - `initTree()` is now idempotent: if `global.lincd` already exists (which
54
54
  happens structurally under Vite SSR — Vite resolves `@_linked/core/utils/Package`
55
55
  from `src/`, and any `/* @vite-ignore */` dynamic import via Node's resolver
56
56
  gets it from `lib/esm/`), the function attaches to the existing registry
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@_linked/core",
3
- "version": "2.7.0-next.20260619211918",
3
+ "version": "2.7.0",
4
4
  "license": "MIT",
5
5
  "linkedPackage": true,
6
6
  "description": "Linked.js core query and SHACL shape DSL (copy-then-prune baseline)",