Skip to content
This repository was archived by the owner on Nov 14, 2025. It is now read-only.

Commit 0a45059

Browse files
authored
chore: prepare release v1.4.0 (#137)
- Update version to 1.4.0 - Add comprehensive changelog for v1.4.0 - Document breaking changes in npm scripts - Document dependency updates including Zod v4 major upgrade
1 parent c5411a4 commit 0a45059

File tree

2 files changed

+28
-1
lines changed

2 files changed

+28
-1
lines changed

CHANGELOG.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,33 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [v1.4.0] - 2025-08-23
9+
10+
### Breaking Changes
11+
- Removed misleading `start`, `dev`, and related test:server commands that don't work with MCP servers
12+
- Renamed `format` and `format:check` commands for consistency with lint commands:
13+
- `format` now checks formatting (was `format:check`)
14+
- `format:fix` now fixes formatting (was `format`)
15+
16+
### Changed
17+
- Updated dependencies to latest versions:
18+
- zod: 3.25.76 → 4.1.0 (major version upgrade)
19+
- @modelcontextprotocol/sdk: 1.17.3 → 1.17.4
20+
- @eslint/js: 9.33.0 → 9.34.0
21+
- eslint: 9.33.0 → 9.34.0
22+
- Removed redundant `validate` script (use `ci` instead)
23+
24+
### Fixed
25+
- Fixed Zod v4 breaking change by updating error property access from `.errors` to `.issues`
26+
- Fixed MCP server documentation to clarify stdio communication requirements
27+
28+
### Documentation
29+
- Significantly improved CLAUDE.md with better architecture overview and focused guidelines
30+
- Reorganized and enhanced development commands documentation
31+
- Added comprehensive error handling patterns with complete examples
32+
- Added missing `clean` command to README
33+
- Clarified that MCP servers cannot be run standalone
34+
835
## [v1.3.2] - 2025-08-23
936
- Added commitlint support for conventional commits
1037
- Upgraded to Node 22 LTS (minimum version requirement)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "deepsource-mcp-server",
3-
"version": "1.3.2",
3+
"version": "1.4.0",
44
"description": "Model Context Protocol server for DeepSource",
55
"type": "module",
66
"main": "dist/index.js",

0 commit comments

Comments
 (0)