Skip to content

Commit 54e8633

Browse files
topher-loclaude
andauthored
fix(deps): pin patched versions for Dependabot security alerts (#2462)
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 3187dc8 commit 54e8633

File tree

6 files changed

+279
-238
lines changed

6 files changed

+279
-238
lines changed

frontend/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -179,8 +179,8 @@
179179
"prismjs": "1.30.0",
180180
"glob": "13.0.6",
181181
"immutable": "5.1.5",
182-
"lodash": "4.17.23",
183-
"lodash-es": "4.17.23",
182+
"lodash": "4.18.1",
183+
"lodash-es": "4.18.1",
184184
"minimatch": "10.2.3",
185185
"dompurify": "3.3.2",
186186
"markdown-it": "14.1.1",

frontend/pnpm-lock.yaml

Lines changed: 15 additions & 15 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ classifiers = [
2222
]
2323
dependencies = [
2424
"aiocache==0.12.3",
25-
"aiohttp==3.13.3",
25+
"aiohttp==3.13.5",
2626
"alembic-postgresql-enum==1.7.0",
2727
"alembic==1.13.2",
2828
"async-lru==2.0.4",
@@ -32,15 +32,16 @@ dependencies = [
3232
"cloudpickle==3.1.1",
3333
"cramjam==2.11.0",
3434
"croniter==6.0.0",
35-
"cryptography==46.0.5",
35+
"cryptography==46.0.6",
3636
"dateparser==1.2.2",
3737
"defusedxml==0.7.1",
3838
"email-validator==2.2.0",
3939
"fastapi-users[sqlalchemy,oauth]==15.0.2",
4040
"fastapi[standard]==0.120.3",
41-
"fastmcp==3.0.0",
41+
"fastmcp==3.2.0",
4242
"google-auth==2.48.0",
4343
"greenlet==3.0.3",
44+
"griffe==2.0.2",
4445
"httpx==0.28.1",
4546
"jsonpath_ng==1.7.0",
4647
"lark==1.1.9",
@@ -102,6 +103,7 @@ override-dependencies = [
102103
"PyJWT==2.12.1",
103104
"chardet<7",
104105
"fickling==0.1.10",
106+
"anthropic==0.87.0",
105107
]
106108

107109
[dependency-groups]

tests/unit/test_mcp_server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
import yaml
1414
from fastmcp.exceptions import ToolError
1515
from fastmcp.server.middleware.middleware import MiddlewareContext
16-
from fastmcp.tools.tool import ToolResult
16+
from fastmcp.tools import ToolResult
1717
from mcp.types import CallToolRequestParams
1818
from tracecat_registry import RegistrySecret
1919

tracecat/mcp/middleware.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
from fastmcp.exceptions import ToolError
1313
from fastmcp.server.dependencies import get_access_token, get_http_request
1414
from fastmcp.server.middleware.middleware import CallNext, Middleware, MiddlewareContext
15-
from fastmcp.tools.tool import ToolResult
15+
from fastmcp.tools import ToolResult
1616

1717
from tracecat.logger import logger
1818
from tracecat.mcp.auth import MCPTokenIdentity, get_email_claim, get_token_identity

0 commit comments

Comments
 (0)