From 22bdeb17b49a65f9589125853b9be063c5004179 Mon Sep 17 00:00:00 2001 From: Aaron Stannard Date: Fri, 3 Jul 2026 20:26:08 -0500 Subject: [PATCH] Release 2.2.0: update release notes and version metadata --- Directory.Build.props | 14 +++++++++----- RELEASE_NOTES.md | 12 ++++++++++++ 2 files changed, 21 insertions(+), 5 deletions(-) diff --git a/Directory.Build.props b/Directory.Build.props index 8cfdb58..8c309d2 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -3,15 +3,19 @@ © $([System.DateTime]::Now.Year) MIT https://github.com/petabridge/memorizer-v1 - 2.2.0-beta2 + 2.2.0 true CS1591 true **Features** -- [Add workspace scope to memory tools](https://github.com/petabridge/memorizer/pull/197) - Memory search and storage now support workspace-level scoping - - `SearchMemories` can filter by workspace ID to query all memories in a workspace in a single call - - `Store` supports assigning memories directly to workspaces (not just projects) - - Closes scoping gaps for agents operating at the workspace level +- [Support get_workspace by slug](https://github.com/petabridge/memorizer/pull/199) - The `GetWorkspace` MCP tool now accepts workspace slugs in addition to IDs + - Enables workspace lookup without needing to know the workspace ID in advance + - Slug matching is case-insensitive + +**Bug Fixes** +- [Make MCP tools resilient to missing required parameters](https://github.com/petabridge/memorizer/pull/184) - MCP tools now return descriptive error messages when required parameters are missing or malformed, instead of throwing unhandled exceptions + - Fixes compatibility with MCP clients (Claude Code, opencode) that may omit required parameters + - Affected tools: `Store`, `Edit`, `CreateReference`, `MoveMemory` true \ No newline at end of file diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 81ca40c..cc3522c 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,3 +1,15 @@ +#### 2.2.0 July 3rd 2026 #### + +**Features** +- [Support get_workspace by slug](https://github.com/petabridge/memorizer/pull/199) - The `GetWorkspace` MCP tool now accepts workspace slugs in addition to IDs + - Enables workspace lookup without needing to know the workspace ID in advance + - Slug matching is case-insensitive + +**Bug Fixes** +- [Make MCP tools resilient to missing required parameters](https://github.com/petabridge/memorizer/pull/184) - MCP tools now return descriptive error messages when required parameters are missing or malformed, instead of throwing unhandled exceptions + - Fixes compatibility with MCP clients (Claude Code, opencode) that may omit required parameters + - Affected tools: `Store`, `Edit`, `CreateReference`, `MoveMemory` + #### 2.2.0-beta2 July 1st 2026 #### **Features**