mcp-udacity-commit 1.2.1 → 1.2.2

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 ADDED
@@ -0,0 +1,65 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project are documented here.
4
+
5
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
+ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
+
8
+ ## [1.2.2] - 2026-07-31
9
+
10
+ ### Changed
11
+
12
+ - Include `CHANGELOG.md` in the published npm package so the release
13
+ history ships alongside the code.
14
+
15
+ ## [1.2.1] - 2026-07-31
16
+
17
+ ### Changed
18
+
19
+ - Renamed terse single-letter locals across the server and lint core to
20
+ descriptive names — a pure readability pass with functionally identical
21
+ compiled output. (#4)
22
+
23
+ ### Security
24
+
25
+ - Ignore `.mcpregistry_*` so the MCP publisher's GitHub token can never be
26
+ committed; also ignore `.idea/` project settings and `*.tgz` pack
27
+ artifacts. (#5)
28
+
29
+ ## [1.2.0] - 2026-07-28
30
+
31
+ ### Added
32
+
33
+ - `validate_branch_name` tool and `udacity://branch-naming` resource
34
+ enforcing the companion `type/kebab-case` branch-naming convention. (#2)
35
+ - `release/` recognized as a typed branch that accepts version-style
36
+ descriptions (e.g. `release/1.2.0`, `release/2024-q1`). (#3)
37
+
38
+ ## [1.0.2] - 2026-07-28
39
+
40
+ ### Fixed
41
+
42
+ - Hardened the commit linter — CRLF handling, code-point length counting,
43
+ imperative-mood hints, and footer issue-reference checks — and added a
44
+ unit-test suite plus CI. (#1)
45
+ - Pointed `node --test` at explicit test files so CI runs the suite
46
+ reliably. (#1)
47
+
48
+ ## [1.0.1] - 2026-07-28
49
+
50
+ ### Changed
51
+
52
+ - Synced the published npm README and dropped maintainer-only publish
53
+ steps from it.
54
+
55
+ ## [1.0.0] - 2026-07-28
56
+
57
+ ### Added
58
+
59
+ - Initial release: the Udacity commit-message MCP server with the
60
+ `validate_commit_message` and `format_commit_message` tools and the
61
+ `udacity://commit-styleguide` resource.
62
+
63
+ [1.2.2]: https://github.com/qwertymuzaffar/mcp-udacity-commit/compare/v1.2.1...v1.2.2
64
+ [1.2.1]: https://github.com/qwertymuzaffar/mcp-udacity-commit/compare/v1.2.0...v1.2.1
65
+ [1.2.0]: https://github.com/qwertymuzaffar/mcp-udacity-commit/releases/tag/v1.2.0
package/build/index.js CHANGED
@@ -3,7 +3,7 @@ import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
3
3
  import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js";
4
4
  import { z } from "zod";
5
5
  import { STYLE_GUIDE, BRANCH_GUIDE, validate, formatMessage, validateBranch } from "./lint.js";
6
- const VERSION = "1.2.1";
6
+ const VERSION = "1.2.2";
7
7
  export function createServer() {
8
8
  const server = new McpServer({ name: "udacity-commit", version: VERSION });
9
9
  server.registerResource("styleguide", "udacity://commit-styleguide", {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mcp-udacity-commit",
3
- "version": "1.2.1",
3
+ "version": "1.2.2",
4
4
  "description": "MCP server that validates and formats git commit messages per the Udacity Git Commit Message Style Guide.",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -23,7 +23,8 @@
23
23
  },
24
24
  "files": [
25
25
  "build",
26
- "README.md"
26
+ "README.md",
27
+ "CHANGELOG.md"
27
28
  ],
28
29
  "engines": {
29
30
  "node": ">=18"