Skip to content

Commit e56470c

Browse files
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.md
1 parent 3fef421 commit e56470c

2 files changed

Lines changed: 30 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,32 @@
1+
# [3.0.0](https://github.com/aashari/mcp-server-atlassian-jira/compare/v2.1.1...v3.0.0) (2025-11-28)
2+
3+
4+
* feat!: replace domain-specific tools with generic HTTP method tools ([3fef421](https://github.com/aashari/mcp-server-atlassian-jira/commit/3fef4218b7657b26a4e55bfae7278138755f837e))
5+
6+
7+
### BREAKING CHANGES
8+
9+
* This release replaces 8+ specific tools with 5 generic HTTP method tools.
10+
11+
Before (v2.x):
12+
- jira_ls_projects, jira_get_project, jira_ls_issues, jira_get_issue
13+
- jira_create_issue, jira_ls_comments, jira_add_comment, jira_ls_statuses
14+
15+
After (v3.0):
16+
- jira_get - GET any Jira API endpoint
17+
- jira_post - POST to any endpoint (create resources)
18+
- jira_put - PUT to any endpoint (replace resources)
19+
- jira_patch - PATCH any endpoint (partial updates)
20+
- jira_delete - DELETE any endpoint
21+
22+
Benefits:
23+
- Full access to any Jira REST API endpoint
24+
- JMESPath filtering for response data extraction
25+
- Consistent interface across all HTTP operations
26+
- Simplified codebase (removed 64 files, ~13k lines)
27+
28+
Migration examples in README.md
29+
130
## [2.1.1](https://github.com/aashari/mcp-server-atlassian-jira/compare/v2.1.0...v2.1.1) (2025-09-09)
231

332

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@aashari/mcp-server-atlassian-jira",
3-
"version": "2.1.1",
3+
"version": "3.0.0",
44
"description": "Node.js/TypeScript MCP server for Atlassian Jira. Equips AI systems (LLMs) with tools to list/get projects, search/get issues (using JQL/ID), and view dev info (commits, PRs). Connects AI capabilities directly into Jira project management and issue tracking workflows.",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",

0 commit comments

Comments
 (0)