-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
23 lines (22 loc) · 1.76 KB
/
Directory.Build.props
File metadata and controls
23 lines (22 loc) · 1.76 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<Project>
<PropertyGroup>
<Copyright>© $([System.DateTime]::Now.Year)</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/petabridge/memorizer-v1</PackageProjectUrl>
<VersionPrefix>2.1.0</VersionPrefix>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<WarningsNotAsErrors>CS1591</WarningsNotAsErrors>
<Deterministic>true</Deterministic>
<PackageReleaseNotes>**Features**
- [Add move-project-to-workspace and workspace reparenting](https://github.com/petabridge/memorizer/pull/167) - Move projects between workspaces and reparent workspaces in the hierarchy
- `MoveProjectToWorkspaceAsync` atomically moves a project and all its descendants to a target workspace
- Workspace reparenting with circular-reference guard to prevent invalid hierarchies
- Full support across REST API, MCP tools, and Web UI with modal dialogs
- [Add canonical URL support to MCP tool responses](https://github.com/petabridge/memorizer/pull/162) - MCP tool responses now include clickable URLs to the web UI for memories, workspaces, and projects
- Configure via `Server:CanonicalUrl` setting to enable links in MCP responses
- URLs included in `Store`, `Get`, `SearchMemories`, `GetMany`, `CreateWorkspace`, `CreateProject`, `GetWorkspace`, and `GetProjectContext` responses
**Bug Fixes**
- [Make optional Guid MCP parameters resilient to client schema variations](https://github.com/petabridge/memorizer/pull/166) - Fixes compatibility with MCP clients (notably Cursor) that send empty strings or `"null"` for optional Guid parameters instead of proper JSON null</PackageReleaseNotes>
<ContinuousIntegrationBuild Condition="'$(GITHUB_ACTIONS)' == 'true'">true</ContinuousIntegrationBuild>
</PropertyGroup>
</Project>