@atlassian-dc-mcp/jira 0.15.0 → 0.16.0

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/package.json +20 -3
package/CHANGELOG.md CHANGED
@@ -3,6 +3,18 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [0.16.0](https://github.com/b1ff/atlassian-dc-mcp/compare/v0.15.0...v0.16.0) (2026-04-14)
7
+
8
+
9
+ ### Features
10
+
11
+ * add keywords to package.json for npm search visibility ([0735f27](https://github.com/b1ff/atlassian-dc-mcp/commit/0735f27600d8215ba0c11c48916d3edc844f01b5))
12
+ * improve supply-chain transparency (closes [#26](https://github.com/b1ff/atlassian-dc-mcp/issues/26)) ([98912b2](https://github.com/b1ff/atlassian-dc-mcp/commit/98912b26bddc4cafd847eb526fa8f76546576203))
13
+
14
+
15
+
16
+
17
+
6
18
  # [0.15.0](https://github.com/b1ff/atlassian-dc-mcp/compare/v0.14.3...v0.15.0) (2026-04-07)
7
19
 
8
20
  **Note:** Version bump only for package @atlassian-dc-mcp/jira
package/package.json CHANGED
@@ -1,10 +1,27 @@
1
1
  {
2
2
  "name": "@atlassian-dc-mcp/jira",
3
- "version": "0.15.0",
3
+ "version": "0.16.0",
4
4
  "main": "build/index.js",
5
5
  "type": "module",
6
6
  "bin": "./bin/run.js",
7
7
  "private": false,
8
+ "description": "Community-maintained MCP server for Atlassian Jira Data Center. Not affiliated with Atlassian.",
9
+ "keywords": [
10
+ "mcp",
11
+ "atlassian",
12
+ "jira",
13
+ "data-center",
14
+ "model-context-protocol"
15
+ ],
16
+ "repository": {
17
+ "type": "git",
18
+ "url": "https://github.com/b1ff/atlassian-dc-mcp.git",
19
+ "directory": "packages/jira"
20
+ },
21
+ "homepage": "https://github.com/b1ff/atlassian-dc-mcp#readme",
22
+ "bugs": {
23
+ "url": "https://github.com/b1ff/atlassian-dc-mcp/issues"
24
+ },
8
25
  "scripts": {
9
26
  "build": "tsc",
10
27
  "inspect": "mcp-inspector node build/index.js",
@@ -15,7 +32,7 @@
15
32
  "test": "jest"
16
33
  },
17
34
  "dependencies": {
18
- "@atlassian-dc-mcp/common": "^0.15.0",
35
+ "@atlassian-dc-mcp/common": "^0.16.0",
19
36
  "@modelcontextprotocol/sdk": "^1.27.1",
20
37
  "dotenv": "^16.4.7",
21
38
  "zod": "^3.24.2"
@@ -29,5 +46,5 @@
29
46
  "publishConfig": {
30
47
  "access": "public"
31
48
  },
32
- "gitHead": "2ef6abdbc1eea0aefb128dedeb9238eb6ad5b638"
49
+ "gitHead": "eb8394fc8317b2d986b03de9853edf47aa77566a"
33
50
  }