@critical-path/server 0.5.0 → 0.6.0

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +17 -0
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -1,5 +1,22 @@
1
1
  # @critical-path/server
2
2
 
3
+ ## 0.6.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 55549e9: Support @mentions in comments with extraction and segmentation utilities
8
+
9
+ - Add `mentions?: string[]` to `Comment` interface
10
+ - Add `extractMentions` and `parseMentionSegments` utilities for mention parsing and UI rendering
11
+ - Auto-extract and populate mentions during `addComment` and `updateComment` in the engine
12
+ - Update SQLite comments schema with `mentions` column and migration
13
+ - Preserve and pass through mentions in server routes, client SDK, and Svelte bindings
14
+
15
+ ### Patch Changes
16
+
17
+ - Updated dependencies [55549e9]
18
+ - @critical-path/core@0.11.0
19
+
3
20
  ## 0.5.0
4
21
 
5
22
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@critical-path/server",
3
- "version": "0.5.0",
3
+ "version": "0.6.0",
4
4
  "description": "Web Fetch API compatible server router and adapters for Next.js App Router, SvelteKit, and Express",
5
5
  "author": "Jack James",
6
6
  "license": "MIT",
@@ -26,7 +26,7 @@
26
26
  }
27
27
  },
28
28
  "dependencies": {
29
- "@critical-path/core": "0.10.0"
29
+ "@critical-path/core": "0.11.0"
30
30
  },
31
31
  "devDependencies": {
32
32
  "@types/node": "^24.0.0",