Commit e56470c
committed
chore(release): 3.0.0 [skip ci]
# [3.0.0](v2.1.1...v3.0.0) (2025-11-28)
* feat!: replace domain-specific tools with generic HTTP method tools ([3fef421](3fef421))
### BREAKING CHANGES
* This release replaces 8+ specific tools with 5 generic HTTP method tools.
Before (v2.x):
- jira_ls_projects, jira_get_project, jira_ls_issues, jira_get_issue
- jira_create_issue, jira_ls_comments, jira_add_comment, jira_ls_statuses
After (v3.0):
- jira_get - GET any Jira API endpoint
- jira_post - POST to any endpoint (create resources)
- jira_put - PUT to any endpoint (replace resources)
- jira_patch - PATCH any endpoint (partial updates)
- jira_delete - DELETE any endpoint
Benefits:
- Full access to any Jira REST API endpoint
- JMESPath filtering for response data extraction
- Consistent interface across all HTTP operations
- Simplified codebase (removed 64 files, ~13k lines)
Migration examples in README.md1 parent 3fef421 commit e56470c
2 files changed
Lines changed: 30 additions & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
1 | 30 | | |
2 | 31 | | |
3 | 32 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
3 | | - | |
| 3 | + | |
4 | 4 | | |
5 | 5 | | |
6 | 6 | | |
| |||
0 commit comments