Skip to content

Commit f2cdab8

Browse files
authored
chore: bump version to 0.10.3 (#384)
1 parent 00a2541 commit f2cdab8

File tree

4 files changed

+14
-5
lines changed

4 files changed

+14
-5
lines changed

CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@
22

33
## [Unreleased]
44

5+
6+
## [0.10.3] - 2025-05-06
7+
8+
### Added
9+
- **Proxy Support:** Added support for HTTP/S and SOCKS proxies. Configure globally using `HTTP_PROXY`, `HTTPS_PROXY`, `SOCKS_PROXY`, `NO_PROXY` environment variables, or use service-specific overrides like `JIRA_HTTPS_PROXY`, `CONFLUENCE_NO_PROXY`. (#260, #361)
10+
11+
### Fixed
12+
- Fixed `Context is not available outside of a request` error occurring when running via `uvx` due to incompatibility with `fastmcp>=2.2.8`. Pinned `fastmcp` dependency to `<2.2.8` to ensure compatibility with the latest `mcp-atlassian` release when installed via `uvx`. (#383)
13+
514
## [0.10.2] - 2025-05-06
615

716
### Fixed

pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "mcp-atlassian"
3-
version = "0.10.2"
3+
version = "0.10.3"
44
description = "The Model Context Protocol (MCP) Atlassian integration is an open-source implementation that bridges Atlassian products (Jira and Confluence) with AI language models following Anthropic's MCP specification. This project enables secure, contextual AI interactions with Atlassian tools while maintaining data privacy and security. Key features include:"
55
readme = "README.md"
66
requires-python = ">=3.10"
@@ -10,7 +10,7 @@ dependencies = [
1010
"beautifulsoup4>=4.12.3",
1111
"httpx>=0.28.0",
1212
"mcp>=1.3.0",
13-
"fastmcp>=2.2.5",
13+
"fastmcp>=2.2.5,<2.2.8",
1414
"python-dotenv>=1.0.1",
1515
"markdownify>=0.11.6",
1616
"markdown>=3.7.0",

src/mcp_atlassian/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
from .utils.logging import setup_logging
1010

11-
__version__ = "0.10.2"
11+
__version__ = "0.10.3"
1212

1313
# Initialize logging with appropriate level
1414
logging_level = logging.WARNING

uv.lock

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)