Files
ruvnet__ruflo/LICENSE
T
rUv c38d56b60e fix(memory): support namespace in delete command (#981)
* fix(memory): add missing 'type' column to schema migration

Fixes #977 - Memory store command failed with "table memory_entries has
no column named type" on older databases that were missing this column.

Changes:
- Add 'type' column to ensureSchemaColumns() migration list
- Fix .gitignore to use rooted paths (/memory/ instead of memory/) to
  prevent accidentally ignoring src/memory/ source code

The ensureSchemaColumns() function now properly adds the 'type' column
when upgrading databases from older schema versions.

Co-Authored-By: claude-flow <ruv@ruv.net>

* chore: bump version to 3.0.0-alpha.153

Published to npm with fix for issue #977.

Co-Authored-By: claude-flow <ruv@ruv.net>

* fix(memory): support namespace in delete command

Fixes #980 - CLI memory delete now properly supports namespaced entries.

Changes:
- Add `deleteEntry()` function to memory-initializer.ts
- Add `--key` and `--namespace` options to delete command
- Support both positional argument and flag for key
- Use consistent pattern with retrieve command

Usage:
  memory delete --key "mykey" --namespace "myns" -f
  memory delete mykey -f  (uses default namespace)

Co-Authored-By: claude-flow <ruv@ruv.net>

* Checkpoint: File edits

Automatic checkpoint created by Claude Code
- Branch: fix/issue-980-memory-delete-namespace
- Timestamp: 2026-01-22T15:55:06Z
- Changes: 1 file(s)

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>

* fix(ci): update pnpm-lock.yaml for @claude-flow/browser

Updates the lockfile to include dependencies for the browser package
that were causing CI failures with frozen-lockfile mode.

Co-Authored-By: claude-flow <ruv@ruv.net>

* Checkpoint: File edits

Automatic checkpoint created by Claude Code
- Branch: fix/issue-980-memory-delete-namespace
- Timestamp: 2026-01-22T16:05:21Z
- Changes: 11 file(s)

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>

* Checkpoint: File edits

Automatic checkpoint created by Claude Code
- Branch: fix/issue-980-memory-delete-namespace
- Timestamp: 2026-01-22T16:05:27Z
- Changes: 1 file(s)

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>

* Checkpoint: File edits

Automatic checkpoint created by Claude Code
- Branch: fix/issue-980-memory-delete-namespace
- Timestamp: 2026-01-22T16:10:09Z
- Changes: 1 file(s)

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>

* Checkpoint: File edits

Automatic checkpoint created by Claude Code
- Branch: fix/issue-980-memory-delete-namespace
- Timestamp: 2026-01-22T16:10:16Z
- Changes: 1 file(s)

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>

* Checkpoint: File edits

Automatic checkpoint created by Claude Code
- Branch: fix/issue-980-memory-delete-namespace
- Timestamp: 2026-01-22T16:16:14Z
- Changes: 1 file(s)

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>

* Checkpoint: File edits

Automatic checkpoint created by Claude Code
- Branch: fix/issue-980-memory-delete-namespace
- Timestamp: 2026-01-22T16:16:24Z
- Changes: 1 file(s)

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>

* Checkpoint: File edits

Automatic checkpoint created by Claude Code
- Branch: fix/issue-980-memory-delete-namespace
- Timestamp: 2026-01-22T16:16:37Z
- Changes: 1 file(s)

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>

---------

Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-22 11:27:16 -05:00

22 lines
1.0 KiB
Plaintext

MIT License
Copyright (c) 2024-2026 ruvnet
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.