@_linked/core 2.3.0-next.20260325032529 → 2.3.0-next.20260325033717

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 +1 -16
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -54,22 +54,7 @@
54
54
  ### Patch Changes
55
55
 
56
56
  - [#37](https://github.com/Semantu/linked/pull/37) [`0a3adc1`](https://github.com/Semantu/linked/commit/0a3adc1b9c47d9101da6d5c8b09e44531e2e396f) Thanks [@flyon](https://github.com/flyon)! - Fix SPARQL generation for `.where()` filters with OR conditions and `.every()`/`.some()` quantifiers.
57
-
58
- ### Inline where with OR filters
59
-
60
- Previously, filter property triples inside inline `.where()` blocks were required, causing OR filters to fail when some entities lacked certain properties. For example, `.where(f => f.name.equals('Jinx').or(f.hobby.equals('Jogging')))` would exclude entities without a `hobby` triple, even if they matched the `name` condition.
61
-
62
- Filter property triples are now wrapped in nested OPTIONALs within the filtered block, so SPARQL's `||` short-circuits correctly over unbound variables.
63
-
64
- ### EXISTS/NOT EXISTS scope fix
65
-
66
- Property triples referenced inside `.every()` and `.some()` quantifier filters were incorrectly placed in the outer query scope instead of inside the EXISTS block. This caused `.every()` to return incorrect results (e.g., not excluding entities whose members fail the predicate).
67
-
68
- Filter property triples are now emitted directly inside the EXISTS pattern where they are semantically scoped.
69
-
70
- ### Test improvements
71
-
72
- Tightened assertions across multiple integration tests (`whereOr`, `whereAnd`, `whereEvery`, `whereSequences`, `countEquals`, `selectBirthDate`, and others) to verify exact result counts, correct inclusion/exclusion, and proper type coercion.
57
+ Tightened assertions across multiple integration tests.
73
58
 
74
59
  - [#34](https://github.com/Semantu/linked/pull/34) [`e2ae4a2`](https://github.com/Semantu/linked/commit/e2ae4a28e5be28716e1634ca81d9c379a291cbc6) Thanks [@flyon](https://github.com/flyon)! - ### SHACL property path support
75
60
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@_linked/core",
3
- "version": "2.3.0-next.20260325032529",
3
+ "version": "2.3.0-next.20260325033717",
4
4
  "license": "MIT",
5
5
  "description": "Linked.js core query and SHACL shape DSL (copy-then-prune baseline)",
6
6
  "repository": {