Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,19 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.3.3] - 2026-02-17

### Fixed
- Eliminated multi-stage builder and venv from Dockerfile, now installing directly to system python using uv, removing the broken symlink workaround from #206
- Eliminated bundled pip/setuptools/wheel and their vendored dependencies which carried 2 HIGH vulnerabilities:
- jaraco.context 5.3.0 (CVE-2026-23949)
- wheel 0.45.1 (CVE-2026-24049)

### Security
- Trivy scan: 0 HIGH/CRITICAL vulnerabilities on the resulting Docker image
- The pyatlan base image already provides pyatlan, pydantic, httpx, cryptography, authlib, h11, anyio, and other common packages at the system level
- Only MCP-specific packages (fastmcp, uvicorn, and their transitive deps) are now installed on top

## [0.3.2] - 2026-02-13

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion modelcontextprotocol/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Version information."""

__version__ = "0.3.2"
__version__ = "0.3.3"