@softspark/jira-mcp 1.4.0 → 1.4.1

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/CHANGELOG.md CHANGED
@@ -7,6 +7,11 @@ Versioning follows [Semantic Versioning](https://semver.org/).
7
7
 
8
8
  ---
9
9
 
10
+ ## v1.4.1 -- Template Loading Fix (2026-04-15)
11
+
12
+ ### Fixed
13
+ - **File-backed templates missing after install** -- `PACKAGE_ROOT_DIR` used a hardcoded `../..` relative depth that resolved correctly in the source layout but overshot by one level after tsup bundling. Replaced with `findPackageRoot()` that walks up looking for `package.json`. All 8 built-in comment templates now load correctly from global installs.
14
+
10
15
  ## v1.4.0 -- Delete Tools & Error Hardening (2026-04-15)
11
16
 
12
17
  ### Added
package/README.md CHANGED
@@ -9,11 +9,11 @@
9
9
 
10
10
  ---
11
11
 
12
- ## What's New in v1.4.0
12
+ ## What's New in v1.4.1
13
13
 
14
+ - **Fixed file-backed templates** -- built-in comment templates now load correctly from global npm installs (broken path resolution after bundling).
14
15
  - **`delete_task` and `delete_comment` tools** -- guarded destructive operations with ownership enforcement and explicit approval.
15
16
  - **Markdown table support** -- `markdownToAdf()` converts tables to native ADF table nodes.
16
- - **Hardened error handling** -- cache cleanup no longer swallows unexpected I/O errors.
17
17
  - **561 tests** across 58 test files.
18
18
 
19
19
  See [CHANGELOG.md](CHANGELOG.md) for full details.