rust-kgdb 0.6.51 → 0.6.52

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
@@ -2,6 +2,24 @@
2
2
 
3
3
  All notable changes to the rust-kgdb TypeScript SDK will be documented in this file.
4
4
 
5
+ ## [0.6.52] - 2025-12-17
6
+
7
+ ### Added W3C Standards Support
8
+
9
+ #### New Features in Architecture Table
10
+ - **RDF 1.2**: RDF-Star (quoted triples), TriG, N-Quads
11
+ - **SHACL**: W3C Shapes Constraint Language validation
12
+ - **PROV**: W3C Provenance ontology support
13
+
14
+ #### Added to Capabilities Comparison
15
+ | Capability | HyperMind | LangChain/DSPy |
16
+ |------------|-----------|----------------|
17
+ | RDF-Star | Native quoted triples | Not supported |
18
+ | Data Validation | SHACL constraints (W3C) | External validator |
19
+ | Provenance Tracking | W3C PROV ontology | Manual implementation |
20
+
21
+ ---
22
+
5
23
  ## [0.6.51] - 2025-12-17
6
24
 
7
25
  ### Factual Capabilities Comparison
package/README.md CHANGED
@@ -53,6 +53,9 @@
53
53
  | Component | What It Does | Performance |
54
54
  |-----------|--------------|-------------|
55
55
  | **SPARQL 1.1** | W3C-compliant query engine, 64 builtin functions | 449ns lookups |
56
+ | **RDF 1.2** | RDF-Star (quoted triples), TriG, N-Quads | W3C compliant |
57
+ | **SHACL** | W3C Shapes Constraint Language validation | Constraint engine |
58
+ | **PROV** | W3C Provenance ontology support | Audit trail |
56
59
  | **WCOJ Joins** | Worst-case optimal joins for multi-way patterns | O(N^(ρ/2)) |
57
60
  | **Datalog** | Semi-naive evaluation with recursion | Incremental |
58
61
  | **Sparse Matrix** | CSR/CSC-based reasoning for OWL 2 RL | Memory-efficient |
@@ -168,6 +171,9 @@
168
171
  | **OWL 2 RL Reasoning** | Sparse matrix CSR/CSC (native) | External reasoner needed |
169
172
  | **Vector Similarity** | HNSW + ARCADE 1-hop cache | External vector DB (Pinecone, etc.) |
170
173
  | **Transitive Closure** | `ancestor(?X,?Z) :- parent(?X,?Y), ancestor(?Y,?Z)` | Loop implementation |
174
+ | **RDF-Star** | Native quoted triples (RDF 1.2) | Not supported |
175
+ | **Data Validation** | SHACL constraints (W3C) | External validator needed |
176
+ | **Provenance Tracking** | W3C PROV ontology (native) | Manual implementation |
171
177
 
172
178
  **Database Performance (vs Industry Leaders)**:
173
179
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rust-kgdb",
3
- "version": "0.6.51",
3
+ "version": "0.6.52",
4
4
  "description": "High-performance RDF/SPARQL database with AI agent framework. GraphDB (449ns lookups, 35x faster than RDFox), GraphFrames analytics (PageRank, motifs), Datalog reasoning, HNSW vector embeddings. HyperMindAgent for schema-aware query generation with audit trails. W3C SPARQL 1.1 compliant. Native performance via Rust + NAPI-RS.",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",