@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.
|
|
1
|
+
# Forge v0.10.44
|
|
2
2
|
|
|
3
|
-
Released: 2026-06-
|
|
3
|
+
Released: 2026-06-08
|
|
4
4
|
|
|
5
|
-
## Changes since v0.10.
|
|
5
|
+
## Changes since v0.10.43
|
|
6
6
|
|
|
7
|
-
###
|
|
8
|
-
-
|
|
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.
|
|
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}/
|
|
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}/
|
|
39
|
+
example: `[Mantis #1226625](${mantis}/bug_view_page.php?bug_id=1226625)`,
|
|
40
40
|
});
|
|
41
41
|
}
|
|
42
42
|
|
package/package.json
CHANGED