@aion0/forge 0.10.43 → 0.10.44

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.
package/RELEASE_NOTES.md CHANGED
@@ -1,11 +1,11 @@
1
- # Forge v0.10.43
1
+ # Forge v0.10.44
2
2
 
3
- Released: 2026-06-07
3
+ Released: 2026-06-08
4
4
 
5
- ## Changes since v0.10.42
5
+ ## Changes since v0.10.43
6
6
 
7
- ### Other
8
- - wizard: required fields + email pattern + skip means skip + dedup
7
+ ### Bug Fixes
8
+ - fix: mantis bug link uses bug_view_page.php?bug_id=N
9
9
 
10
10
 
11
- **Full Changelog**: https://github.com/aiwatching/forge/compare/v0.10.42...v0.10.43
11
+ **Full Changelog**: https://github.com/aiwatching/forge/compare/v0.10.43...v0.10.44
@@ -46,7 +46,7 @@ export const LINK_PATTERNS: LinkPattern[] = [
46
46
  id: 'mantis-bug',
47
47
  regex: /\b(?:mantis(?:\s+bug)?\s*#?|bug\s*#?)(\d{4,8})\b/gi,
48
48
  baseUrlFrom: 'mantis',
49
- url: '{base_url}/view.php?id={1}',
49
+ url: '{base_url}/bug_view_page.php?bug_id={1}',
50
50
  label: 'Mantis #{1}',
51
51
  },
52
52
  {
@@ -36,7 +36,7 @@ export function buildReferencePromptSection(): string {
36
36
  if (mantis) {
37
37
  out.push({
38
38
  label: 'Mantis bug',
39
- example: `[Mantis #1226625](${mantis}/view.php?id=1226625)`,
39
+ example: `[Mantis #1226625](${mantis}/bug_view_page.php?bug_id=1226625)`,
40
40
  });
41
41
  }
42
42
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aion0/forge",
3
- "version": "0.10.43",
3
+ "version": "0.10.44",
4
4
  "description": "Unified AI workflow platform — multi-model task orchestration, persistent sessions, web terminal, remote access",
5
5
  "type": "module",
6
6
  "scripts": {