@_linked/core 2.5.0 → 2.6.0-next.20260508143726

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 +5 -9
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Changelog
2
2
 
3
- ## 2.5.0
3
+ ## 2.6.0
4
4
 
5
5
  ### Minor Changes
6
6
 
@@ -21,20 +21,16 @@
21
21
 
22
22
  ### Patch Changes
23
23
 
24
- - [#70](https://github.com/linked-cm/core/pull/70) [`e39f5fc`](https://github.com/linked-cm/core/commit/e39f5fc177648bef4100242abf4b15c3380b89cc) Thanks [@flyon](https://github.com/flyon)! - `linkedShape`: store un-sanitized `packageName` on each shape constructor during registration. Consumers like `LincdServerProxy.parseShape` can now route backend calls using the real module specifier (e.g. `@_linked/server`) rather than extracting from the URI the URI form is lossy (`URI.sanitize` strips `@` and `/` to `-`), so round-tripping the sanitized form as a module specifier fails module resolution.
25
-
26
- ## 2.4.1
27
-
28
- ### Patch Changes
24
+ - [#60](https://github.com/linked-cm/core/pull/60) [`ec239d3`](https://github.com/linked-cm/core/commit/ec239d301d38580b3e58eee1227090dd5f831c2a) Thanks [@flyon](https://github.com/flyon)! - Fix QueryBuilder.toJSON() to serialize where, orderBy, minus, and preload clauses that were previously silently dropped during JSON round-trips
29
25
 
30
- - [#60](https://github.com/Semantu/linked/pull/60) [`ec239d3`](https://github.com/Semantu/linked/commit/ec239d301d38580b3e58eee1227090dd5f831c2a) Thanks [@flyon](https://github.com/flyon)! - Fix QueryBuilder.toJSON() to serialize where, orderBy, minus, and preload clauses that were previously silently dropped during JSON round-trips
31
-
32
- - [#64](https://github.com/Semantu/linked/pull/64) [`a8d9ad9`](https://github.com/Semantu/linked/commit/a8d9ad955579418388649b524b4bb30ce2654d67) Thanks [@flyon](https://github.com/flyon)! - Refine SPARQL select lowering so top-level null-rejecting filters emit required triples instead of redundant `OPTIONAL` bindings. Queries like `Person.select().where((p) => p.name.equals('Semmy'))` now lower to a required `?a0 <name> ?a0_name` triple, while cases that still need nullable behavior such as `p.name.equals('Jinx').or(p.hobby.equals('Jogging'))` remain optional.
26
+ - [#64](https://github.com/linked-cm/core/pull/64) [`a8d9ad9`](https://github.com/linked-cm/core/commit/a8d9ad955579418388649b524b4bb30ce2654d67) Thanks [@flyon](https://github.com/flyon)! - Refine SPARQL select lowering so top-level null-rejecting filters emit required triples instead of redundant `OPTIONAL` bindings. Queries like `Person.select().where((p) => p.name.equals('Semmy'))` now lower to a required `?a0 <name> ?a0_name` triple, while cases that still need nullable behavior such as `p.name.equals('Jinx').or(p.hobby.equals('Jogging'))` remain optional.
33
27
 
34
28
  This change does not add new DSL APIs, but it does change the generated SPARQL shape for some outer `where()` clauses to better match hand-written intent. Inline traversal `.where(...)`, `EXISTS` filters, and aggregate `HAVING` paths keep their previous behavior.
35
29
 
36
30
  See `documentation/sparql-algebra.md` for the updated lowering rules and examples.
37
31
 
32
+ - [#70](https://github.com/linked-cm/core/pull/70) [`e39f5fc`](https://github.com/linked-cm/core/commit/e39f5fc177648bef4100242abf4b15c3380b89cc) Thanks [@flyon](https://github.com/flyon)! - `linkedShape`: store un-sanitized `packageName` on each shape constructor during registration. Consumers like `LincdServerProxy.parseShape` can now route backend calls using the real module specifier (e.g. `@_linked/server`) rather than extracting from the URI — the URI form is lossy (`URI.sanitize` strips `@` and `/` to `-`), so round-tripping the sanitized form as a module specifier fails module resolution.
33
+
38
34
  ## 2.4.0
39
35
 
40
36
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@_linked/core",
3
- "version": "2.5.0",
3
+ "version": "2.6.0-next.20260508143726",
4
4
  "license": "MIT",
5
5
  "linkedPackage": true,
6
6
  "description": "Linked.js core query and SHACL shape DSL (copy-then-prune baseline)",