memorix 1.1.8 → 1.1.10

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.
@@ -2,6 +2,21 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
+ ## [1.1.10] - 2026-07-13
6
+
7
+ ### Fixed
8
+ - **Large-project Memory Autopilot timeouts** -- `memorix_project_context` now reuses one CodeGraph snapshot per request and performs first-use code-ref backfill in memory with one batched write instead of per-memory database scans and transactions. Prose-only and ambiguous symbol mentions no longer create large volumes of noisy code references, keeping first-use context generation responsive with thousands of active memories.
9
+ - **Ruby CodeGraph symbol fidelity** -- Ruby namespaces and punctuated method names such as `Foo::Bar`, `save!`, `valid?`, and `name=` now remain intact through Lite indexing and memory-to-code binding.
10
+
11
+ ## [1.1.9] - 2026-07-12
12
+
13
+ ### Added
14
+ - **Configurable CodeGraph excludes** -- Added `[codegraph].exclude_patterns` / YAML `codegraph.excludePatterns` support so CodeGraph, Project Context suggested reads, context packs, diagnostics, and related CLI flows can skip project-specific generated or vendor paths while keeping the built-in defaults.
15
+
16
+ ### Fixed
17
+ - **Config inspection aliases** -- `memorix config get` now accepts TOML-style snake_case dotted keys such as `codegraph.exclude_patterns` when reading resolved camelCase config values.
18
+ - **Orama search index consistency** -- Search access tracking now preserves internally stored vector-backed documents, public/detail cache results continue to strip embeddings, and hydration reconciles persisted observations by exact composite ID instead of skipping observation hydration when a shared index already contains mini-skills.
19
+
5
20
  ## [1.1.8] - 2026-07-08
6
21
 
7
22
  ### Added
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@memorix/memcode",
3
- "version": "1.1.8",
3
+ "version": "1.1.10",
4
4
  "description": "Memorix-native coding agent CLI with terminal chat, project memory, hooks, and session management",
5
5
  "type": "module",
6
6
  "piConfig": {
@@ -34,9 +34,9 @@
34
34
  "prepublishOnly": "npm run clean && npm run build"
35
35
  },
36
36
  "dependencies": {
37
- "@memorix/agent-core": "1.1.8",
38
- "@memorix/ai": "1.1.8",
39
- "@memorix/tui": "1.1.8",
37
+ "@memorix/agent-core": "1.1.10",
38
+ "@memorix/ai": "1.1.10",
39
+ "@memorix/tui": "1.1.10",
40
40
  "@opentui/core": "^0.3.4",
41
41
  "@opentui/react": "^0.3.4",
42
42
  "@silvia-odwyer/photon-node": "0.3.4",