@_linked/core 2.14.2 → 2.14.3-next.20260709134415

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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## 2.14.3
4
+
5
+ ### Patch Changes
6
+
7
+ - [#169](https://github.com/linked-cm/core/pull/169) [`806dbec`](https://github.com/linked-cm/core/commit/806dbec8aab355a636dc41dc91fa7ef8b703c5bc) Thanks [@flyon](https://github.com/flyon)! - docs: surface the owned-properties cleanup in the README overview — the "Full CRUD Operations" feature bullet now notes automatic cleanup of owned (`contains`) values on replace/remove/delete and links to the "Owned properties (`contains` / `dependent`)" section.
8
+
3
9
  ## 2.14.2
4
10
 
5
11
  ### Patch Changes
package/README.md CHANGED
@@ -11,7 +11,7 @@ Linked gives you a schema-parameterized query language and SHACL-driven Shape cl
11
11
  - **DSL-JSON, the standard wire format**: Every query — select, create, update, delete — serializes to a compact, lossless JSON structure with `query.toJSON()` and rehydrates with `fromJSON(json)`. This is the canonical interchange format for Linked queries: send it over HTTP, cache it, queue it, or implement it in another language. See **[DSL-JSON](./documentation/dsl-json.md)**.
12
12
  - **Dynamic Query Building**: Build queries programmatically with `SelectBuilder` (and `Create`/`Update`/`DeleteBuilder`), compose field selections with `FieldSet` — for CMS dashboards, dynamic forms, and API-driven query construction.
13
13
  - **Shape Classes (SHACL)**: TypeScript classes that generate SHACL shape metadata.
14
- - **Full CRUD Operations**: Query, create, update, and delete data using the same Shape-based API — including expression-based updates, conditional mutations, and bulk operations.
14
+ - **Full CRUD Operations**: Query, create, update, and delete data using the same Shape-based API — including expression-based updates, conditional mutations, bulk operations, and automatic cleanup of owned (`contains`) values on replace/remove/delete (see [Owned properties](#owned-properties-contains--dependent)).
15
15
  - **Dataset Routing**: `LinkedStorage` routes query objects (by their target shape) to your configured dataset(s) that implement `IDataset`.
16
16
  - **Automatic Data Validation**: SHACL shapes can be synced to your store for schema-level validation, and enforced at runtime by stores that support it.
17
17
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@_linked/core",
3
- "version": "2.14.2",
3
+ "version": "2.14.3-next.20260709134415",
4
4
  "license": "MIT",
5
5
  "linkedPackage": true,
6
6
  "type": "module",