mcp-udacity-commit 1.2.2 → 1.2.3
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 +6 -0
- package/package.json +6 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.2.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- e8eda7d: Releases are now automated with Changesets and published from GitHub Actions with provenance.
|
|
8
|
+
|
|
3
9
|
All notable changes to this project are documented here.
|
|
4
10
|
|
|
5
11
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mcp-udacity-commit",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.3",
|
|
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",
|
|
@@ -35,13 +35,17 @@
|
|
|
35
35
|
"pretest": "npm run build",
|
|
36
36
|
"test": "node --test test/*.test.mjs",
|
|
37
37
|
"prepublishOnly": "npm test",
|
|
38
|
-
"test:client": "node test-client.mjs"
|
|
38
|
+
"test:client": "node test-client.mjs",
|
|
39
|
+
"changeset": "changeset",
|
|
40
|
+
"version-packages": "changeset version",
|
|
41
|
+
"release": "npm run build && changeset publish"
|
|
39
42
|
},
|
|
40
43
|
"dependencies": {
|
|
41
44
|
"@modelcontextprotocol/sdk": "^1.30.0",
|
|
42
45
|
"zod": "^3.25.76"
|
|
43
46
|
},
|
|
44
47
|
"devDependencies": {
|
|
48
|
+
"@changesets/cli": "^3.0.2",
|
|
45
49
|
"@types/node": "^26.1.2",
|
|
46
50
|
"typescript": "^7.0.2"
|
|
47
51
|
}
|